{"info":{"_postman_id":"e935c989-3e9b-4c96-ad11-25ac9b3478b7","name":"B2B Endpoints (Published)","description":"<html><head></head><body><h1 id=\"getting-started\">Getting Started</h1>\n<p>To get up and running rapidly, we encourage you to take 10 minutes reading some of the following information. We see these first two items as mandatory, without these you won't get very far:</p>\n<p>*   Whats my URL\n*   Creating an App</p>\n<p>If you have previously implemented web services nothing here should be new. First, you need to know your URL, and, you will need an App. As your URL is really important, we decided to explain this first, so, read <strong>whats my URL</strong>. Then, read <strong>creating an App</strong>, your app will need privileges, these privileges are also explained in <strong>creating an App</strong>.</p>\n<p>We have also explained some of our conventions and provided some examples, if you want to read through these, please do:</p>\n<p>*   Conventions\n*   Whitelist\n*   Examples</p>\n<h1 id=\"whats-my-url\">Whats my URL?</h1>\n<p>Let there be no confusion we <strong>do not accept</strong> non SSL (TLS) traffic it’s all <strong>https</strong>. Please don't try http, you won't get very far.</p>\n<p>Let’s start with a completed URL and break this down:</p>\n<p><a href=\"https://api.corehr.com/ws/tenant/corehr/v1/reference/type/COST/\">https://api.corehr.com/ws/tenant/corehr/v1/reference/type/COST/</a></p>\n<p>OR</p>\n<p><a href=\"https://uatapi.corehr.com/ws/tenant/corehr/v1/reference/type/COST/\">https://uatapi.corehr.com/ws/tenant/corehr/v1/reference/type/COST/</a></p>\n<h2 id=\"this-paragraph-explains-all-about-the-url\">This paragraph explains all about the URL</h2>\n<p>This example is using the web service defined by <code>GET /reference/type/:atype/:code?\\*</code></p>\n<p>All URL's will begin with either <a href=\"https://api.corehr.com/ws/\"><em>https://api.corehr.com/ws/</em></a> or <a href=\"https://uatapi.corehr.com/ws/\"><em>https://uatapi.corehr.com/ws/</em></a>, we think it's obvious what the difference is here - one is for production and the other is for UAT. And, as we need to know who you are, we call this the <em>tenant</em> (your tenant name can be supplied by your PeopleXD representative, or you can find the tenant name based on your portal URL, e.g., if your Portal URL is <a href=\"https://my.corehr.com/pls/coreportal_acmep/\">https://my.corehr.com/pls/coreportal_acmep/</a>... then your tenant name is [acmep], now <em>acmep</em> is not actually a real tenant, it’s just for illustration). Your Portal URL could of course be from the UAT environment for example <a href=\"https://uatmy.corehr.com/pls/coreportal_acmeu/\">https://uatmy.corehr.com/pls/coreportal_acmeu/</a> then your tenant name is [acmeu], now <em>acmeu</em> is not actually a real tenant, it’s just for illustration). After your tenant we have a constant <em>corehr/v1</em> (never change this, just go with it). At this point we have <a href=\"https://api.corehr.com/ws/acmep/corehr/v1/\"><em>https://api.corehr.com/ws/acmep/corehr/v1/</em></a> or <a href=\"https://uatapi.corehr.com/ws/acmeu/corehr/v1/\"><em>https://uatapi.corehr.com/ws/acmeu/corehr/v1/</em></a> (remember acmep and acmeu are only for this example - they do not really exist). Next we need to know the specific web service end point you want to execute, in this example we are using the end point <em>/reference/type/:atype/:code?</em> where :atype and :code are bind variables, and, in our example we are interested in cost centres and the type <em>cost</em> represents cost centres, and we have not used the optional bind variable :code?. The <code>?</code> indicates the parameter is optional, we used decided in this example not to implement.</p>\n<h3 id=\"step-by-step-breakdown\">Step by Step breakdown</h3>\n<p>Let’s explain the URL again, but this time take it bit by bit. All requests to our servers should be <strong>https</strong>. All <strong>non SSL/(TLS)</strong> requests are ignored. Let's start with the URL:</p>\n<blockquote>\n<p><a href=\"https://api.corehr.com/ws/tenant/corehr/v1/reference/type/COST/\">https://api.corehr.com/ws/tenant/corehr/v1/reference/type/COST/</a></p>\n</blockquote>\n<p>*   api.corehr.com</p>\n<p>represents the root of all web service requests. When testing, we have specific environments typically we referred to these environments as UAT environments, and the root of the UAT environment is aptly named: <code>uatapi.corehr.com</code>.</p>\n<p>*   /ws/</p>\n<p>indicates web services</p>\n<p>*   /tenant/</p>\n<p>indicates the name of your tenant. Your tenant name can be supplied by your PeopleXD representative, or you can find the tenant name based on your portal URL, e.g., if your Portal URL is <a href=\"https://my.corehr.com/pls/coreportal_acmep/\">https://my.corehr.com/pls/coreportal_acmep/</a>... then your tenant name is [acmep], now <em>acmep</em> is not actually a real tenant, it’s just for illustration). Your CorePortal URL could of course be from the UAT environment for example <a href=\"https://uatmy.corehr.com/pls/coreportal_acmeu/\">https://uatmy.corehr.com/pls/coreportal_acmeu/</a> then your tenant name is [acmeu], now <em>acmeu</em> is not actually a real tenant, it’s just for illustration)</p>\n<p>*   /corehr/</p>\n<p>this lets us know more information about where you are trying to get to, you don’t need to change this, just go with the value <em>corehr</em></p>\n<p>*   /v1/</p>\n<p>indicates versioning, right now /v1/ is the only option, this does not represent PeopleXD versions, instead represents our web services framework.</p>\n<p>*   /reference/</p>\n<p>represents the module, in this example the module is /reference/</p>\n<p>*   : (colon)</p>\n<p>represents parameters aka bind parameters. And, with the parameters added is <code>/reference/type/COST/</code>. In this example we are dealing with cost centres, and they are represented by the bind variable <em>COST</em></p>\n<p>*   ? (question mark)</p>\n<p>Sometimes (though not in this example) you might see a bind variable represent with a ? mark, this indicates an optional bind parameter. An example of an optional bind variable would be defined as <code>/reference/type/:atype/:code?</code></p>\n<p>*   :atype</p>\n<p>represents a mandatory parameter in this example</p>\n<p>*   :code?</p>\n<p>represents an optional parameter in this example</p>\n<p>In the example :atype is <code>COST</code> while :code? is not used. To extend and use the optional parameter the endPoint would appear as follows <code>/reference/type/COST/100</code></p>\n<p>And, the entire URL would appear as follows for the tenant acmep</p>\n<p><a href=\"https://api.corehr.com.com/ws/acmep/corehr/v1/reference/type/COST/\">https://api.corehr.com.com/ws/acmep/corehr/v1/reference/type/COST/</a></p>\n<p>and, with the optional parameter it would be</p>\n<p><a href=\"https://api.corehr.com/ws/acmep/corehr/v1/reference/type/COST/100\">https://api.corehr.com/ws/acmep/corehr/v1/reference/type/COST/100</a></p>\n<p>And, if you are using the UAT environment then</p>\n<p><a href=\"https://uatapi.corehr.com.com/ws/acmeu/corehr/v1/reference/type/COST/\">https://uatapi.corehr.com.com/ws/acmeu/corehr/v1/reference/type/COST/</a></p>\n<p>And, if you are using the UAR environment then</p>\n<p><a href=\"https://uatapi.corehr.com/ws/acmeu/corehr/v1/reference/type/COST/100\">https://uatapi.corehr.com/ws/acmeu/corehr/v1/reference/type/COST/100</a></p>\n<hr>\n<h1 id=\"creating-an-app\">Creating an App</h1>\n<p>Authentication is based on oAuth 2 client credentials flow. To make requests you will need an oAuth App, you must be granted an App by your system administrator (PeopleXD do <strong>not</strong> provide these details). Your system administration can follow these steps to create an App. Don't forget you do need to read <strong>whats your URL</strong>. All third party applications will require a clientId and client secret (this is like a username / password combination).</p>\n<p>Using the Client ID and Secret, a request is made to the authentication token end point, an access token is provided on successful authentication. This access token is required for each request and is included as part of the request header.</p>\n<h3 id=\"oauth-app-creation---getting-the-credentials\">oAuth App Creation - Getting the Credentials</h3>\n<p>Using the Security module in CorePortal (your administration account will need to have access to this important module). Once in the Security Module, select the Web Service App tab. Select the option <strong>create new application</strong> and fill in the details. Once the App is created, click on the \"View Credentials\" option to view the Client ID and the Secret for a particular application.</p>\n<img src=\"https://api.corehr.com/resources/WebServiceCredentials.png\" alt=\"\">\n\n<p>Credentials are initially displayed in a masked format however clicking the \"Unmask Credentials\" button will show you the full text of the Client ID and Secret for this App for use by the token service. Of course, don't forget these are important credentials, the client secret should be kept secret. Do not include these credentials when sending emails or store them is open source projects.</p>\n<img src=\"https://api.corehr.com/resources/UnmaskWebServiceCredentials2.png\" alt=\"\">\n\n<h3 id=\"oauth-app-creation---assigning-the-privileges\">oAuth App Creation - Assigning the Privileges</h3>\n<p>An app must be granted some privileges otherwise you won’t get very far, we do not make any assumptions as to what privileges to be assigned i.e., they must be explicitly granted. Do this by selecting the Update Web Service Privileges for that App. In the next example, all the end points for the “Image” web services are selected along with the “HelloWorld” web service.</p>\n<img src=\"https://api.corehr.com/resources/GrantWebServicePrivs.png\" alt=\"\">\n\n<h3 id=\"getting-a-token\">Getting a Token</h3>\n<p>Using the newly created App, you now need to get a token using the clientID and Client Secret. The token authentication end point is slightly different i.e., it does not include /v1/. If you have read the <strong>whats your URL</strong> section, you should know your URL at this point, and the oauth token can be accessed via the /oauth/token end point. If your tenant was named <em>acmep</em> then you can get a token from:</p>\n<p><a href=\"https://api.corehr.com/ws/acmep/corehr/oauth/token\">https://api.corehr.com/ws/acmep/corehr/oauth/token</a></p>\n<p>and for UAT the URL is:</p>\n<p><a href=\"https://uatapi.corehr.com/ws/acmeu/corehr/oauth/token\">https://uatapi.corehr.com/ws/acmeu/corehr/oauth/token</a></p>\n<h1 id=\"using-curl-to-get-a-token\">Using CURL to get a token</h1>\n<p>*   Client ID <code>Nn4sgf0yXCYcfPpUIo7NxQ..</code>\n*   Client Secret <code>gPDvI3HPvFiSucge84rKkw..</code></p>\n<p>These are not actually real credentials do not try and use these credentials, instead use the credentials obtained from the <em>creating an app</em> section.</p>\n<p>ClientID and Secret are separated by a colon, this is important, failing to use this separator results in failed authentication. Grant type should be set to client_credentials.</p>\n<blockquote>\n<p>curl -i --user Nn4sgf0yXCYcfPpUIo7NxQ..:gPDvI3HPvFiSucge84rKkw.. --data \"grant_type=client_credentials\" <a href=\"https://api.corehr.com/ws/acmep/corehr/oauth/token\">https://api.corehr.com/ws/acmep/corehr/oauth/token</a></p>\n</blockquote>\n<p>AND, for UAT</p>\n<blockquote>\n<p>curl -i --user Nn4sgf0yXCYcfPpUIo7NxQ..:gPDvI3HPvFiSucge84rKkw.. --data \"grant_type=client_credentials\" <a href=\"https://uatapi.corehr.com/ws/acmeu/corehr/oauth/token\">https://uatapi.corehr.com/ws/acmeu/corehr/oauth/token</a></p>\n</blockquote>\n<p>Returns a JSON object, with the access token</p>\n<p>{</p>\n<p>\"access_token\":\"KqWt7F2oXOZaInnrt0b7NQ..\",</p>\n<p>\"token_type\":\"bearer\",</p>\n<p>\"expires_in\":3600</p>\n<p>}</p>\n<p>All subsequent requests must now use this access token (expires in 3600 seconds i.e. 60 minutes). Add this access token as an Authorization header.</p>\n<h3 id=\"using-the-token-to-get-some-data\">Using the Token to get some data</h3>\n<p>This example uses a token with the contacts module, remember your App needs to have the PRIVS for the contact module (this is explained in the section <em>oAuth App Creation - Assigning the Privileges</em>)</p>\n<blockquote>\n<p>curl -i -H\"Authorization: Bearer KqWt7F2oXOZaInnrt0b7NQ..\" <a href=\"https://api.corehr.com/ws/acmep/corehr/v1/contact/\">https://api.corehr.com/ws/acmep/corehr/v1/contact/</a></p>\n</blockquote>\n<p>AND, for UAT</p>\n<blockquote>\n<p>curl -i -H\"Authorization: Bearer KqWt7F2oXOZaInnrt0b7NQ..\" <a href=\"https://uatapi.corehr.com/ws/acmeu/corehr/v1/contact/\">https://uatapi.corehr.com/ws/acmeu/corehr/v1/contact/</a></p>\n</blockquote>\n<hr>\n<h1 id=\"conventions\">Conventions</h1>\n<h2 id=\"json\">JSON</h2>\n<p>This section is optional to read, it does raise some important conventions. All web service content are <strong>JSON</strong> (apart from services such as images). A request body must be well formed JSON and all responses from server will be JSON. JSON is expected to be well formed, adhering to ECMA 404 standard, PeopleXD implements strict JSON.</p>\n<p>All requests with a request body (POST and PATCH) will require a header with <code>content-type</code> set to <code>application/json</code>, this can be seen in the examples below. All other <code>content-type</code> requests will be rejected (apart from cases such as images). Following two resources are useful when parsing JSON.</p>\n<p><a href=\"http://jsonlint.com/\">JSON Lint</a></p>\n<p><a href=\"http://www.ecma-international.org/publications/standards/Ecma-404.htm\">EMCA404 Specification</a></p>\n<h2 id=\"http-verbs\">HTTP Verbs</h2>\n<p>PeopleXD use the following verbs for all web services:</p>\n<p>*   POST creating new content\n*   PATCH updating existing content\n*   GET retrieve existing content\n*   DEL delete existing content</p>\n<p>All other Verbs will return as an error.</p>\n<h2 id=\"pagination-and-limits\">Pagination and Limits</h2>\n<p>All web services have a default <strong>limit of 100</strong> objects returned. Any instances where more than 100 objects exist (e.g. could be common to have a large set of cost centres), the response body will include a link array with additional links for pagination. Though it is possible to set a pagesize of more than 100, using the pagesize query parameter.</p>\n<p>Each GET request includes following</p>\n<p>*   limit</p>\n<p>represents the maximum number of records returned in one request i.e. 100.</p>\n<p>*   offsetby</p>\n<p>represents pagination, the first request will always have an offsetby 0 i.e. the start. Where more than the limit exists offsetby controls the starting position, typically in batches of 100. Each GET request can accept the offsetby parameter.</p>\n<p>*   count</p>\n<p>the number of records for this response, the maximum count will equal the limit parameter i.e. 100.</p>\n<p>*   hasMore</p>\n<p>a boolean representation indicating if more records exist.</p>\n<p>*   links</p>\n<p>includes links to first and next. The next link is used when pagination is discovered i.e. more than the limit per request.</p>\n<h2 id=\"error-handling--success-responses\">Error Handling &amp; Success Responses</h2>\n<p>Each module below defines error codes and descriptions. Our approach is to use standard HTTP status error codes (typically 4xx) in addition to more verbose / precise errors contained in the response body. The HTTP status codes are returned in the HTTP response header as standard, while the verbose error code is contained in the response body.</p>\n<p>The Convention for documenting the HTTP status code and verbose error code is</p>\n<p>HTTP Status Code / Verbose Error Code</p>\n<blockquote>\n<p>example from Contacts Module</p>\n</blockquote>\n<blockquote>\n<p>400 / 001 Mandatory fields are missing</p>\n</blockquote>\n<p>Indicates a HTTP Status Code of <code>400 - Bad Request -</code> and returned via HTTP response header. While <code>001 Mandatory fields are missing</code> is the verbose error, and returned in the response body.</p>\n<p>In this example the bad request was flagged because a mandatory field is not included in the request.</p>\n<p>Listed below are the standard HTTP response codes used throughout PeopleXD Web Services.</p>\n<p>*   400 - Bad Request -</p>\n<p>Typically means the request is not complete, this could mean missing data or the data provided is invalid.</p>\n<p>*   401 - Unauthorized -</p>\n<p>Typically indicates an unauthorized request using invalid credentials. oAuth 2 Client Credentials are required to access protected resources.</p>\n<p>*   404 - Not Found -</p>\n<p>Typically indicates an entity (person, cost centre, or some object) does not exist.</p>\n<p>*   405 - Method Not Allowed -</p>\n<p>Only <code>GET</code>, <code>POST</code> and <code>PATCH</code> methods are supported.</p>\n<p>*   415 - Invalid Content Type -</p>\n<p>Only <code>application/json</code> accepted for POST and PATCH.</p>\n<h2 id=\"success-messages\">Success Messages</h2>\n<p>*   200 - OK -</p>\n<p>Typical response for <code>GET</code> method.</p>\n<p>*   201 - Created -</p>\n<p>Typical response for <code>POST</code> or <code>PATCH</code> methods.</p>\n<hr>\n<h1 id=\"whiltelists\">Whiltelists</h1>\n<p>A number of the PeopleXD modules implement a whitelist to access data, for example the reference module allows accessing all reference data, there are over 150 distinct refernce types such as Cost Centres, Departments, Work Groups etc. The use case for the B2B web service integration may only have a requirement to deal with Cost Centres. If that is the case the whitelist is the solution. Whitelists can be managed in the Security Module in the same place as managing App Creation.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Getting Started","slug":"getting-started"},{"content":"Whats my URL?","slug":"whats-my-url"},{"content":"Creating an App","slug":"creating-an-app"},{"content":"Using CURL to get a token","slug":"using-curl-to-get-a-token"},{"content":"Conventions","slug":"conventions"},{"content":"Whiltelists","slug":"whiltelists"}],"owner":"3101638","collectionId":"e935c989-3e9b-4c96-ad11-25ac9b3478b7","publishedId":"TzeTHUDu","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2021-06-11T10:32:21.000Z"},"item":[{"name":"V28","item":[{"name":"Clocking","item":[{"name":"batch","item":[{"name":"/clocking/batch/clocks","id":"a051f4ac-4dd1-4804-a24e-babf84d2b763","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"authUrl","value":"<auth-url>"}]},"isInherited":false},"method":"POST","header":[{"key":"content-type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer aiCeArFkGBoGr-_w8zxSLg","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"externalBatchId\": \"1234567\",\r\n\"clockData\": [{\"person\": \"\",\"badgeno\": \"0011121\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000072\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000073\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000073\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000074\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000074\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000075\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000075\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000076\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000076\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000077\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000077\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000078\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000078\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000079\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000079\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000080\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000080\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000082\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000082\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000083\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000083\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000085\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000085\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000086\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000086\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000091\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000091\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000092\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000092\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000095\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000095\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000097\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000097\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000098\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000098\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000099\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000099\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000103\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000103\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000104\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000104\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000105\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000105\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000106\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000106\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000107\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000107\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000108\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000108\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000109\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000109\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000111\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000111\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000112\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000112\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000113\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000113\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000114\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000114\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000115\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000115\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000116\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000116\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000117\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000117\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000118\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000118\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000119\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000119\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000120\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000120\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000121\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000121\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000122\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000122\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000123\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000123\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000124\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000124\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000125\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000125\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000126\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000126\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000127\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000127\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000129\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000129\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000131\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000131\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000133\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000133\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000134\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000134\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000135\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000135\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000136\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000136\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000137\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000137\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000138\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000138\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000139\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"000139\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1111111111\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1111111111\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1111111119\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1111111119\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"123456890\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"123456890\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000001\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000001\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000002\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000002\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000004\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000004\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000005\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000005\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000006\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000006\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000007\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000007\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000008\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000008\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000009\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000009\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000010\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000010\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000011\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000011\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000012\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000012\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000013\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000013\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000014\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000014\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000015\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000015\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000016\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-23 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"7204000016\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-23 14:00:00 -04:00\",\"deviceid\": \"1234\"}]\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/clocking/batch/clocks","description":"<p>Batch Load Clocks into the XD system. We suggest sending no more then 10k clocks per batch or else the connection may time out. Esitmated 3 minutes for a 10k batch load.</p>\n<p>Any errors in data parse will be returned immeditly with 400 error and a reponse giving specific detail as to what caused the rejection. </p>\n<ul>\n<li><p>The JSON body uses standard <a href=\"#data-validation\">data validation</a></p>\n<ol>\n<li><strong>clockData</strong>. - JSON Array</li>\n</ol>\n<p>   <strong>person</strong></p>\n<ul>\n<li>Max lenght 10.</li>\n<li>Mandatory if badgeno is empty.</li>\n</ul>\n<p>   <strong>badgeno</strong>\n    * Max length 18.\n    * Mandatory if person is empty.</p>\n<p>   <strong>movement</strong>\n    * Max length 1.\n    * Valid values A I O and Empty.</p>\n<p>   <strong>clock</strong>\n    * String date in format \"YYYY-MM-DD HH24:MI:SS TZH:TZM\"\n    * Strictly Typed all parts of the date are required.</p>\n<p>   <strong>deviceid</strong>\n    * Max lenght 30.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Example Json Array.\n        [{\n          \"person\": \"T123456\",\n          \"badgeno\":\"123434567\",\n          \"movement\": \"I\",\n          \"clock\": \"2021-11-01 09:00:15 +01:00\",\n          \"deviceid\": \"1234567\"\n          }, {\n          \"person\": \"T123456\",\n          \"badgeno\":\"123434567\",\n          \"movement\": \"O\",\n          \"clock\": \"2021-11-01 17:30:30 +01:00\",\n          \"deviceid\": \"1234567\"\n          }]\n</code></pre><ol>\n<li><strong>externalBatchId</strong>. <ul>\n<li>Digits Only.</li>\n<li>Mandatory.</li>\n<li>Max length 30.</li>\n</ul>\n</li>\n</ol>\n</li>\n<li><p>This endpoint is protected using oAuth2, it requires a valid Bearer Token to be sent in the Authorization header. Please refer to the <a href=\"#authorization\">Authorization</a> guidelines outlined in the introduction.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","clocking","batch","clocks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9f4f5676-60f0-427e-839e-643a16db07aa","name":"/clocking/batch/clocks","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer aiCeArFkGBoGr-_w8zxSLg","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"externalBatchId\": \"1234566\",\r\n\"clockData\": [{\r\n                  \"person\": \"7204000020\",\r\n                  \"badgeno\": \"\",\r\n                  \"movement\": \"I\",\r\n                  \"clock\": \"2021-01-20 09:00:00 -04:00\",\r\n                  \"deviceid\": \"1234\"\r\n              },\r\n              {\r\n                  \"person\": \"7204000020\",\r\n                  \"badgeno\": \"\",\r\n                  \"movement\": \"O\",\r\n                  \"clock\": \"2021-01-20 14:00:00 -04:00\",\r\n                  \"deviceid\": \"1234\"\r\n              }]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/clocking/batch/clocks"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 04 Feb 2021 08:43:26 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"96f03e9e-726e-4deb-8f38-8590227666bb-0003dc55"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com https://*.xd.accessacloud.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION, X-COREHR-INTEGRITY, CACHE-CONTROL, X-COREHR-FILE-NAME, X-COREHR-WARNINGS"},{"key":"Content-Length","value":"0"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":""},{"id":"af02e45a-13c1-4e19-b512-bdaf4a94b2e2","name":"/clocking/batch/clocks","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer aiCeArFkGBoGr-_w8zxSLg","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"externalBatchId\": \"1234590\",\r\n    \"clockData\": [\r\n        {\r\n            \"person\": \"000072\",\r\n            \"badgeno\": \"\",\r\n            \"movement\": \"I\",\r\n            \"clock\": \"2021-01-23 09:00:00 -01:00\",\r\n            \"deviceid\": \"1222\"\r\n        },\r\n        {\r\n            \"person\": \"000072\",\r\n            \"badgeno\": \"\",\r\n            \"movement\": \"O\",\r\n            \"clock\": \"2021-01-23 17:30:00 -01:00\",\r\n            \"deviceid\": \"1222\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/clocking/batch/clocks"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 08 Feb 2021 15:37:18 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"2f3fd735-86cb-496a-a495-9b76cd5fd264-001044ef"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION, X-COREHR-INTEGRITY, CACHE-CONTROL, X-COREHR-FILE-NAME, X-COREHR-WARNINGS"},{"key":"Content-Length","value":"0"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":""},{"id":"c6e4be8a-2ac6-4f9a-8dbf-289f72e8a360","name":"/clocking/batch/clocks","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer aiCeArFkGBoGr-_w8zxSLg","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"externalBatchId\": \"1234566\",\r\n\"clockData\":[{\"person\": \" 8087200\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \" 8087200\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0001634\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0001634\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0003490\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0003490\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0006418\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0006418\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0006740\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0006740\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0006771\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0006771\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0006959\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0006959\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0012241\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0012241\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0012255\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0012255\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0013640\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0013640\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0014302\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0014302\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0014395\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0014395\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0014618\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0014618\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0015860\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0015860\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0016983\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0016983\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0020136\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0020136\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0022675\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0022675\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0023643\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0023643\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0025846\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0025846\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0026047\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0026047\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0026158\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0026158\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0026512\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0026512\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0028524\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0028524\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0029922\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0029922\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0030640\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0030640\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0031794\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0031794\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0032061\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0032061\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0034934\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0034934\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0036755\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0036755\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0037483\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0037483\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0038531\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0038531\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0040563\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0040563\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0043130\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0043130\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0044094\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0044094\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0044941\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0044941\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0045555\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0045555\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0045780\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0045780\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0046457\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0046457\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0047664\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0047664\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0047681\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0047681\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0049534\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0049534\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0051140\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0051140\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0051979\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0051979\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0052853\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0052853\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0056145\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0056145\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0057845\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0057845\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0060290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0060290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0061351\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0061351\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0061813\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0061813\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0062746\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0062746\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0065518\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0065518\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0066995\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0066995\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0067182\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0067182\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0068421\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0068421\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0068674\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0068674\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0069559\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0069559\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0070741\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0070741\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0070866\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0070866\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0071150\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0071150\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0071612\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0071612\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0072177\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0072177\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0072944\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0072944\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0073960\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0073960\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0074880\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0074880\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0075046\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0075046\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0079056\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0079056\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0079552\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0079552\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0079965\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0079965\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"008\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"008\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0081043\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0081043\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0082008\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0082008\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0084707\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0084707\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0085976\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0085976\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0087686\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0087686\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0088814\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0088814\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0088859\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0088859\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0090558\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0090558\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0090624\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0090624\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0090669\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0090669\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0091081\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0091081\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0091560\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0091560\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0091814\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0091814\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0092955\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0092955\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0093219\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0093219\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0094075\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0094075\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0096743\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0096743\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0097038\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0097038\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0098467\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0098467\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0098707\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0098707\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0098977\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0098977\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0100521\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0100521\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0101600\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0101600\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0102390\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0102390\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0102707\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0102707\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0102901\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0102901\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0102915\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0102915\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0103310\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0103310\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0103710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0103710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0104448\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0104448\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0105180\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0105180\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0105930\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0105930\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0106480\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0106480\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0106814\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0106814\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0107351\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0107351\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0107396\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0107396\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0107508\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0107508\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0108080\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0108080\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0109714\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0109714\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0109922\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0109922\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0110029\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0110029\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0110844\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0110844\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0111906\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0111906\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0112030\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0112030\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0112665\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0112665\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0112682\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0112682\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0114646\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0114646\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0114885\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0114885\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0115024\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0115024\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0118035\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0118035\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0118212\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0118212\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0119340\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0119340\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0119686\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0119686\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0121656\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0121656\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0122450\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0122450\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0123446\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0123446\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0123814\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0123814\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0124080\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0124080\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0127519\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0127519\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0128087\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0128087\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0128472\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0128472\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0129485\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0129485\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0130411\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0130411\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0131011\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0131011\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0131552\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0131552\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0131583\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0131583\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0133710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0133710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0136912\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0136912\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0136926\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0136926\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0136943\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0136943\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0142000\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0142000\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0142715\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0142715\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0142732\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0142732\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0142780\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0142780\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0145583\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0145583\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0145871\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0145871\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0147710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0147710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0148497\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0148497\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0148626\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0148626\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0149465\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0149465\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0150818\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0150818\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0153145\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0153145\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0157380\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0157380\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0160460\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0160460\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0161030\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0161030\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0161425\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0161425\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0161522\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0161522\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0164148\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0164148\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0168748\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0168748\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0171272\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0171272\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0172077\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0172077\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0173652\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0173652\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0177870\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0177870\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0178405\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0178405\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0180007\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0180007\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0180579\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0180579\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0180725\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0180725\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0183736\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0183736\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0184880\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0184880\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0186750\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0186750\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0196022\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0196022\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0197417\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0197417\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0197479\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0197479\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0199654\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0199654\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0200005\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0200005\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0200754\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0200754\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0201035\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0201035\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0201337\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0201337\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0201989\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0201989\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0202176\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0202176\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0202797\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0202797\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0202988\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0202988\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0203192\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0203192\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0203241\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0203241\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0203574\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0203574\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0204157\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0204157\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0205059\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0205059\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0205971\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0205971\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0206030\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0206030\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0206332\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0206332\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0206696\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0206696\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0206890\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0206890\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0207300\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0207300\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0207393\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0207393\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0207460\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0207460\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0208202\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0208202\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0208281\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0208281\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0208300\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0208300\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0208934\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0208934\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0210442\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0210442\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0211140\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0211140\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0212326\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0212326\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0213179\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0213179\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0213280\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0213280\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0213689\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0213689\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0214688\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0214688\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0214817\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0214817\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0215257\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0215257\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0215740\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0215740\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0215847\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0215847\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0215895\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0215895\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0216340\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0216340\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0216402\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0216402\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0216988\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0216988\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0217429\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0217429\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0218240\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0218240\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0218733\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0218733\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0219045\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0219045\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0219156\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0219156\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0219236\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0219236\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0219316\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0219316\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0219888\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0219888\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0220290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0220290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0220512\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0220512\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0220560\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0220560\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0223585\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0223585\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0223873\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0223873\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0225472\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0225472\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0225730\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0225730\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0225965\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0225965\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0227373\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0227373\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0228945\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0228945\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0228980\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0228980\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0230467\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0230467\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0230547\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0230547\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0230741\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0230741\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0230772\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0230772\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0230818\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0230818\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0231962\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0231962\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0232593\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0232593\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0233447\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0233447\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0233450\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0233450\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0233610\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0233610\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0234050\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0234050\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0234370\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0234370\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0234477\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0234477\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0234765\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0234765\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0234862\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0234862\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0235892\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0235892\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0236427\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0236427\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0238106\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0238106\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0238220\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0238220\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0238490\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0238490\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0238952\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0238952\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0239025\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0239025\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0239344\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0239344\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0239455\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0239455\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0240204\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0240204\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0241154\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0241154\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0241217\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0241217\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0241536\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0241536\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0241952\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0241952\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0243360\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0243360\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0243836\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0243836\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0244467\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0244467\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0244547\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0244547\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0244581\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0244581\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0244600\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0244600\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0246593\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0246593\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0247513\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0247513\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0247829\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0247829\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0248893\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0248893\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0249508\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0249508\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0250176\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0250176\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0250384\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0250384\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0250912\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0250912\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0251717\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0251717\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0253236\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0253236\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0254984\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0254984\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0255838\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0255838\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0255855\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0255855\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0255872\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0255872\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0256854\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0256854\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0257680\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0257680\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0258023\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0258023\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0258099\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0258099\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0258516\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0258516\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0260024\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0260024\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0260250\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0260250\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0261071\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0261071\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0261821\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0261821\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0262515\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0262515\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0262630\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0262630\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0262914\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0262914\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0263035\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0263035\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0263660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0263660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0264065\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0264065\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0264770\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0264770\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0265020\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0265020\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0265401\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0265401\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0265831\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0265831\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0266299\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0266299\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0267652\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0267652\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0268027\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0268027\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0268329\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0268329\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0268887\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0268887\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0269700\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0269700\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0269727\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0269727\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0270732\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0270732\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0271027\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0271027\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0271124\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0271124\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0273694\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0273694\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0273709\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0273709\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0275467\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0275467\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0275710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0275710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0275755\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0275755\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0275804\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0275804\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0278003\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0278003\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0279290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0279290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0279779\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0279779\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0280451\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0280451\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0280975\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0280975\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0282020\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0282020\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0282397\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0282397\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0282450\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0282450\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0282591\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0282591\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0283210\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0283210\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0283268\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0283268\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0284968\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0284968\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0285089\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0285089\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0285124\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0285124\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0285266\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0285266\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0286300\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0286300\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0287438\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0287438\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0287552\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0287552\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0287868\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0287868\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0288760\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0288760\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0288995\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0288995\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0289453\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0289453\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0289516\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0289516\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0289564\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0289564\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0291964\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0291964\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0292040\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0292040\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0292818\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0292818\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0292977\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0292977\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0293851\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0293851\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0294066\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0294066\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0294992\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0294992\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0295051\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0295051\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0295239\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0295239\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0295592\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0295592\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0296432\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0296432\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0296526\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0296526\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0296560\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0296560\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0297348\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0297348\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0297653\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0297653\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0297910\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0297910\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0298059\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0298059\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0298621\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0298621\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0298666\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0298666\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0299315\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0299315\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0299488\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0299488\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0300366\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0300366\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0300480\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0300480\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0301001\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0301001\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0302302\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0302302\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0302910\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0302910\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0303204\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0303204\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0304043\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0304043\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0304616\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0304616\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0306725\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0306725\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0306836\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0306836\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0307440\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0307440\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0308040\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0308040\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0308292\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0308292\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0310179\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0310179\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0311643\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0311643\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0312368\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0312368\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0312420\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0312420\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0312528\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0312528\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0312611\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0312611\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0312850\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0312850\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0313287\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0313287\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0313402\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0313402\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0313527\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0313527\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0314942\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0314942\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0315130\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0315130\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0315556\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0315556\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0315800\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0315800\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0316000\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0316000\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0318057\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0318057\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0318633\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0318633\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0319504\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0319504\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0320491\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0320491\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0321012\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0321012\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0321203\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0321203\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0321519\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0321519\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0321758\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0321758\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0324790\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0324790\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0324804\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0324804\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0325369\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0325369\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0325390\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0325390\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0325577\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0325577\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0325785\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0325785\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0327589\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0327589\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0327686\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0327686\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0327909\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0327909\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0327988\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0327988\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0328033\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0328033\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0328304\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0328304\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0328828\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0328828\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0329781\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0329781\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0330991\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0330991\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0331450\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0331450\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0331640\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0331640\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0331654\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0331654\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0331939\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0331939\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0331973\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0331973\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0332191\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0332191\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0332590\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0332590\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0332733\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0332733\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0332969\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0332969\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0332972\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0332972\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0333045\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0333045\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0333111\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0333111\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0333190\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0333190\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0334510\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0334510\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0335009\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0335009\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0335217\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0335217\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0336247\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0336247\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0336774\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0336774\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0338085\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0338085\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0338436\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0338436\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0338710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0338710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0339102\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0339102\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0339133\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0339133\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0340309\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0340309\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0342768\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0342768\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0342865\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0342865\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0343163\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0343163\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0343625\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0343625\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0344273\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0344273\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0344721\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0344721\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0344797\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0344797\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0344829\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0344829\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0345238\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0345238\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0345429\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0345429\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0346720\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0346720\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0347489\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0347489\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0348839\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0348839\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0348873\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0348873\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0349602\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0349602\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0350045\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0350045\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0351089\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0351089\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0351138\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0351138\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0351776\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0351776\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0351811\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0351811\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0352490\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0352490\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0353441\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0353441\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0353549\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0353549\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0353632\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0353632\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0354055\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0354055\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0354579\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0354579\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0354693\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0354693\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0354836\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0354836\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0355675\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0355675\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0357660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0357660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0358624\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0358624\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0359477\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0359477\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0360132\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0360132\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0360690\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0360690\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0361592\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0361592\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0361638\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0361638\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0361641\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0361641\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0361877\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0361877\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0362560\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0362560\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0362637\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0362637\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0366620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0366620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0367486\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0367486\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0369835\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0369835\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0370597\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0370597\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0372054\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0372054\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0372179\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0372179\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0372342\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0372342\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0372422\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0372422\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0375801\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0375801\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0376016\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0376016\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0376095\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0376095\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0377636\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0377636\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0378253\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0378253\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0379155\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0379155\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0379599\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0379599\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0381729\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0381729\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0382155\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0382155\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0383328\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0383328\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0383775\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0383775\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0383824\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0383824\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0384330\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0384330\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0384424\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0384424\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0386613\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0386613\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0387369\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0387369\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0387372\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0387372\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0388163\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0388163\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0388944\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0388944\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0390116\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0390116\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0390200\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0390200\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0390230\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0390230\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0393175\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0393175\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0394320\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0394320\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0396728\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0396728\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0397890\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0397890\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0398597\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0398597\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0399517\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0399517\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0399645\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0399645\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0402060\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0402060\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0402330\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0402330\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0402757\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0402757\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0402982\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0402982\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0403360\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0403360\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0403391\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0403391\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0405178\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0405178\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0408304\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0408304\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0408318\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0408318\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0410305\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0410305\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0411685\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0411685\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0412910\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0412910\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0413507\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0413507\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0414013\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0414013\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0414155\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0414155\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0414585\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0414585\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0414808\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0414808\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0415456\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0415456\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0417170\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0417170\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0417790\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0417790\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0418010\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0418010\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0418214\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0418214\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0418980\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0418980\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0420166\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0420166\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0420517\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0420517\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0421010\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0421010\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0421148\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0421148\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0423230\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0423230\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0423930\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0423930\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0424829\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0424829\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0426955\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0426955\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0427780\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0427780\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0428169\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0428169\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0428301\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0428301\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0428922\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0428922\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0429234\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0429234\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0430732\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0430732\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0430923\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0430923\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0431377\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0431377\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0431825\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0431825\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0432123\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0432123\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0432137\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0432137\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0432185\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0432185\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0432620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0432620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0433247\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0433247\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0433597\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0433597\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0433632\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0433632\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0434760\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0434760\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0435502\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0435502\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0437115\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0437115\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0438225\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0438225\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0439207\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0439207\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0439512\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0439512\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0439939\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0439939\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0440194\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0440194\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0440625\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0440625\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0440673\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0440673\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0440944\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0440944\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0441863\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0441863\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0442050\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0442050\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0442973\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0442973\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0443032\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0443032\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0443160\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0443160\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0443285\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0443285\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0443542\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0443542\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0444427\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0444427\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0444860\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0444860\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0445000\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0445000\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0445394\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0445394\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0445460\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0445460\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0445856\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0445856\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0446026\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0446026\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0446442\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0446442\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0446886\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0446886\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0447300\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0447300\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0447407\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0447407\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0447823\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0447823\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0448312\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0448312\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0450198\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0450198\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0450410\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0450410\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0450486\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0450486\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0450570\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0450570\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0451149\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0451149\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0451437\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0451437\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0451884\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0451884\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0452658\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0452658\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0453660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0453660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0454209\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0454209\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0454337\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0454337\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0454802\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0454802\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0455402\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0455402\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0456990\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0456990\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0457050\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0457050\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0457285\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0457285\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0457303\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0457303\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0457511\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0457511\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0458860\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0458860\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0459058\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0459058\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0459394\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0459394\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0459682\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0459682\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0462027\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0462027\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0462235\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0462235\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0462762\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0462762\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0463217\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0463217\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0463918\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0463918\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0465007\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0465007\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0465485\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0465485\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0465836\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0465836\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0466804\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0466804\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0467324\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0467324\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0467341\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0467341\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0468310\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0468310\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0468958\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0468958\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0469114\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0469114\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0469575\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0469575\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0470691\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0470691\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0470768\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0470768\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0471230\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0471230\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0472367\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0472367\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0472912\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0472912\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0473175\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0473175\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0473939\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0473939\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0474889\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0474889\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0476665\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0476665\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0477807\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0477807\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0478042\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0478042\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0478868\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0478868\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0479055\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0479055\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0479579\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0479579\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0480234\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0480234\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0480970\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0480970\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0481167\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0481167\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0481358\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0481358\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0482038\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0482038\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0482631\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0482631\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0482836\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0482836\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0482981\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0482981\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0483405\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0483405\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0483498\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0483498\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0483578\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0483578\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0484657\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0484657\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0484660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0484660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0485052\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0485052\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0485545\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0485545\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0485820\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0485820\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0486096\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0486096\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0486912\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0486912\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0487530\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0487530\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0488525\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0488525\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0490450\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0490450\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0490654\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0490654\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0491907\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0491907\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0492510\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0492510\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0493190\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0493190\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0494522\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0494522\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0496454\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0496454\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0496534\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0496534\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0496760\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0496760\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0497068\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0497068\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0497578\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0497578\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0497821\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0497821\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0497849\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0497849\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0497929\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0497929\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0498227\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0498227\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0499021\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0499021\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0499337\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0499337\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0499642\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0499642\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0499833\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0499833\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0500312\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0500312\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0500468\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0500468\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0500981\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0500981\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0501360\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0501360\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0501467\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0501467\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0501613\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0501613\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0501870\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0501870\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0501963\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0501963\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0502626\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0502626\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0502710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0502710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0503306\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0503306\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0503531\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0503531\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0504131\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0504131\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0504176\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0504176\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0504398\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0504398\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0504420\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0504420\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0504797\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0504797\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0505269\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0505269\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0505349\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0505349\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0505654\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0505654\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0505717\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0505717\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0506334\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0506334\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0507173\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0507173\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0507298\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0507298\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0507489\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0507489\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0507683\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0507683\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0508967\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0508967\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0509393\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0509393\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0509807\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0509807\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0510093\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0510093\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0510652\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0510652\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0511329\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0511329\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0512997\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0512997\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0514920\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0514920\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0515692\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0515692\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0516053\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0516053\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0516771\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0516771\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0516799\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0516799\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0517115\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0517115\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0518114\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0518114\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0519020\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0519020\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0519432\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0519432\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0519720\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0519720\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0521017\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0521017\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0521607\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0521607\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0522192\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0522192\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0524635\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0524635\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0525172\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0525172\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0526540\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0526540\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0526695\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0526695\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0526935\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0526935\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0527810\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0527810\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0527837\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0527837\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0528197\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0528197\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0528534\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0528534\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0529308\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0529308\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0529901\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0529901\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0530313\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0530313\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0532037\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0532037\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0533036\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0533036\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0533292\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0533292\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0534434\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0534434\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0535114\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0535114\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0535416\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0535416\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0535930\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0535930\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0536064\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0536064\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0537525\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0537525\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0537670\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0537670\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0537750\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0537750\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0538874\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0538874\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0539426\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0539426\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0539759\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0539759\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0539998\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0539998\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0540237\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0540237\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0540240\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0540240\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0540844\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0540844\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0540938\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0540938\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0541045\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0541045\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0541284\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0541284\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0543060\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0543060\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0544039\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0544039\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0544712\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0544712\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0544948\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0544948\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0546103\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0546103\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0546228\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0546228\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0546262\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0546262\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0546342\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0546342\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0546436\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0546436\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0547404\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0547404\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0547706\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0547706\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0548608\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0548608\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0548944\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0548944\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0549128\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0549128\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0549561\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0549561\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0549607\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0549607\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0550626\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0550626\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0551528\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0551528\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0552500\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0552500\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0552829\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0552829\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0553002\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0553002\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0553210\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0553210\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0554174\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0554174\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0554525\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0554525\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0555298\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0555298\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0555461\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0555461\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0556426\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0556426\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0556457\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0556457\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0556793\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0556793\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0558455\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0558455\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0558615\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0558615\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0559662\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0559662\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0559853\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0559853\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0560362\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0560362\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0560425\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0560425\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0561278\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0561278\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0561361\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0561361\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0561375\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0561375\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0561712\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0561712\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0562055\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0562055\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0562867\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0562867\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0564660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0564660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0565066\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0565066\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0565900\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0565900\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0566079\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0566079\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0566239\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0566239\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0569569\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0569569\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0569812\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0569812\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0569888\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0569888\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0570480\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0570480\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0571299\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0571299\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0571619\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0571619\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0571670\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0571670\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0572777\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0572777\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0572923\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0572923\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0573089\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0573089\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0573252\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0573252\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0573430\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0573430\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0573491\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0573491\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0573860\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0573860\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0574678\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0574678\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0575202\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0575202\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0576010\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0576010\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0576787\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0576787\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0577280\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0577280\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0577710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0577710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0578660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0578660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0580214\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0580214\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0580689\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0580689\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0581084\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0581084\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0581098\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0581098\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0581386\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0581386\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0581532\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0581532\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0582784\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0582784\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0583544\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0583544\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0585109\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0585109\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0586461\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0586461\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0586649\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0586649\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0587044\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0587044\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0591234\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0591234\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0594103\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0594103\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0595022\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0595022\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0595098\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0595098\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0595261\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0595261\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0596927\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0596927\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0601082\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0601082\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0601131\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0601131\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0601558\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0601558\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0602047\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0602047\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0602050\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0602050\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0602557\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0602557\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0602668\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0602668\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0602845\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0602845\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0602925\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0602925\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0602987\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0602987\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0603029\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0603029\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0603206\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0603206\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0603223\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0603223\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0603844\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0603844\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0603907\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0603907\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0603910\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0603910\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0604139\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0604139\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0604604\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0604604\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0604670\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0604670\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0605443\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0605443\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0605491\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0605491\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0605780\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0605780\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0606540\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0606540\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0607011\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0607011\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0607469\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0607469\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0607629\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0607629\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0607810\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0607810\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0608680\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0608680\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0608787\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0608787\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0608950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0608950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0609440\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0609440\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0609498\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0609498\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0609533\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0609533\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0609804\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0609804\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0609980\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0609980\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0610042\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0610042\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0610264\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0610264\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0610632\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0610632\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0610840\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0610840\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0611232\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0611232\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0612453\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0612453\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0612661\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0612661\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0612883\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0612883\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0613501\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0613501\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0613688\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0613688\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0614035\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0614035\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0615398\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0615398\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0615530\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0615530\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0615672\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0615672\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0615926\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0615926\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0615988\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0615988\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0616748\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0616748\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0617109\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0617109\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0617223\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0617223\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0617844\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0617844\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0617907\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0617907\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0618590\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0618590\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0618670\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0618670\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0619811\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0619811\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0619842\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0619842\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0622169\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0622169\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0622363\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0622363\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0622380\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0622380\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0622922\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0622922\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0623487\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0623487\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0623744\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0623744\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0624233\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0624233\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0624295\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0624295\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0625950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0625950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0626071\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0626071\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0626117\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0626117\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0626661\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0626661\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0626835\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0626835\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0627040\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0627040\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0627084\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0627084\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0628740\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0628740\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0628878\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0628878\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0630754\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0630754\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0631243\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0631243\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0631260\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0631260\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0631337\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0631337\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0631656\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0631656\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0632128\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0632128\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0632145\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0632145\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0632690\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0632690\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0633207\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0633207\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0633318\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0633318\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0634160\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0634160\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0634285\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0634285\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0634348\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0634348\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0634414\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0634414\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0634764\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0634764\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0635475\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0635475\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0636218\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0636218\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0636346\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0636346\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0636620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0636620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0637408\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0637408\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0638198\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0638198\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0638441\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0638441\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0638486\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0638486\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0638632\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0638632\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0638806\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0638806\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0638982\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0638982\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0639090\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0639090\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0639437\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0639437\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0639485\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0639485\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0639739\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0639739\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0639790\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0639790\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0640026\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0640026\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0640168\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0640168\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0640598\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0640598\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0640792\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0640792\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0640952\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0640952\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0641140\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0641140\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0641810\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0641810\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0642010\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0642010\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0642149\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0642149\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0642294\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0642294\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0642360\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0642360\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0642790\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0642790\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0642995\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0642995\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0643356\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0643356\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0644084\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0644084\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0645371\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0645371\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0645816\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0645816\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0645992\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0645992\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0647734\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0647734\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0648160\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0648160\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0649701\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0649701\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0649732\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0649732\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0649891\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0649891\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0651622\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0651622\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0651795\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0651795\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0651861\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0651861\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0652590\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0652590\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0652985\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0652985\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0653058\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0653058\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0653235\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0653235\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0654091\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0654091\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0654380\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0654380\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0654886\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0654886\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0654921\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0654921\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0655552\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0655552\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656326\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656326\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656471\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656471\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656503\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656503\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656548\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656548\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656659\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656659\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656787\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656787\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656805\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656805\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656867\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656867\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656981\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0656981\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0657103\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0657103\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0657373\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0657373\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0657484\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0657484\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0658022\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0658022\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0658244\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0658244\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0658532\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0658532\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0658563\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0658563\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0658626\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0658626\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0659656\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0659656\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0659961\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0659961\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0660835\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0660835\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0662146\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0662146\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0663256\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0663256\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0663592\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0663592\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0664100\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0664100\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0664574\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0664574\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0665050\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0665050\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0665813\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0665813\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0666267\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0666267\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0666732\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0666732\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0667682\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0667682\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0668553\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0668553\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0668570\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0668570\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0668838\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0668838\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0669119\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0669119\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0669712\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0669712\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0670013\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0670013\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0670235\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0670235\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0670283\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0670283\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0670329\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0670329\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0670970\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0670970\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0671460\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0671460\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0671758\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0671758\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0672979\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0672979\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0673676\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0673676\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0675848\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0675848\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0676465\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0676465\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0676881\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0676881\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0677450\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0677450\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0677513\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0677513\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0677624\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0677624\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0677974\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0677974\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0678610\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0678610\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0678956\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0678956\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0679109\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0679109\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0679299\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0679299\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0679684\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0679684\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0679941\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0679941\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0680096\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0680096\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0680180\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0680180\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0680367\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0680367\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0682206\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0682206\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0682268\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0682268\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0682476\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0682476\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0683156\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0683156\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0683586\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0683586\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0684679\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0684679\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0684714\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0684714\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0684728\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0684728\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0685408\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0685408\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0686198\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0686198\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0686472\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0686472\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0686601\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0686601\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0687166\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0687166\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0687645\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0687645\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0687659\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0687659\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0688040\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0688040\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0688741\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0688741\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0689737\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0689737\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0689851\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0689851\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0690024\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0690024\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0690631\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0690631\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0690676\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0690676\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0690840\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0690840\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0691387\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0691387\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0691852\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0691852\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0691950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0691950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0692053\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0692053\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0692084\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0692084\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0692213\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0692213\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0692435\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0692435\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0692550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0692550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0692737\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0692737\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0693129\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0693129\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0693337\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0693337\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0694114\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0694114\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0694242\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0694242\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0695831\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0695831\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0696032\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0696032\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0696109\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0696109\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0696174\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0696174\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0696400\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0696400\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0696414\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0696414\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0696525\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0696525\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0696716\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0696716\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0697219\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0697219\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0697697\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0697697\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0700046\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0700046\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0700299\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0700299\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0700667\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0700667\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0700781\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0700781\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0701971\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0701971\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0702000\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0702000\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0702061\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0702061\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0702110\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0702110\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0702124\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0702124\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0702297\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0702297\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0702953\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0702953\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0703633\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0703633\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0703681\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0703681\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0704202\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0704202\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0704300\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0704300\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0704441\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0704441\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0704712\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0704712\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0704837\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0704837\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0706071\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0706071\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0706360\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0706360\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0706440\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0706440\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0707529\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0707529\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0707594\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0707594\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0707865\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0707865\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0707980\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0707980\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0708291\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0708291\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0708354\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0708354\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0708642\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0708642\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0709239\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0709239\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0709530\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0709530\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0709704\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0709704\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0710390\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0710390\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0710421\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0710421\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0710563\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0710563\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0711257\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0711257\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0711465\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0711465\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0711719\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0711719\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0712384\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0712384\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0712420\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0712420\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0712592\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0712592\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0712770\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0712770\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0712960\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0712960\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0713016\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0713016\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0713100\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0713100\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0714445\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0714445\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0714698\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0714698\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0715302\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0715302\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0715347\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0715347\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0715857\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0715857\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0715940\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0715940\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0716058\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0716058\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0716110\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0716110\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0716696\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0716696\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0717074\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0717074\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0717456\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0717456\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0717519\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0717519\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0717952\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0717952\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0718300\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0718300\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0719680\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0719680\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0720536\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0720536\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0721295\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0721295\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0722410\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0722410\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0722964\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0722964\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0722978\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0722978\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0723516\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0723516\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0723835\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0723835\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0724053\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0724053\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0724084\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0724084\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0724275\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0724275\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0724546\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0724546\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0725340\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0725340\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0725900\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0725900\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0726909\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0726909\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0727911\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0727911\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0728254\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0728254\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0728382\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0728382\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0728493\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0728493\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0728924\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0728924\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0729843\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0729843\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0730161\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0730161\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0731001\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0731001\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0731285\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0731285\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0732222\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0732222\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0732381\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0732381\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0732572\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0732572\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0732750\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0732750\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0733523\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0733523\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0734217\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0734217\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0734952\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0734952\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0735490\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0735490\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0735570\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0735570\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0735680\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0735680\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0736183\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0736183\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0736517\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0736517\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0737231\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0737231\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0737484\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0737484\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0737595\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0737595\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0738546\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0738546\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0738550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0738550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0739354\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0739354\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0740010\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0740010\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0740148\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0740148\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0740440\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0740440\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0741213\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0741213\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0741710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0741710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0742448\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0742448\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0743020\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0743020\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0743079\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0743079\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0743880\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0743880\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0744429\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0744429\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0745046\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0745046\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0745542\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0745542\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0745653\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0745653\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0746430\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0746430\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0746458\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0746458\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0746538\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0746538\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0747811\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0747811\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0748030\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0748030\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0748057\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0748057\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0748217\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0748217\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0748234\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0748234\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0749490\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0749490\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0750811\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0750811\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0751088\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0751088\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0752140\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0752140\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0753183\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0753183\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0753680\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0753680\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0754151\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0754151\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0754182\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0754182\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0754520\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0754520\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0754866\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0754866\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0755421\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0755421\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0755691\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0755691\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0755865\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0755865\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0755879\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0755879\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0755962\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0755962\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0756101\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0756101\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0756177\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0756177\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0756230\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0756230\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0756260\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0756260\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0756576\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0756576\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0756992\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0756992\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0757100\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0757100\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0758241\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0758241\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0759032\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0759032\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0759268\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0759268\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0760162\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0760162\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0760561\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0760561\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0761720\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0761720\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0761734\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0761734\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0762556\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0762556\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0762573\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0762573\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0762640\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0762640\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0762889\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0762889\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0762955\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0762955\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0762972\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0762972\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0763461\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0763461\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0764089\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0764089\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0764110\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0764110\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0764665\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0764665\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0765154\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0765154\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0766743\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0766743\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0766965\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0766965\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0768040\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0768040\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0768387\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0768387\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0768550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0768550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0768661\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0768661\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0770708\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0770708\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0771311\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0771311\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0771932\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0771932\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0771950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0771950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0772019\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0772019\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0772258\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0772258\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0773163\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0773163\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0773448\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0773448\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0773500\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0773500\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0773642\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0773642\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0773784\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0773784\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0774416\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0774416\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0774610\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0774610\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0775352\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0775352\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0776032\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0776032\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0776094\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0776094\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0776480\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0776480\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0776670\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0776670\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0776955\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0776955\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0777076\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0777076\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0777093\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0777093\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0777812\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0777812\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0779123\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0779123\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0779234\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0779234\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0780142\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0780142\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0780444\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0780444\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0780458\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0780458\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0783472\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0783472\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0783663\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0783663\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0783979\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0783979\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0784870\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0784870\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0785006\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0785006\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0785658\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0785658\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0785772\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0785772\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0785818\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0785818\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0786067\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0786067\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0786723\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0786723\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0787816\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0787816\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0788305\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0788305\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0788416\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0788416\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0789383\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0789383\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0789703\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0789703\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0789987\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0789987\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0790021\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0790021\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0790528\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0790528\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0790576\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0790576\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0790900\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0790900\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0791770\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0791770\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0792349\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0792349\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0792668\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0792668\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0794108\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0794108\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0794316\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0794316\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0794524\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0794524\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0796265\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0796265\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0797917\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0797917\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0798215\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0798215\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0798454\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0798454\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0799245\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0799245\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0799600\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0799600\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0800106\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0800106\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0800296\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0800296\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0800328\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0800328\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0800376\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0800376\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0801899\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0801899\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0803214\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0803214\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0803627\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0803627\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0803950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0803950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0803994\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0803994\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0804515\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0804515\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0804563\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0804563\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0804723\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0804723\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0804976\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0804976\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0805083\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0805083\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0805146\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0805146\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0805479\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0805479\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0805850\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0805850\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0806290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0806290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0806815\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0806815\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807002\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807002\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807033\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807033\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807158\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807158\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807210\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807210\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807415\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807415\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807432\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807432\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807668\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807668\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807685\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807685\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807876\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807876\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807973\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0807973\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0808414\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0808414\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0809427\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0809427\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0809541\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0809541\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0810383\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0810383\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0811130\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0811130\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0811747\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0811747\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0812059\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0812059\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0812187\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0812187\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0812750\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0812750\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0813266\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0813266\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0813350\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0813350\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0813745\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0813745\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0813793\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0813793\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0813842\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0813842\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0814217\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0814217\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0814282\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0814282\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0814505\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0814505\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0814540\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0814540\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0814678\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0814678\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0814713\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0814713\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0815295\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0815295\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0815330\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0815330\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0815632\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0815632\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0815979\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0815979\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0816104\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0816104\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0816503\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0816503\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0816756\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0816756\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0816947\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0816947\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0817010\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0817010\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0817023\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0817023\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0817339\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0817339\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0817689\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0817689\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0817738\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0817738\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0818386\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0818386\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0818550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0818550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0818710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0818710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0818723\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0818723\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0818768\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0818768\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0818834\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0818834\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0820148\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0820148\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0820342\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0820342\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0820630\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0820630\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0820769\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0820769\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0820932\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0820932\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0821292\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0821292\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0821421\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0821421\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0821594\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0821594\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0821643\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0821643\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0822066\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0822066\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0822243\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0822243\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0822310\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0822310\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0822403\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0822403\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0822593\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0822593\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0822611\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0822611\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0822687\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0822687\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0822798\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0822798\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0823145\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0823145\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0823193\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0823193\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0823225\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0823225\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0823305\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0823305\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0823384\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0823384\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0823589\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0823589\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0823877\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0823877\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0823880\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0823880\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0824207\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0824207\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0824290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0824290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0824415\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0824415\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0824477\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0824477\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0824654\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0824654\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0824671\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0824671\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0825622\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0825622\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0825858\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0825858\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0826205\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0826205\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0826489\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0826489\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0826538\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0826538\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0827873\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0827873\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0828439\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0828439\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0828456\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0828456\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0828602\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0828602\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0828727\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0828727\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0829917\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0829917\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0830620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0830620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0831282\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0831282\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0831650\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0831650\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0831807\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0831807\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0832073\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0832073\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0832965\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0832965\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0833086\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0833086\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0833121\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0833121\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0833229\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0833229\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0833391\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0833391\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0833836\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0833836\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0834085\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0834085\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0834516\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0834516\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0834835\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0834835\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0835040\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0835040\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0835150\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0835150\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0835550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0835550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0836767\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0836767\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0836944\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0836944\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0836989\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0836989\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0837561\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0837561\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0837624\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0837624\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0837991\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0837991\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0838668\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0838668\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0840003\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0840003\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0840402\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0840402\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0840513\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0840513\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0841349\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0841349\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0842303\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0842303\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0842858\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0842858\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0842907\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0842907\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0842924\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0842924\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0843253\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0843253\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0843746\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0843746\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0843891\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0843891\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0844092\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0844092\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0844731\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0844731\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0844860\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0844860\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0845074\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0845074\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0845425\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0845425\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0845695\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0845695\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0845775\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0845775\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0845792\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0845792\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0845918\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0845918\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0846184\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0846184\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0846216\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0846216\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0846220\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0846220\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0846760\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0846760\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0846806\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0846806\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0846934\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0846934\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0847250\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0847250\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0847330\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0847330\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0847503\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0847503\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0847950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0847950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0848010\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0848010\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0848262\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0848262\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0848755\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0848755\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0849195\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0849195\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0849483\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0849483\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0849550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0849550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0850277\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0850277\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0850995\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0850995\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0851228\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0851228\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0851276\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0851276\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0851498\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0851498\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0851520\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0851520\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0852053\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0852053\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0852067\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0852067\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0852580\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0852580\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0853049\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0853049\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0853260\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0853260\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0853784\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0853784\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0854096\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0854096\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0854162\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0854162\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0854180\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0854180\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0854290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0854290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0854495\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0854495\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0854607\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0854607\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0854655\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0854655\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0855765\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0855765\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0855859\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0855859\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0856365\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0856365\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0856428\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0856428\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0856493\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0856493\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0856622\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0856622\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0857843\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0857843\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0857857\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0857857\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0858013\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0858013\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0858138\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0858138\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0858346\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0858346\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0858350\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0858350\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0858599\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0858599\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0858839\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0858839\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0859057\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0859057\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0859633\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0859633\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0860510\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0860510\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0860732\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0860732\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0861394\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0861394\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0861412\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0861412\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0861700\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0861700\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0862106\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0862106\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0862110\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0862110\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0862220\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0862220\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0862234\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0862234\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0862536\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0862536\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0863073\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0863073\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0863233\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0863233\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0863791\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0863791\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0863868\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0863868\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0864215\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0864215\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0864374\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0864374\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0864628\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0864628\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0864725\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0864725\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0865023\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0865023\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0865134\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0865134\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0865148\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0865148\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0865387\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0865387\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0865440\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0865440\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0865550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0865550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0865883\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0865883\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0866102\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0866102\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0866195\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0866195\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0867448\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0867448\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0868242\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0868242\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0868260\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0868260\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0869192\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0869192\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0869318\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0869318\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0869814\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0869814\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0871420\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0871420\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0871450\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0871450\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0871829\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0871829\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0872335\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0872335\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0872637\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0872637\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0873698\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0873698\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0873702\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0873702\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0874222\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0874222\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0874812\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0874812\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0874985\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0874985\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0875027\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0875027\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0876171\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0876171\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0876300\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0876300\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0876620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0876620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0876727\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0876727\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0877025\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0877025\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0877202\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0877202\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0877233\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0877233\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0877663\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0877663\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0877934\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0877934\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0878534\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0878534\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0879440\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0879440\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0879502\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0879502\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0879994\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0879994\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0880087\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0880087\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0880344\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0880344\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0880601\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0880601\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0880663\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0880663\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0880920\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0880920\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0880996\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0880996\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0881055\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0881055\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0881676\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0881676\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0881756\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0881756\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0881773\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0881773\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0881822\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0881822\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0882010\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0882010\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0882182\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0882182\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0882262\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0882262\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0882932\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0882932\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0883084\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0883084\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0883120\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0883120\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0883563\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0883563\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0884018\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0884018\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0884864\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0884864\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0885450\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0885450\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0886064\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0886064\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0886158\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0886158\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0886637\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0886637\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0886703\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0886703\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0886751\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0886751\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0887015\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0887015\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0887237\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0887237\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0887414\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0887414\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0887747\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0887747\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0888173\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0888173\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0888284\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0888284\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0888444\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0888444\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0888729\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0888729\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0890126\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0890126\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0890795\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0890795\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0890892\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0890892\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0891139\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0891139\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0891843\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0891843\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0891860\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0891860\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0891888\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0891888\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0893171\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0893171\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0893199\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0893199\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0893408\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0893408\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0893442\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0893442\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0893584\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0893584\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0893650\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0893650\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0894250\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0894250\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0894392\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0894392\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0894726\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0894726\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0894823\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0894823\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0895232\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0895232\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0895410\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0895410\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0895499\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0895499\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0895676\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0895676\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0895760\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0895760\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0895790\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0895790\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0898146\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0898146\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0898531\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0898531\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0898562\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0898562\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0898593\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0898593\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0898660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0898660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0898740\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0898740\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0898864\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0898864\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0898989\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0898989\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0899145\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0899145\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0899287\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0899287\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0899464\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0899464\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0899607\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0899607\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0900068\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0900068\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0900165\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0900165\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0900280\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0900280\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0901019\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0901019\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0901116\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0901116\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0901470\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0901470\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0901497\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0901497\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0901626\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0901626\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0902687\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0902687\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0902913\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0902913\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0902958\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0902958\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0903017\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0903017\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0903290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0903290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0904925\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0904925\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0904942\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0904942\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0905050\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0905050\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0905157\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0905157\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0906076\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0906076\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0906173\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0906173\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0906364\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0906364\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0906888\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0906888\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0906923\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0906923\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0906937\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0906937\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0906968\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0906968\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0906971\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0906971\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0907058\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0907058\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0907141\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0907141\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0907297\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0907297\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0907409\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0907409\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0907537\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0907537\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0907651\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0907651\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0908154\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0908154\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0908536\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0908536\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0908775\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0908775\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0908792\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0908792\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0908872\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0908872\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0909518\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0909518\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0910030\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0910030\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0910620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0910620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0910762\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0910762\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0911584\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0911584\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0911681\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0911681\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0911838\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0911838\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0912073\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0912073\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0912632\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0912632\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0913118\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0913118\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0913468\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0913468\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0913485\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0913485\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0913950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0913950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0914068\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0914068\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0914390\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0914390\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0914835\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0914835\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0914980\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0914980\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0915630\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0915630\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0915660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0915660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0915737\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0915737\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0915768\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0915768\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0915865\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0915865\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0916146\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0916146\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0916368\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0916368\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0916580\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0916580\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0916850\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0916850\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0918100\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0918100\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0918113\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0918113\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0918175\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0918175\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0918588\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0918588\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0918765\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0918765\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0919080\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0919080\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0919587\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0919587\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0919640\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0919640\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0920242\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0920242\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0921064\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0921064\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0921127\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0921127\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0921779\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0921779\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0922587\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0922587\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0923062\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0923062\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0923139\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0923139\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0923320\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0923320\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0923492\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0923492\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0923524\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0923524\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0923891\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0923891\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0924169\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0924169\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0924235\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0924235\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0924745\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0924745\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0924905\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0924905\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0924922\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0924922\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0925203\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0925203\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0925296\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0925296\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0925442\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0925442\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0925519\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0925519\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0927326\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0927326\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0927579\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0927579\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0927950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0927950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0928356\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0928356\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0928422\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0928422\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0929040\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0929040\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0929200\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0929200\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0929470\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0929470\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0929691\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0929691\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0929710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0929710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0929882\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0929882\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0930246\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0930246\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0931293\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0931293\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0931564\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0931564\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0931707\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0931707\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0931769\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0931769\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0931915\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0931915\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0932036\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0932036\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0932258\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0932258\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0933274\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0933274\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0933531\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0933531\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0933593\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0933593\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0933930\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0933930\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0934225\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0934225\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0934416\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0934416\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0934638\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0934638\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0934721\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0934721\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0934957\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0934957\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0935002\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0935002\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0935560\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0935560\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0935751\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0935751\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0936587\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0936587\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0936636\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0936636\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0937427\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0937427\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0938218\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0938218\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0938221\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0938221\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0938394\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0938394\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0938412\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0938412\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0938426\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0938426\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0938953\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0938953\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0939009\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0939009\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0939620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0939620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0940750\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0940750\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0940891\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0940891\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0941329\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0941329\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0941665\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0941665\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0941731\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0941731\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0942328\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0942328\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0942380\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0942380\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0942598\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0942598\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0942838\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0942838\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0942983\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0942983\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0943056\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0943056\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0943934\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0943934\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0944197\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0944197\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0944662\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0944662\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0945099\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0945099\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0945151\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0945151\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0945231\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0945231\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0945259\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0945259\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0945600\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0945600\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0945689\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0945689\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0945738\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0945738\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0945963\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0945963\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0946019\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0946019\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0946390\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0946390\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0946532\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0946532\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0946771\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0946771\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0947975\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0947975\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0948273\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0948273\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0948513\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0948513\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0948527\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0948527\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0948592\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0948592\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0949144\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0949144\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0949782\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0949782\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0950021\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0950021\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0950420\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0950420\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0950434\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0950434\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0950545\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0950545\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0950576\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0950576\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0951180\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0951180\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0951447\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0951447\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0951607\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0951607\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0951718\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0951718\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0951863\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0951863\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0951880\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0951880\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0952429\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0952429\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0952699\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0952699\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0953476\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0953476\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0954649\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0954649\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0955346\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0955346\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0955394\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0955394\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0956110\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0956110\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0956185\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0956185\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0956328\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0956328\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0957743\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0957743\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0958360\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0958360\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0958468\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0958468\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0959710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0959710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0959915\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0959915\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0960140\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0960140\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0960979\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0960979\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0961010\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0961010\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0961072\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0961072\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0961121\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0961121\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0961263\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0961263\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0961950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0961950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0962373\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0962373\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0962422\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0962422\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0962436\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0962436\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0963261\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0963261\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0963404\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0963404\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0964260\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0964260\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0964864\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0964864\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0964989\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0964989\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0964992\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0964992\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0965017\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0965017\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0965943\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0965943\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0966304\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0966304\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0966717\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0966717\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0966800\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0966800\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0966862\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0966862\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0967955\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0967955\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0968080\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0968080\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0968635\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0968635\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0968701\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0968701\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0968809\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0968809\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0969235\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0969235\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0969679\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0969679\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0970525\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0970525\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0973411\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0973411\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0973727\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0973727\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0973807\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0973807\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0973886\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0973886\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0975010\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0975010\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0975041\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0975041\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0975246\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0975246\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0975995\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0975995\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0976228\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0976228\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0976325\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0976325\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0977230\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0977230\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0977386\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0977386\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0977501\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0977501\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0977768\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0977768\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0977980\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0977980\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0978531\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0978531\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0978770\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0978770\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0978864\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0978864\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0978975\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0978975\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0979242\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0979242\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0980310\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0980310\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0980657\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0980657\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0981368\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0981368\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0981753\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0981753\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0981847\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0981847\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0981913\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0981913\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0981944\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0981944\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0981961\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0981961\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0982096\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0982096\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0982322\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0982322\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0982721\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0982721\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0982770\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0982770\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0983610\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0983610\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0983637\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0983637\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0983831\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0983831\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0983956\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0983956\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0984590\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0984590\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0985812\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0985812\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0986617\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0986617\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0987137\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0987137\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0988885\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0988885\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0989454\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0989454\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0989628\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0989628\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0990106\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0990106\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0990251\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0990251\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0990473\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0990473\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0990886\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0990886\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0991056\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0991056\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0991060\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0991060\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0991903\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0991903\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0992898\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0992898\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0993165\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0993165\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0993293\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0993293\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0993467\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0993467\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0993790\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0993790\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0994546\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0994546\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0994914\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0994914\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0995066\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0995066\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0996211\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0996211\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0996607\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0996607\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0996797\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0996797\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0997095\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0997095\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0997765\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0997765\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0999715\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0999715\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0999780\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0999780\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0999830\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0999830\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0999843\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0999843\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0999857\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0999857\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0999999\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"0999999\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000172\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000172\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000204\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000204\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000249\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000249\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000297\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000297\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000301\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000301\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000599\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000599\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000745\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000745\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000825\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000825\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000842\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1000842\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1001522\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1001522\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1001872\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1001872\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1002650\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1002650\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1002694\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1002694\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1002760\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1002760\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1004134\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1004134\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1004276\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1004276\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1004405\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1004405\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1004453\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1004453\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1004564\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1004564\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1004613\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1004613\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1004835\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1004835\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1004852\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1004852\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1005227\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1005227\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1005386\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1005386\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1005466\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1005466\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1006434\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1006434\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1006496\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1006496\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1006690\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1006690\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1006944\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1006944\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1006958\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1006958\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1007211\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1007211\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1007398\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1007398\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1007575\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1007575\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1007610\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1007610\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1007909\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1007909\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1007926\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1007926\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1008100\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1008100\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1008269\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1008269\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1008304\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1008304\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1008637\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1008637\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1008862\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1008862\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1008876\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1008876\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009130\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009130\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009160\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009160\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009188\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009188\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009191\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009191\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009351\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009351\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009400\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009400\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009622\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009622\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009636\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009636\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009972\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1009972\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010193\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010193\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010225\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010225\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010319\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010319\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010589\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010589\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010669\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010669\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010718\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010718\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010832\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010832\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010974\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1010974\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1011095\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1011095\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1011207\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1011207\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1011560\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1011560\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1011591\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1011591\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1011720\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1011720\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1011893\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1011893\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1011956\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1011956\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1011973\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1011973\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1012174\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1012174\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1012271\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1012271\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1012587\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1012587\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1012590\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1012590\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1012605\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1012605\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1012684\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1012684\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1012924\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1012924\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1013014\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1013014\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1013093\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1013093\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1013489\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1013489\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1013670\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1013670\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014000\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014000\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014044\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014044\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014058\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014058\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014061\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014061\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014092\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014092\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014138\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014138\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014141\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014141\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014172\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014172\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014266\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014266\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014350\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014350\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014603\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014603\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014634\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1014634\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1015091\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1015091\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1015380\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1015380\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1015616\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1015616\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1015678\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1015678\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1015730\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1015730\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1015918\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1015918\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016220\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016220\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016295\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016295\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016375\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016375\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016469\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016469\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016583\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016583\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016632\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016632\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016694\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016694\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016709\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016709\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016806\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016806\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016810\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016810\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016982\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016982\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016996\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1016996\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017007\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017007\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017038\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017038\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017069\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017069\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017170\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017170\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017232\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017232\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017277\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017277\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017485\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017485\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017631\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017631\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017805\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017805\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017836\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017836\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017964\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017964\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017978\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1017978\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018228\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018228\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018422\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018422\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018436\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018436\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018453\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018453\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018484\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018484\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018520\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018520\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018658\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018658\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018741\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018741\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018818\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018818\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018849\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018849\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018852\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018852\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018932\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1018932\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1019005\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1019005\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1019022\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1019022\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1019084\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1019084\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1019466\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1019466\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1019515\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1019515\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1019737\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1019737\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1019785\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1019785\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1020659\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1020659\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1022515\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1022515\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1023368\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1023368\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1023456788\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1023456788\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1023456789\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1023456789\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1024239\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1024239\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1024287\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1024287\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1024447\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1024447\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1026622\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1026622\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1027062\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1027062\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1027156\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1027156\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1027395\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1027395\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1029487\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1029487\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1029810\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1029810\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1029869\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1029869\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1030427\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1030427\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1030572\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1030572\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1030777\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1030777\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1030809\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1030809\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1031350\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1031350\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1031510\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1031510\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1031620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1031620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1031745\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1031745\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1032091\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1032091\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1032279\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1032279\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1032300\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1032300\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1032439\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1032439\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1033073\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1033073\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1033438\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1033438\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1033566\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1033566\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1034330\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1034330\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1034485\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1034485\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1034503\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1034503\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1034978\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1034978\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1035786\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1035786\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1035963\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1035963\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1036740\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1036740\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1036959\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1036959\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1036993\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1036993\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1037209\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1037209\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1037274\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1037274\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1037417\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1037417\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1037479\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1037479\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1037496\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1037496\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1038096\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1038096\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1038287\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1038287\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1038752\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1038752\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1039370\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1039370\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1039450\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1039450\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1039814\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1039814\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1040180\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1040180\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1040260\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1040260\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1040323\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1040323\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1040385\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1040385\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1041159\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1041159\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1041561\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1041561\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1041607\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1041607\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1042113\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1042113\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1042352\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1042352\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1042925\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1042925\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1042956\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1042956\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1043210\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1043210\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1043365\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1043365\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1043476\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1043476\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1043525\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1043525\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1043750\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1043750\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1043907\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1043907\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1044160\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1044160\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1044510\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1044510\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1044670\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1044670\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1044683\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1044683\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1044910\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1044910\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1045092\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1045092\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1045808\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1045808\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1046185\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1046185\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1046217\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1046217\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1046570\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1046570\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1047250\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1047250\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1047486\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1047486\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1048170\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1048170\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1048548\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1048548\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1048551\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1048551\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1049280\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1049280\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1049308\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1049308\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1049630\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1049630\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1049738\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1049738\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1049866\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1049866\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1049929\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1049929\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1050073\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1050073\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1051485\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1051485\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1052724\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1052724\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1052804\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1052804\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1054150\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1054150\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1054291\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1054291\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1054690\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1054690\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1056020\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1056020\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1056290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1056290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1056318\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1056318\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1057431\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1057431\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1057702\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1057702\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1058028\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1058028\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1058298\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1058298\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1058572\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1058572\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1058826\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1058826\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1059488\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1059488\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1059648\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1059648\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1059762\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1059762\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1059970\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1059970\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1060619\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1060619\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1060653\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1060653\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1060667\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1060667\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1060858\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1060858\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1061080\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1061080\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1061350\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1061350\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1061461\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1061461\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1062186\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1062186\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1062839\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1062839\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1062936\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1062936\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1064136\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1064136\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1064140\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1064140\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1064389\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1064389\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1064521\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1064521\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1064552\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1064552\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1064774\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1064774\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1066897\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1066897\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1067230\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1067230\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1067418\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1067418\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1067803\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1067803\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1068083\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1068083\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1068194\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1068194\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1068354\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1068354\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1068500\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1068500\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1069003\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1069003\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1069051\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1069051\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1069225\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1069225\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1070660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1070660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1070785\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1070785\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1070896\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1070896\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1070962\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1070962\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1071021\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1071021\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1071083\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1071083\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1071163\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1071163\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1071528\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1071528\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1072020\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1072020\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1072558\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1072558\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1072561\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1072561\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1072669\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1072669\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1073100\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1073100\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1073238\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1073238\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1073800\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1073800\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1073925\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1073925\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1074126\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1074126\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1074206\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1074206\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1074924\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1074924\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1075028\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1075028\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1075253\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1075253\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1075604\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1075604\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1075888\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1075888\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1076141\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1076141\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1076409\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1076409\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1076510\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1076510\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1077012\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1077012\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1077248\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1077248\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1077380\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1077380\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1077456\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1077456\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1077490\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1077490\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1077792\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1077792\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1078389\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1078389\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1078650\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1078650\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1079072\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1079072\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1079215\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1079215\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1080185\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1080185\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1080376\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1080376\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1080758\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1080758\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1080810\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1080810\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1081167\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1081167\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1081410\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1081410\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1081694\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1081694\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1081726\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1081726\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1082090\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1082090\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1082391\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1082391\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1082739\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1082739\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1082978\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1082978\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1083502\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1083502\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1083724\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1083724\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1083929\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1083929\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1084022\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1084022\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1084227\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1084227\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1084386\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1084386\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1084404\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1084404\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1085021\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1085021\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1086079\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1086079\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1086575\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1086575\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1086783\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1086783\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1086863\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1086863\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1087002\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1087002\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1087033\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1087033\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1087349\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1087349\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1087908\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1087908\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1088094\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1088094\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1088334\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1088334\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1088941\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1088941\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1089843\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1089843\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1090383\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1090383\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1090637\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1090637\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1090734\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1090734\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1091029\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1091029\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1091046\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1091046\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1091459\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1091459\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1091619\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1091619\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1091640\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1091640\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1092076\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1092076\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1092729\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1092729\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1092794\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1092794\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1093554\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1093554\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1093599\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1093599\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1093617\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1093617\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1094043\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1094043\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1094345\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1094345\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1094490\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1094490\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1094505\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1094505\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1095202\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1095202\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1095504\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1095504\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1096055\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1096055\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1096503\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1096503\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1096978\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1096978\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1097259\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1097259\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1097440\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1097440\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1097627\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1097627\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1097661\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1097661\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1098404\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1098404\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1098706\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1098706\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1099323\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1099323\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1099528\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1099528\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1099767\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1099767\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1099881\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1099881\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1100631\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1100631\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1100870\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1100870\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1100920\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1100920\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1101006\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1101006\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1101085\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1101085\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1101547\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1101547\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1101675\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1101675\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1101835\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1101835\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1101866\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1101866\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1102310\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1102310\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1102563\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1102563\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1103004\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1103004\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1103226\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1103226\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1103448\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1103448\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1103531\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1103531\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1103833\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1103833\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1103878\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1103878\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1103989\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1103989\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1104260\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1104260\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1104721\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1104721\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1105002\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1105002\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1105318\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1105318\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1106428\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1106428\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1107413\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1107413\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1107697\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1107697\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1108141\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1108141\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1108443\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1108443\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1108759\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1108759\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1108811\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1108811\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1108873\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1108873\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1108940\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1108940\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1109091\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1109091\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1109519\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1109519\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1110173\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1110173\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1110187\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1110187\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1110222\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1110222\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1110427\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1110427\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1110524\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1110524\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1110906\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1110906\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1112411\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1112411\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1112456\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1112456\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1112872\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1112872\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1113056\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1113056\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1113140\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1113140\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1113170\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1113170\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1113330\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1113330\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1113344\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1113344\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1113629\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1113629\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1114152\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1114152\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1114343\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1114343\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1114884\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1114884\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1115120\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1115120\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1115390\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1115390\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1115772\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1115772\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1115915\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1115915\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1116710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1116710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1116737\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1116737\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1117403\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1117403\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1118114\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1118114\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1118145\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1118145\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1118495\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1118495\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1118766\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1118766\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1119446\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1119446\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1119637\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1119637\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1119814\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1119814\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1120129\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1120129\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1120230\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1120230\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1120417\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1120417\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1120753\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1120753\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1120927\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1120927\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1121159\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1121159\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1122286\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1122286\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1122911\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1122911\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1122990\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1122990\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1123050\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1123050\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1123223\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1123223\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1123508\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1123508\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1123698\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1123698\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1123800\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1123800\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1123907\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1123907\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1123986\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1123986\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1124187\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1124187\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1124586\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1124586\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1125620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1125620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1125873\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1125873\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1125936\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1125936\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1126123\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1126123\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1126168\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1126168\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1126282\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1126282\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1126362\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1126362\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1126598\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1126598\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1127486\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1127486\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1128055\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1128055\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1128330\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1128330\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1128551\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1128551\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1128600\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1128600\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1129533\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1129533\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1129818\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1129818\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1130791\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1130791\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1131343\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1131343\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1131760\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1131760\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1132006\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1132006\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1132120\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1132120\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1132245\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1132245\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1132325\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1132325\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1132550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1132550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1132870\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1132870\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1133261\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1133261\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1133706\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1133706\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1134260\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1134260\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1134288\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1134288\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1134660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1134660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1134784\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1134784\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1134961\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1134961\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1135686\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1135686\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1136002\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1136002\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1137640\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1137640\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1137698\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1137698\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1138430\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1138430\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1138750\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1138750\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1139141\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1139141\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1139679\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1139679\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1139696\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1139696\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1139728\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1139728\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1139970\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1139970\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1140240\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1140240\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1140351\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1140351\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1140445\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1140445\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1141427\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1141427\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1141510\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1141510\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1142634\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1142634\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1142682\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1142682\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1142922\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1142922\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1144407\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1144407\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1146068\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1146068\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1146564\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1146564\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1147372\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1147372\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1147497\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1147497\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1147710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1147710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1147976\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1147976\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1148660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1148660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1149065\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1149065\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1149176\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1149176\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1149319\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1149319\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1149420\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1149420\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1150098\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1150098\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1150529\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1150529\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1150660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1150660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1151212\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1151212\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1151230\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1151230\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1151740\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1151740\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1152096\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1152096\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1152735\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1152735\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1153210\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1153210\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1153509\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1153509\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1153543\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1153543\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1153637\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1153637\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1153765\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1153765\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1154365\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1154365\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1154476\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1154476\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1154861\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1154861\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1155586\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1155586\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1155670\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1155670\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1155763\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1155763\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1156186\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1156186\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1157789\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1157789\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1158119\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1158119\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1158300\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1158300\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1158583\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1158583\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1159069\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1159069\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1159343\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1159343\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1159579\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1159579\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1160168\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1160168\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1160234\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1160234\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1161281\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1161281\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1162024\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1162024\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1162041\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1162041\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1162280\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1162280\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1163006\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1163006\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1163099\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1163099\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1163356\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1163356\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1163422\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1163422\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1163883\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1163883\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1164022\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1164022\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1164386\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1164386\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1164452\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1164452\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1165021\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1165021\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1165230\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1165230\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1165528\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1165528\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1165913\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1165913\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1166766\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1166766\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1166877\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1166877\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1166943\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1166943\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1167192\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1167192\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1167318\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1167318\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1168094\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1168094\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1168191\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1168191\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1168299\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1168299\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1168542\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1168542\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1169270\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1169270\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1171889\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1171889\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1172205\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1172205\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1172780\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1172780\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1173350\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1173350\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1173998\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1173998\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1174296\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1174296\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1175295\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1175295\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1176055\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1176055\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1176790\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1176790\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1177550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1177550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1178116\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1178116\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1178200\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1178200\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1178768\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1178768\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1179306\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1179306\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1179864\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1179864\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1180099\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1180099\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1180547\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1180547\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1180994\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1180994\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1181740\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1181740\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1182642\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1182642\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1183544\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1183544\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1183850\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1183850\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1184734\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1184734\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1185525\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1185525\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1187266\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1187266\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1187523\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1187523\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1189504\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1189504\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1189982\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1189982\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1191199\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1191199\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1191904\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1191904\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1192518\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1192518\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1192549\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1192549\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1193548\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1193548\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1196070\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1196070\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1196753\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1196753\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1196770\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1196770\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1196820\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1196820\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1197353\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1197353\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1197402\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1197402\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1197530\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1197530\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1197589\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1197589\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1197638\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1197638\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1197943\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1197943\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1197988\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1197988\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1198095\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1198095\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1198911\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1198911\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1199858\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1199858\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1200274\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1200274\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1200323\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1200323\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1200337\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1200337\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1200340\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1200340\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1200687\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1200687\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1201051\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1201051\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1203063\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1203063\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1203109\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1203109\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1203720\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1203720\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1203764\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1203764\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1203795\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1203795\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1203990\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1203990\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1204093\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1204093\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1204666\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1204666\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1204697\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1204697\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1204860\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1204860\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1204906\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1204906\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1205350\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1205350\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1205457\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1205457\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1205460\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1205460\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1205700\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1205700\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1205873\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1205873\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1205936\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1205936\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1206522\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1206522\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1207025\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1207025\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1207140\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1207140\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1207220\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1207220\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1207250\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1207250\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1207410\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1207410\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1208038\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1208038\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1208565\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1208565\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1208760\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1208760\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1208773\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1208773\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1209085\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1209085\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1209502\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1209502\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1209564\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1209564\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1209950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1209950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1210136\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1210136\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1210344\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1210344\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1210760\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1210760\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1210774\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1210774\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1211884\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1211884\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1212134\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1212134\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1212262\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1212262\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1212484\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1212484\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1212595\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1212595\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1213036\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1213036\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1213150\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1213150\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1213449\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1213449\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1213466\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1213466\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1213470\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1213470\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1213515\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1213515\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1214371\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1214371\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1214642\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1214642\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1214944\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1214944\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1215017\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1215017\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1215260\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1215260\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1215589\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1215589\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1215610\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1215610\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1215672\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1215672\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1215735\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1215735\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1215880\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1215880\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1215909\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1215909\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1216557\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1216557\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1216654\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1216654\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1216703\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1216703\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1217396\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1217396\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1217480\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1217480\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1217653\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1217653\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1217941\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1217941\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1218045\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1218045\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1218139\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1218139\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1218173\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1218173\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1218489\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1218489\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1218715\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1218715\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1218812\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1218812\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1218968\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1218968\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1219013\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1219013\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1219141\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1219141\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1219266\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1219266\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1219940\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1219940\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1220210\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1220210\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1220875\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1220875\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1220955\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1220955\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1220972\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1220972\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1221062\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1221062\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1221080\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1221080\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1221111\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1221111\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1221236\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1221236\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1221489\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1221489\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1221492\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1221492\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1222696\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1222696\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1222793\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1222793\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1222890\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1222890\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1222905\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1222905\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1223248\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1223248\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1223678\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1223678\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1223886\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1223886\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1223890\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1223890\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1224632\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1224632\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1224810\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1224810\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1224868\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1224868\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1224979\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1224979\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1225440\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1225440\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1226228\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1226228\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1226689\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1226689\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1226929\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1226929\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1227195\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1227195\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1227421\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1227421\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1227483\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1227483\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1227817\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1227817\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1228180\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1228180\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1228340\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1228340\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1228559\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1228559\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1228798\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1228798\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1228802\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1228802\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1228881\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1228881\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1229051\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1229051\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1229242\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1229242\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1229260\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1229260\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1229322\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1229322\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1229370\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1229370\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"123-XYZ\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"123-XYZ\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1230882\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1230882\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1230959\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1230959\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1230976\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1230976\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1231288\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1231288\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1231310\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1231310\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1231451\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1231451\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1231895\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1231895\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1232096\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1232096\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1232100\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1232100\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1232398\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1232398\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1233050\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1233050\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1233290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1233290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1233734\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1233734\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"123456\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"123456\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1234567891\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1234567891\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1234568\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1234568\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"123457\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"123457\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"123459\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"123459\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1235187\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1235187\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1235381\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1235381\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1235489\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1235489\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1236218\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1236218\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1236554\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1236554\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1236571\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1236571\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1236793\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1236793\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1236984\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1236984\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1237106\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1237106\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1237584\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1237584\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1237952\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1237952\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1238233\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1238233\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1238583\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1238583\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1238774\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1238774\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1239118\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1239118\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1239201\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1239201\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1239263\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1239263\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1240057\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1240057\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1240106\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1240106\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1240282\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1240282\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1240473\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1240473\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1240681\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1240681\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1241264\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1241264\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1241375\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1241375\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1242659\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1242659\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1242773\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1242773\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1242853\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1242853\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1243068\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1243068\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1243342\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1243342\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1243564\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1243564\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1243578\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1243578\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1243790\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1243790\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1243821\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1243821\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1243929\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1243929\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1244532\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1244532\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1244626\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1244626\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1244820\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1244820\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1245385\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1245385\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1245451\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1245451\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1247161\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1247161\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1247210\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1247210\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1247238\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1247238\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1247335\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1247335\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1247383\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1247383\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1247717\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1247717\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1248188\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1248188\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1248268\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1248268\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1248619\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1248619\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1248972\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1248972\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1249444\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1249444\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1249572\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1249572\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1249697\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1249697\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1249763\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1249763\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1249937\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1249937\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1249940\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1249940\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1250113\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1250113\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1250241\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1250241\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1250925\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1250925\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1251240\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1251240\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1252028\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1252028\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1252062\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1252062\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1252427\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1252427\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1252590\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1252590\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1252604\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1252604\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1253474\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1253474\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1253554\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1253554\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1253571\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1253571\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1253998\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1253998\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254088\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254088\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254331\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254331\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254359\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254359\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254408\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254408\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254553\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254553\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254570\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254570\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254602\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254602\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254730\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254730\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254761\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254761\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254890\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254890\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254949\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1254949\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1255917\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1255917\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1256170\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1256170\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1256326\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1256326\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1256579\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1256579\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1256582\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1256582\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1256760\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1256760\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1256950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1256950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1257360\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1257360\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1257502\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1257502\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1257755\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1257755\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1257804\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1257804\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1257932\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1257932\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1258181\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1258181\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1258754\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1258754\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1258803\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1258803\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1258900\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1258900\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1258928\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1258928\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1259021\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1259021\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1259115\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1259115\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1259310\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1259310\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1259878\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1259878\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1260245\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1260245\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1260280\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1260280\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1260470\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1260470\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1260516\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1260516\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1261019\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1261019\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1261594\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1261594\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1261848\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1261848\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1262066\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1262066\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1262580\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1262580\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1262625\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1262625\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1262642\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1262642\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1263020\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1263020\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1263176\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1263176\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1263208\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1263208\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1263607\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1263607\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1264158\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1264158\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1265143\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1265143\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1265268\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1265268\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1265428\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1265428\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1265605\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1265605\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1265827\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1265827\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1265969\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1265969\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1265972\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1265972\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1266093\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1266093\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1266267\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1266267\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1266320\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1266320\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1266492\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1266492\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1266812\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1266812\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267013\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267013\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267124\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267124\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267172\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267172\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267412\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267412\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267430\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267430\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267443\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267443\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267523\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267523\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267554\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267554\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267762\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267762\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267793\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267793\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267856\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267856\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267922\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1267922\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1268540\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1268540\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1268810\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1268810\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1269136\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1269136\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1269726\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1269726\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1269840\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1269840\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1270363\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1270363\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1270443\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1270443\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1270540\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1270540\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1270887\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1270887\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1270998\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1270998\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1271456\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1271456\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1272136\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1272136\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1272583\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1272583\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1272646\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1272646\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1272823\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1272823\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1273197\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1273197\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1273246\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1273246\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1273309\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1273309\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1273708\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1273708\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1274099\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1274099\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1274182\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1274182\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1274196\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1274196\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1274373\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1274373\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1274453\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1274453\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1274470\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1274470\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1275005\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1275005\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1275019\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1275019\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1275470\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1275470\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1275959\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1275959\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1276403\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1276403\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1276820\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1276820\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1276989\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1276989\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1277096\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1277096\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1277159\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1277159\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1277353\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1277353\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1277641\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1277641\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1277669\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1277669\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1277850\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1277850\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1278033\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1278033\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1279188\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1279188\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1279365\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1279365\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1279400\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1279400\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1279781\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1279781\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1280162\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1280162\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1280655\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1280655\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1280672\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1280672\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1280686\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1280686\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1280880\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1280880\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1280991\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1280991\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1281671\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1281671\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1281828\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1281828\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1282303\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1282303\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1282400\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1282400\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1282476\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1282476\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1282480\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1282480\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1282542\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1282542\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1283031\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1283031\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1283538\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1283538\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1284506\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1284506\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1284603\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1284603\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1284873\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1284873\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1284887\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1284887\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1284890\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1284890\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1285282\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1285282\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1285460\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1285460\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1286025\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1286025\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1286136\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1286136\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1286677\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1286677\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1287326\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1287326\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1287870\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1287870\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1287947\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1287947\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1287964\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1287964\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1288661\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1288661\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1288963\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1288963\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1288980\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1288980\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1289019\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1289019\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1289098\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1289098\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1289851\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1289851\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1289914\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1289914\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1290708\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1290708\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1290898\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1290898\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1290933\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1290933\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1291228\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1291228\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1291484\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1291484\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1291852\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1291852\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1292070\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1292070\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1292550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1292550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1292609\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1292609\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1292626\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1292626\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"12935419\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"12935419\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1293656\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1293656\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1293802\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1293802\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1293895\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1293895\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1294225\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1294225\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1294610\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1294610\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1294912\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1294912\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1295717\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1295717\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1295814\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1295814\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1295942\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1295942\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1296254\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1296254\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1296348\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1296348\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1296462\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1296462\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1296778\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1296778\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1296800\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1296800\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1297045\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1297045\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1297108\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1297108\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1297492\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1297492\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1297604\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1297604\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1297910\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1297910\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1298027\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1298027\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1298249\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1298249\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1298585\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1298585\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1299043\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1299043\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1299203\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1299203\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1299279\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1299279\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1299393\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1299393\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1299647\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1299647\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1299855\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1299855\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1300348\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1300348\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1300587\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1300587\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1301062\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1301062\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1301111\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1301111\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1301142\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1301142\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1301173\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1301173\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1301267\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1301267\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1301507\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1301507\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1302297\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1302297\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1302350\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1302350\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1302540\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1302540\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1303060\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1303060\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1303584\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1303584\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1304056\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1304056\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1305330\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1305330\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1305614\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1305614\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1306179\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1306179\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1306200\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1306200\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1307098\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1307098\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1307390\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1307390\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1307834\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1307834\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1308021\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1308021\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1308576\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1308576\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1309256\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1309256\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1309367\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1309367\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1309718\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1309718\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1310563\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1310563\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1310737\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1310737\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1310980\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1310980\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1311021\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1311021\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1311260\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1311260\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1311451\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1311451\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1311479\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1311479\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1311496\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1311496\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1311559\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1311559\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1311944\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1311944\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1312079\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1312079\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1312880\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1312880\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1313494\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1313494\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1314299\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1314299\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1314303\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1314303\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1314640\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1314640\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1314861\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1314861\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1315031\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1315031\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1315059\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1315059\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1315125\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1315125\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1315139\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1315139\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1315670\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1315670\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1316204\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1316204\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1316426\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1316426\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1316460\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1316460\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1316506\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1316506\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1316665\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1316665\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1317060\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1317060\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1317106\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1317106\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1318090\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1318090\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1318140\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1318140\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1318615\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1318615\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1319250\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1319250\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1319565\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1319565\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1321743\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1321743\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1323259\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1323259\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1323276\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1323276\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1323755\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1323755\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1324133\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1324133\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1324674\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1324674\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1324754\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1324754\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1326208\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1326208\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1326242\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1326242\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1326638\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1326638\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1326686\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1326686\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1327113\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1327113\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1328046\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1328046\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1328174\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1328174\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1328990\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1328990\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1329732\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1329732\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1329891\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1329891\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1330779\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1330779\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1331029\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1331029\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1331560\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1331560\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1331670\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1331670\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1332378\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1332378\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1332381\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1332381\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1332444\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1332444\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1332555\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1332555\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1333013\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1333013\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1334328\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1334328\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1334408\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1334408\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1334810\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1334810\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1334997\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1334997\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1335615\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1335615\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1336007\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1336007\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1336902\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1336902\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1336947\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1336947\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1337148\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1337148\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1337259\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1337259\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1337390\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1337390\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1338053\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1338053\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1338421\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1338421\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1338706\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1338706\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1338754\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1338754\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1339531\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1339531\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1339625\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1339625\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1339913\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1339913\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1340627\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1340627\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1341609\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1341609\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1341706\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1341706\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1342260\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1342260\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1343051\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1343051\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1343704\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1343704\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1344397\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1344397\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1344717\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1344717\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1344828\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1344828\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1345969\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1345969\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1347585\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1347585\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1348251\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1348251\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1348362\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1348362\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1348442\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1348442\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1348966\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1348966\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1350839\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1350839\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1351123\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1351123\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1351140\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1351140\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1351872\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1351872\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1352025\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1352025\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1352247\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1352247\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1353870\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1353870\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1353884\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1353884\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1354179\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1354179\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1355612\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1355612\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1356833\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1356833\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1357384\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1357384\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1358779\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1358779\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1359126\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1359126\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1359720\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1359720\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1360180\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1360180\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1360638\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1360638\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1361509\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1361509\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1362955\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1362955\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1363604\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1363604\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1363780\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1363780\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1364905\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1364905\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1365185\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1365185\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1367822\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1367822\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1370007\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1370007\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1370947\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1370947\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1371470\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1371470\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1372289\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1372289\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1372292\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1372292\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1372310\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1372310\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1372532\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1372532\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1373310\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1373310\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1373496\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1373496\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1373767\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1373767\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1373784\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1373784\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1374114\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1374114\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1374242\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1374242\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1374305\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1374305\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1374367\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1374367\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1374450\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1374450\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1374589\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1374589\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1374877\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1374877\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1374974\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1374974\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1375238\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1375238\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1375290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1375290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1375859\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1375859\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1376143\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1376143\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1376240\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1376240\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1376396\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1376396\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1376459\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1376459\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1376508\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1376508\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1376747\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1376747\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1376844\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1376844\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1376861\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1376861\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1377000\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1377000\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1377541\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1377541\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1377683\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1377683\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1377701\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1377701\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1377906\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1377906\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1377937\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1377937\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1377940\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1377940\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1378443\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1378443\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1378651\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1378651\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1378700\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1378700\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1378728\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1378728\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1378762\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1378762\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1379265\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1379265\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1379408\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1379408\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1379460\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1379460\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1380729\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1380729\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1382251\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1382251\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1383008\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1383008\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1384149\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1384149\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1384197\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1384197\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1384312\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1384312\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1385037\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1385037\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1385117\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1385117\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1385308\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1385308\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1385498\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1385498\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1386150\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1386150\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1386213\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1386213\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1386307\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1386307\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1386723\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1386723\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1389286\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1389286\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1390451\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1390451\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1390545\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1390545\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1392796\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1392796\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1392908\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1392908\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1393414\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1393414\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1394458\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1394458\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1394732\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1394732\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1396970\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1396970\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1397837\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1397837\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1399037\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1399037\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1399120\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1399120\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1399200\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1399200\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1399692\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1399692\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1400393\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1400393\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1401278\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1401278\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1403484\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1403484\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1403520\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1403520\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1403804\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1403804\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1405212\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1405212\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1405399\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1405399\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1406877\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1406877\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1409000\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1409000\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1409857\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1409857\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1410349\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1410349\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1410828\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1410828\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1416471\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1416471\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1419656\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1419656\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1421133\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1421133\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1421550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1421550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1421660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1421660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1422451\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1422451\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1422642\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1422642\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1423322\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1423322\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1425268\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1425268\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1425560\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1425560\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1428505\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1428505\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1428966\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1428966\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1430409\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1430409\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1430762\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1430762\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1432663\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1432663\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1432951\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1432951\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1433676\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1433676\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1433902\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1433902\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1435338\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1435338\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1435865\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1435865\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1437752\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1437752\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1439126\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1439126\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1439747\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1439747\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1441880\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1441880\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1443298\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1443298\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1443621\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1443621\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1443794\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1443794\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1445966\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1445966\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1446300\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1446300\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1449594\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1449594\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1450739\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1450739\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1451440\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1451440\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1451821\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1451821\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1456223\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1456223\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1457014\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1457014\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1457794\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1457794\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1460350\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1460350\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1460364\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1460364\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1460381\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1460381\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1460492\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1460492\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1462331\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1462331\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1462393\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1462393\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1462855\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1462855\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1463039\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1463039\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1463202\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1463202\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1463597\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1463597\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1463810\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1463810\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1463920\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1463920\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1464645\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1464645\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1464787\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1464787\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1467420\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1467420\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1468926\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1468926\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1469446\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1469446\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1469463\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1469463\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1469512\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1469512\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1469530\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1469530\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1469765\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1469765\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1469911\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1469911\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1470274\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1470274\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1470310\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1470310\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1470420\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1470420\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1470482\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1470482\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1470496\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1470496\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1470562\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1470562\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1470847\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1470847\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1471211\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1471211\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1471305\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1471305\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1471340\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1471340\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1471416\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1471416\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1471749\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1471749\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1472210\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1472210\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1472224\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1472224\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1472255\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1472255\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1472610\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1472610\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1472814\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1472814\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1472973\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1472973\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1473240\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1473240\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1473254\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1473254\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1473636\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1473636\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1474190\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1474190\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1474461\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1474461\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1474524\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1474524\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1474572\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1474572\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1474794\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1474794\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1475027\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1475027\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1475172\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1475172\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1476411\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1476411\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1478135\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1478135\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1478198\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1478198\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1478215\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1478215\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1478360\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1478360\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1478410\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1478410\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1479422\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1479422\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1479661\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1479661\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1479901\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1479901\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1480327\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1480327\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1480358\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1480358\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1483053\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1483053\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1483164\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1483164\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1484850\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1484850\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1489491\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1489491\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1489634\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1489634\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1489731\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1489731\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1490382\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1490382\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1491302\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1491302\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1491413\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1491413\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1491937\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1491937\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1491999\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1491999\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1492890\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1492890\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493168\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493168\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493203\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493203\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493248\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493248\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493345\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493345\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493380\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493380\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493761\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493761\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493789\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493789\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493810\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493810\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493855\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493855\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493872\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493872\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493949\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1493949\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1494136\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1494136\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1494278\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1494278\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1494313\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1494313\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1496707\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1496707\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1496786\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1496786\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497040\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497040\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497195\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497195\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497418\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497418\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497470\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497470\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497643\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497643\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497688\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497688\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497706\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1497706\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1498306\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1498306\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1498576\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1498576\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1499894\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1499894\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1500630\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1500630\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1501102\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1501102\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1501310\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1501310\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1501532\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1501532\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1502115\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1502115\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1502531\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1502531\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1502864\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1502864\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1503943\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1503943\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1504401\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1504401\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1504987\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1504987\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1505160\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1505160\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1505382\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1505382\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1505590\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1505590\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1505733\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1505733\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1505972\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1505972\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1506395\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1506395\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1506541\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1506541\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1507075\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1507075\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1508030\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1508030\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1508620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1508620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1509486\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1509486\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1509840\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1509840\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1510058\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1510058\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1511185\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1511185\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1513853\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1513853\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1513884\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1513884\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1514293\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1514293\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1514520\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1514520\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1514595\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1514595\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1514804\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1514804\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1514849\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1514849\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1515386\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1515386\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1515580\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1515580\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1515612\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1515612\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1515803\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1515803\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1515980\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1515980\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1516531\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1516531\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1516639\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1516639\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1517145\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1517145\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1517159\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1517159\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1517208\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1517208\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1517305\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1517305\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1517575\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1517575\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1517607\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1517607\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1517672\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1517672\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1518113\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1518113\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1518318\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1518318\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1518321\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1518321\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1518623\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1518623\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1518720\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1518720\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1518734\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1518734\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519015\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519015\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519046\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519046\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519379\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519379\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519511\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519511\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519542\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519542\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519556\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519556\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519778\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519778\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519858\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519858\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519990\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1519990\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1520193\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1520193\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1520513\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1520513\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1520641\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1520641\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1520669\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1520669\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1520721\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1520721\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1520752\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1520752\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521020\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521020\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521144\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521144\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521161\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521161\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521238\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521238\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521272\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521272\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521349\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521349\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521401\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521401\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521640\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521640\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521734\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521734\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521893\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521893\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521911\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1521911\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522143\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522143\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522174\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522174\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522237\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522237\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522254\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522254\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522511\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522511\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522640\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522640\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522720\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522720\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522800\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522800\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522830\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1522830\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523045\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523045\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523173\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523173\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523302\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523302\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523395\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523395\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523492\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523492\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523524\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523524\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523590\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523590\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523683\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523683\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523888\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1523888\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1524075\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1524075\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1525060\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1525060\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1525110\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1525110\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1525442\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1525442\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1525490\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1525490\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1525650\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1525650\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1526295\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1526295\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1526313\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1526313\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1526410\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1526410\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1526615\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1526615\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1526760\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1526760\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1527118\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1527118\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1527437\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1527437\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1527471\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1527471\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1527680\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1527680\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1527739\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1527739\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1527773\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1527773\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1528068\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1528068\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1528929\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1528929\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1529657\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1529657\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1529754\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1529754\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1529879\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1529879\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1529931\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1529931\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1530038\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1530038\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1530277\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1530277\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1530468\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1530468\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1531054\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1531054\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1531950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1531950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1532102\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1532102\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1532771\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1532771\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1532820\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1532820\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1533129\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1533129\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1533163\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1533163\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1533274\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1533274\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1533288\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1533288\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1533465\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1533465\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1533500\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1533500\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1533611\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1533611\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1534020\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1534020\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1534159\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1534159\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1534242\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1534242\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1534319\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1534319\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1534735\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1534735\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1534770\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1534770\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1535415\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1535415\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1535925\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1535925\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1536080\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1536080\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1536271\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1536271\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1536379\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1536379\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1536396\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1536396\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1537059\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1537059\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1537701\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1537701\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1537906\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1537906\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1537968\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1537968\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1538682\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1538682\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1538728\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1538728\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1538776\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1538776\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1538780\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1538780\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1539248\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1539248\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1539359\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1539359\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1539393\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1539393\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1539460\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1539460\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1539505\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1539505\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1540219\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1540219\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1540812\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1540812\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1540860\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1540860\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1541000\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1541000\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1541651\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1541651\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1541665\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1541665\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1543025\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1543025\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1543330\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1543330\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1543472\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1543472\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1543726\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1543726\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1543743\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1543743\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1544471\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1544471\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1545037\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1545037\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1545231\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1545231\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1545293\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1545293\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1545360\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1545360\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1545453\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1545453\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1545533\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1545533\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1545710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1545710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1546449\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1546449\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1546737\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1546737\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1546740\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1546740\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1546900\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1546900\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1547340\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1547340\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1547434\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1547434\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1547660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1547660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1547958\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1547958\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1548176\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1548176\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1548260\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1548260\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1548420\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1548420\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1549016\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1549016\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1549127\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1549127\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1549463\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1549463\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1549845\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1549845\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1549990\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1549990\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1550642\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1550642\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1550767\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1550767\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1550816\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1550816\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1550878\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1550878\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1551145\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1551145\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1551592\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1551592\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1551624\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1551624\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1551815\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1551815\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1551829\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1551829\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1551850\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1551850\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1551880\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1551880\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1552956\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1552956\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1553334\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1553334\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1554489\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1554489\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1554569\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1554569\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1554715\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1554715\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1554826\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1554826\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1554888\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1554888\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1555110\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1555110\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1555190\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1555190\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1555204\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1555204\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1555297\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1555297\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1555350\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1555350\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1555394\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1555394\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1555890\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1555890\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1555905\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1555905\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1556199\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1556199\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1556203\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1556203\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1556727\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1556727\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1557552\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1557552\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558104\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558104\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558423\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558423\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558437\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558437\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558485\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558485\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558645\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558645\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558693\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558693\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558739\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558739\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558790\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558790\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1558950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1559134\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1559134\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1559214\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1559214\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1559245\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1559245\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1559325\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1559325\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1559440\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1559440\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1559724\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1559724\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1559772\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1559772\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1559946\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1559946\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1560042\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1560042\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1560119\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1560119\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1560490\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1560490\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1560570\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1560570\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1560760\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1560760\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1560917\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1560917\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1561041\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1561041\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1561055\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1561055\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1561170\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1561170\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1561229\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1561229\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1561263\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1561263\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1561790\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1561790\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1561853\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1561853\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1561884\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1561884\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1562120\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1562120\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1562262\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1562262\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1562419\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1562419\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1562578\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1562578\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1562915\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1562915\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1563181\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1563181\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1563292\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1563292\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1563497\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1563497\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1563546\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1563546\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1563550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1563550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1563882\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1563882\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564021\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564021\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564070\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564070\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564288\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564288\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564306\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564306\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564420\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564420\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564500\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564500\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564531\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564531\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564545\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564545\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564611\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564611\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564798\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564798\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564900\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1564900\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1565145\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1565145\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1565211\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1565211\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1565336\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1565336\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1565513\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1565513\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1565704\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1565704\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1565770\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1565770\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1566224\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1566224\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1566272\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1566272\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1566446\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1566446\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1566512\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1566512\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1566623\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1566623\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1566828\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1566828\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1566845\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1566845\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1566939\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1566939\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1567015\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1567015\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1567050\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1567050\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1567063\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1567063\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1567334\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1567334\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1567365\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1567365\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1567462\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1567462\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1567764\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1567764\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1568031\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1568031\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1568298\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1568298\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1568492\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1568492\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1568555\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1568555\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1568701\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1568701\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1568860\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1568860\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1568968\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1568968\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1569679\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1569679\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1569811\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1569811\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1570094\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1570094\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1570431\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1570431\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1570445\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1570445\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1570605\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1570605\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1570684\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1570684\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1571173\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1571173\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1571621\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1571621\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1571746\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1571746\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1572061\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1572061\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1572266\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1572266\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1572283\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1572283\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1572430\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1572430\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1572696\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1572696\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1573983\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1573983\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1574726\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1574726\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1574903\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1574903\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1575343\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1575343\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1575499\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1575499\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1575503\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1575503\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1576419\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1576419\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1576689\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1576689\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1576883\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1576883\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1576963\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1576963\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1577324\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1577324\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1577529\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1577529\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1577691\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1577691\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1577799\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1577799\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1577851\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1577851\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1578115\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1578115\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1578337\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1578337\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1578371\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1578371\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1578385\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1578385\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1578927\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1578927\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1579020\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1579020\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1579051\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1579051\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1579319\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1579319\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1579336\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1579336\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1579402\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1579402\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1579686\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1579686\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1580164\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1580164\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1580372\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1580372\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1580529\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1580529\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1580754\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1580754\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1581288\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1581288\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1581323\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1581323\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1581673\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1581673\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1581784\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1581784\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1582048\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1582048\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1582193\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1582193\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1582273\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1582273\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1582290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1582290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1582398\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1582398\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1582815\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1582815\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1582909\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1582909\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1583828\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1583828\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1583942\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1583942\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1584400\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1584400\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1584480\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1584480\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1584539\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1584539\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1585111\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1585111\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1585809\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1585809\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1585971\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1585971\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1585999\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1585999\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1586190\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1586190\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1586270\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1586270\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1586332\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1586332\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1586474\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1586474\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1586651\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1586651\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1587074\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1587074\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1587168\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1587168\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1587536\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1587536\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1587620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1587620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1587807\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1587807\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1587966\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1587966\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1588264\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1588264\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1588615\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1588615\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1589215\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1589215\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1589312\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1589312\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1590140\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1590140\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1590584\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1590584\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1590620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1590620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1590918\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1590918\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1591677\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1591677\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1592197\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1592197\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1592246\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1592246\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1592468\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1592468\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1593179\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1593179\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1593786\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1593786\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1593835\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1593835\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1593852\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1593852\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1594563\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1594563\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1594580\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1594580\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1595194\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1595194\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1595243\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1595243\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1595545\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1595545\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1595881\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1595881\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1596079\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1596079\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1596082\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1596082\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1596096\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1596096\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1596433\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1596433\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1596610\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1596610\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1596877\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1596877\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1597064\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1597064\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1597192\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1597192\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1597286\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1597286\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1598077\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1598077\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1598365\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1598365\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1598396\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1598396\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1598636\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1598636\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1598795\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1598795\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1598910\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1598910\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599028\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599028\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599298\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599298\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599302\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599302\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599427\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599427\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599590\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599590\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599621\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599621\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599888\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599888\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599906\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599906\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599937\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1599937\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1600322\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1600322\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1600669\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1600669\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1600718\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1600718\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1600721\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1600721\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1600829\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1600829\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1601623\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1601623\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1601734\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1601734\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1601859\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1601859\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1601880\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1601880\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1601987\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1601987\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1602365\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1602365\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1603253\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1603253\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1603475\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1603475\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1603891\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1603891\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1604089\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1604089\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1604523\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1604523\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1605009\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1605009\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1605185\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1605185\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1605519\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1605519\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1606264\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1606264\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1607104\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1607104\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1607201\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1607201\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1607250\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1607250\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1607374\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1607374\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1607534\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1607534\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1607711\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1607711\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1608311\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1608311\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1608405\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1608405\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1609435\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1609435\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1610104\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1610104\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1610229\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1610229\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1610263\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1610263\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1610280\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1610280\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1610534\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1610534\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1611214\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1611214\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1611293\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1611293\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1611390\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1611390\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1611502\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1611502\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1611578\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1611578\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1611804\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1611804\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1611870\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1611870\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1611977\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1611977\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1612626\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1612626\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1612674\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1612674\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1612834\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1612834\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1612879\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1612879\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1613209\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1613209\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1613545\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1613545\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1613639\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1613639\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1613673\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1613673\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1614162\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1614162\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1614225\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1614225\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1614319\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1614319\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1614464\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1614464\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1614478\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1614478\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1614513\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1614513\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1615144\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1615144\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1615161\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1615161\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1615366\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1615366\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1615480\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1615480\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1615862\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1615862\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1615893\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1615893\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1615908\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1615908\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1615956\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1615956\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1616063\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1616063\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1616463\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1616463\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1616508\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1616508\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1616733\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1616733\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1616795\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1616795\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1617302\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1617302\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1617316\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1617316\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1617444\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1617444\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1617541\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1617541\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1618728\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1618728\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1618842\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1618842\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1619030\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1619030\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1619171\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1619171\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1619296\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1619296\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1619598\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1619598\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1619633\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1619633\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1619647\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1619647\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1620076\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1620076\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1620413\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1620413\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1620586\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1620586\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1620985\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1620985\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1621204\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1621204\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1622110\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1622110\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1622203\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1622203\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1622393\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1622393\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1622490\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1622490\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1623136\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1623136\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1623264\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1623264\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1623788\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1623788\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1624069\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1624069\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1624628\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1624628\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1624680\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1624680\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1624790\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1624790\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1625550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1625550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1625600\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1625600\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1625901\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1625901\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1626147\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1626147\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1626164\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1626164\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1626200\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1626200\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1626386\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1626386\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1626563\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1626563\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1626710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1626710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1626834\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1626834\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1627035\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1627035\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1627194\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1627194\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1627403\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1627403\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1627625\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1627625\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1627740\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1627740\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628003\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628003\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628131\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628131\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628176\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628176\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628319\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628319\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628527\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628527\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628610\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628610\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628686\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628686\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628690\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628690\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628797\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628797\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628846\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1628846\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1629033\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1629033\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1629717\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1629717\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1630528\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1630528\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1630961\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1630961\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1631211\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1631211\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1631530\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1631530\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1631561\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1631561\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1631721\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1631721\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1631957\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1631957\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1632530\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1632530\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1632574\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1632574\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1632800\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1632800\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1633525\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1633525\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1633573\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1633573\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1633924\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1633924\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1634160\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1634160\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1634604\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1634604\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1634683\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1634683\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1634809\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1634809\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1635138\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1635138\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1635380\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1635380\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1636935\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1636935\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1636952\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1636952\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1636970\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1636970\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1637650\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1637650\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1637806\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1637806\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1638950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1638950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1639165\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1639165\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1639179\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1639179\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1639373\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1639373\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1639613\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1639613\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1639661\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1639661\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1640677\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1640677\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1641263\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1641263\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1641600\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1641600\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1641742\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1641742\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1641853\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1641853\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1642165\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1642165\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1642200\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1642200\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1642308\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1642308\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1643178\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1643178\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1645544\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1645544\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1648302\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1648302\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1648320\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1648320\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1648750\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1648750\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1650157\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1650157\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1651219\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1651219\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1651236\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1651236\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1651937\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1651937\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1653380\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1653380\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1653761\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1653761\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1654757\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1654757\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1654774\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1654774\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1654951\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1654951\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1655072\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1655072\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1655277\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1655277\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1655388\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1655388\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1655579\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1655579\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1655582\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1655582\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1655790\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1655790\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1655822\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1655822\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1655836\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1655836\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1656120\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1656120\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1656467\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1656467\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1656564\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1656564\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1657147\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1657147\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1657404\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1657404\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1657452\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1657452\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1657577\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1657577\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1657626\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1657626\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658018\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658018\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658163\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658163\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658177\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658177\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658212\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658212\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658323\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658323\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658385\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658385\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658559\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658559\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658642\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658642\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658798\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658798\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658958\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1658958\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1659128\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1659128\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1659481\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1659481\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1659624\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1659624\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1659797\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1659797\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1660133\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1660133\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1660390\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1660390\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1660820\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1660820\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1660928\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1660928\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1661066\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1661066\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1661368\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1661368\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1661496\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1661496\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1661593\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1661593\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1661660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1661660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1661798\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1661798\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1662020\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1662020\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1662051\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1662051\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1662128\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1662128\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1662180\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1662180\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1662211\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1662211\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1662336\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1662336\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1662815\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1662815\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1663033\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1663033\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1663047\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1663047\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1663509\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1663509\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1663800\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1663800\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1663911\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1663911\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1663939\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1663939\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1664029\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1664029\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1664050\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1664050\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1664254\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1664254\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1664285\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1664285\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1664892\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1664892\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1664990\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1664990\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1665062\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1665062\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1665475\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1665475\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1665492\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1665492\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1665524\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1665524\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1665538\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1665538\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1665666\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1665666\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1665777\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1665777\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1665809\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1665809\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1666000\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1666000\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1666075\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1666075\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1666301\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1666301\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1666332\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1666332\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1666346\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1666346\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1666762\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1666762\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1666919\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1666919\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667137\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667137\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667140\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667140\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667154\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667154\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667345\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667345\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667393\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667393\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667487\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667487\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667490\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667490\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667519\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667519\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667584\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667584\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667647\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667647\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667807\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667807\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667824\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667824\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667949\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1667949\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1668025\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1668025\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1669534\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1669534\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1669978\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1669978\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1670168\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1670168\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1670380\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1670380\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1670439\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1670439\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1670540\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1670540\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1670647\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1670647\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1671216\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1671216\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1671300\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1671300\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1671358\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1671358\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1671438\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1671438\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1671521\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1671521\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1671566\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1671566\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1671601\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1671601\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1671788\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1671788\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672072\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672072\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672229\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672229\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672263\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672263\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672277\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672277\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672326\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672326\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672388\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672388\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672503\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672503\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672548\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672548\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672693\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672693\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672805\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672805\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672916\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1672916\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1673040\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1673040\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1673068\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1673068\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1673165\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1673165\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1673308\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1673308\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1673484\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1673484\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1673564\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1673564\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1673644\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1673644\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1673950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1673950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1674230\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1674230\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1674372\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1674372\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1674532\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1674532\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1674768\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1674768\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1674771\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1674771\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1675434\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1675434\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1675528\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1675528\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1675611\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1675611\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1675820\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1675820\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1675881\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1675881\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1676416\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1676416\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1676783\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1676783\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1676797\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1676797\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1676832\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1676832\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1676846\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1676846\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1676930\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1676930\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1676960\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1676960\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1677286\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1677286\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1677432\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1677432\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1677876\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1677876\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1678174\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1678174\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1678334\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1678334\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1678670\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1678670\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1678698\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1678698\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1679139\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1679139\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1679381\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1679381\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1679590\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1679590\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1679746\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1679746\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1679906\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1679906\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1679910\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1679910\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1679937\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1679937\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1680272\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1680272\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1680432\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1680432\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1680610\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1680610\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1680637\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1680637\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1680654\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1680654\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1680828\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1680828\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1680876\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1680876\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1680908\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1680908\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681379\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681379\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681400\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681400\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681414\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681414\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681476\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681476\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681480\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681480\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681556\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681556\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681733\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681733\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681813\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681813\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681924\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1681924\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1682139\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1682139\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1682489\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1682489\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1682569\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1682569\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1682777\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1682777\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1683107\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1683107\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1683266\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1683266\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1683329\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1683329\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1683460\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1683460\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1684251\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1684251\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1684775\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1684775\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1684872\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1684872\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1685220\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1685220\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1685486\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1685486\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1685730\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1685730\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1685810\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1685810\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1686010\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1686010\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1686440\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1686440\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1686520\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1686520\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1686565\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1686565\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1686950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1686950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1687099\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1687099\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1687196\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1687196\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1687581\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1687581\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1687630\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1687630\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1687707\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1687707\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1687741\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1687741\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1687772\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1687772\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1687980\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1687980\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1688022\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1688022\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1688546\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1688546\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1688691\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1688691\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1688799\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1688799\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1688882\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1688882\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1688900\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1688900\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1689004\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1689004\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1689129\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1689129\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1689514\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1689514\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1689576\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1689576\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1689992\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1689992\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1690134\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1690134\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1690179\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1690179\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1690436\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1690436\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1690627\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1690627\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1690658\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1690658\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1690835\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1690835\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1690870\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1690870\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1691070\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1691070\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1691084\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1691084\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1691133\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1691133\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1691227\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1691227\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1691310\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1691310\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1691515\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1691515\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1691630\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1691630\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1691834\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1691834\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1692146\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1692146\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1692257\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1692257\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1692306\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1692306\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1692705\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1692705\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1693034\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1693034\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1693145\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1693145\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1693930\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1693930\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694144\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694144\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694255\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694255\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694366\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694366\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694383\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694383\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694415\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694415\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694509\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694509\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694588\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694588\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694717\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694717\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694734\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694734\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694845\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694845\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694973\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1694973\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1695109\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1695109\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1695400\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1695400\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1695431\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1695431\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1695476\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1695476\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1695573\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1695573\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1695720\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1695720\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1695969\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1695969\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696156\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696156\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696489\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696489\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696524\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696524\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696541\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696541\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696780\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696780\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696830\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696830\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696874\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696874\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696888\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696888\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696891\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696891\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696910\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1696910\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697270\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697270\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697301\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697301\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697346\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697346\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697460\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697460\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697474\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697474\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697491\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697491\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697634\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697634\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697887\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697887\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697940\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1697940\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1698300\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1698300\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1698331\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1698331\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1698376\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1698376\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1698584\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1698584\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1698616\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1698616\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1698650\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1698650\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1698970\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1698970\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699011\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699011\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699025\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699025\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699167\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699167\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699361\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699361\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699455\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699455\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699486\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699486\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699615\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699615\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699760\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699760\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699979\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1699979\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"16UL389\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"16UL389\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1700080\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1700080\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1700108\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1700108\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1700458\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1700458\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1700715\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1700715\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1700812\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1700812\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1700860\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1700860\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1700968\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1700968\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701044\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701044\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701058\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701058\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701204\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701204\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701266\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701266\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701270\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701270\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701350\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701350\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701363\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701363\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701488\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701488\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701568\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701568\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701599\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701599\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701648\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701648\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701665\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701665\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701780\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1701780\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702110\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702110\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702140\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702140\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702282\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702282\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702376\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702376\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702425\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702425\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702456\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702456\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702700\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702700\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702789\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702789\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702949\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1702949\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1703056\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1703056\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1703198\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1703198\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1703264\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1703264\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1703281\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1703281\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1703521\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1703521\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1703791\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1703791\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1703837\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1703837\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1703965\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1703965\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1704360\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1704360\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1704423\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1704423\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1704485\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1704485\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1704499\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1704499\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1704548\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1704548\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1704756\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1704756\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705134\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705134\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705151\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705151\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705339\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705339\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705440\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705440\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705502\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705502\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705600\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705600\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705630\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705630\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705675\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705675\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705852\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705852\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705883\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705883\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705915\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705915\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705977\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1705977\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1706147\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1706147\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1706258\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1706258\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1706550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1706550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1706626\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1706626\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1706723\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1706723\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1706993\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1706993\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707194\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707194\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707209\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707209\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707257\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707257\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707260\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707260\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707434\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707434\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707593\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707593\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707642\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707642\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707770\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707770\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707992\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1707992\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1708034\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1708034\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1708208\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1708208\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1708384\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1708384\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1708544\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1708544\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1708669\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1708669\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1708909\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1708909\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1709591\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1709591\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1709859\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1709859\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1709925\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1709925\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1710018\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1710018\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1710066\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1710066\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1710608\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1710608\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1710625\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1710625\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1710930\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1710930\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1711079\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1711079\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1711180\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1711180\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1711256\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1711256\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1711287\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1711287\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1711655\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1711655\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1711690\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1711690\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1711766\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1711766\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1711991\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1711991\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1712130\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1712130\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1712654\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1712654\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1712703\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1712703\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1713001\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1713001\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1713174\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1713174\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1713240\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1713240\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1713653\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1713653\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1713764\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1713764\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1713795\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1713795\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1713830\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1713830\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1713910\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1713910\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1714160\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1714160\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1714489\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1714489\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1714715\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1714715\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1714729\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1714729\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1714732\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1714732\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1714777\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1714777\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1714971\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1714971\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1714985\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1714985\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1715141\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1715141\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1715186\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1715186\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1715460\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1715460\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1715860\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1715860\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1715967\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1715967\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1715984\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1715984\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716009\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716009\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716057\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716057\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716123\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716123\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716171\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716171\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716265\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716265\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716376\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716376\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716890\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716890\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716970\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716970\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716997\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1716997\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717119\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717119\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717136\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717136\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717327\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717327\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717344\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717344\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717438\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717438\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717518\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717518\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717680\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717680\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717791\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717791\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717899\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717899\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717951\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1717951\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718197\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718197\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718263\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718263\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718312\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718312\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718517\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718517\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718579\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718579\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718628\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718628\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718631\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718631\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718867\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718867\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718884\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718884\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718898\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1718898\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1719085\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1719085\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1719419\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1719419\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1719502\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1719502\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1719564\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1719564\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1719595\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1719595\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1719818\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1719818\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1719821\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1719821\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1720073\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1720073\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1720504\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1720504\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1720521\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1720521\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1720663\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1720663\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1720677\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1720677\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1720979\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1720979\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1721565\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1721565\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1721693\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1721693\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1722010\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1722010\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1722120\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1722120\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1722422\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1722422\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1722883\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1722883\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723070\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723070\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723098\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723098\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723307\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723307\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723338\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723338\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723341\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723341\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723501\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723501\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723688\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723688\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723865\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723865\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723882\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723882\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723976\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1723976\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724209\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724209\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724212\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724212\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724288\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724288\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724385\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724385\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724465\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724465\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724479\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724479\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724528\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724528\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724531\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724531\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724639\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724639\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724673\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724673\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724864\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1724864\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1725145\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1725145\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1725353\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1725353\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1725495\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1725495\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1725863\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1725863\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1726113\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1726113\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1726269\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1726269\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1726290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1726290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1726304\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1726304\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1726668\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1726668\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1726671\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1726671\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1726699\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1726699\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1727210\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1727210\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1727268\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1727268\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1727271\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1727271\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1727379\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1727379\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1727431\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1727431\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1727667\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1727667\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1727733\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1727733\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1728045\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1728045\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1728187\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1728187\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1728430\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1728430\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1728524\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1728524\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1728715\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1728715\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1728809\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1728809\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1728843\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1728843\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1729155\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1729155\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1729218\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1729218\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1729221\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1729221\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1729235\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1729235\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1729554\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1729554\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1729620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1729620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1729651\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1729651\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1730112\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1730112\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1730157\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1730157\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1730268\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1730268\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1730271\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1730271\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1730285\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1730285\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1730334\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1730334\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1730459\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1730459\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1730573\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1730573\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1731302\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1731302\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1731400\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1731400\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1731777\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1731777\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1731809\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1731809\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1731860\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1731860\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1731910\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1731910\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732089\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732089\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732092\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732092\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732252\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732252\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732585\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732585\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732603\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732603\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732617\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732617\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732651\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732651\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732700\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732700\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732856\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1732856\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1733012\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1733012\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1733251\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1733251\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1733408\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1733408\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1733570\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1733570\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734042\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734042\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734170\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734170\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734313\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734313\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734570\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734570\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734774\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734774\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734788\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734788\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734840\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734840\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734871\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734871\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734920\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1734920\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1735055\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1735055\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1735135\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1735135\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1735330\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1735330\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1735693\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1735693\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1736120\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1736120\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1736196\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1736196\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1736339\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1736339\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1736467\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1736467\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1736932\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1736932\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1737258\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1737258\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1737275\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1737275\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1737630\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1737630\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1737754\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1737754\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1737900\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1737900\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1738129\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1738129\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1738514\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1738514\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1738690\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1738690\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1738719\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1738719\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1738722\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1738722\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1738958\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1738958\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739193\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739193\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739322\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739322\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739370\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739370\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739416\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739416\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739530\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739530\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739575\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739575\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739610\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739610\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739624\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739624\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739669\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1739669\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740181\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740181\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740195\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740195\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740213\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740213\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740341\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740341\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740372\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740372\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740532\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740532\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740803\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740803\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740882\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740882\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740931\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1740931\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1741066\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1741066\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1741900\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1741900\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1744112\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1744112\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1744813\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1744813\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1744830\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1744830\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1745000\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1745000\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1745666\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1745666\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1745812\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1745812\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1745891\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1745891\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1746297\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1746297\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1746412\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1746412\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1746617\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1746617\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1746679\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1746679\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1746682\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1746682\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1746887\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1746887\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1747030\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1747030\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1747123\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1747123\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1748344\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1748344\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1748410\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1748410\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1748424\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1748424\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1748597\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1748597\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1749072\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1749072\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1751504\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1751504\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1751615\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1751615\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1751632\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1751632\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1751726\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1751726\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1751760\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1751760\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1751840\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1751840\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1751948\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1751948\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1754470\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1754470\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1754691\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1754691\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1754879\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1754879\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1755816\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1755816\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1756287\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1756287\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1756530\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1756530\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1756766\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1756766\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1757113\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1757113\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1757130\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1757130\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1757158\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1757158\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1757401\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1757401\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1757654\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1757654\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1757720\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1757720\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1757779\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1757779\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1758130\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1758130\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1758223\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1758223\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1758396\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1758396\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1758428\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1758428\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1761493\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1761493\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1762475\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1762475\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1762538\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1762538\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1762572\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1762572\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1762715\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1762715\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1762763\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1762763\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1762860\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1762860\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1762985\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1762985\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1763000\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1763000\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1765184\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1765184\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1765490\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1765490\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1767006\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1767006\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1767422\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1767422\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1768150\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1768150\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1768244\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1768244\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1768418\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1768418\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1768901\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1768901\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1769740\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1769740\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1769820\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1769820\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1769850\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1769850\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1770387\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1770387\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1770581\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1770581\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1770994\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1770994\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1771178\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1771178\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1771710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1771710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1771817\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1771817\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1771993\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1771993\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1772150\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1772150\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1772465\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1772465\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1772611\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1772611\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1772642\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1772642\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1773863\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1773863\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1773877\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1773877\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1774081\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1774081\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1774100\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1774100\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1774175\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1774175\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1774290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1774290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1774685\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1774685\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1774782\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1774782\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1775160\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1775160\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1775210\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1775210\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1775223\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1775223\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1775972\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1775972\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1775990\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1775990\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1776059\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1776059\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1776350\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1776350\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1776618\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1776618\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1776777\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1776777\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1777141\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1777141\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1778009\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1778009\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1778140\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1778140\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1778314\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1778314\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1778775\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1778775\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1779220\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1779220\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1779597\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1779597\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1779871\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1779871\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1779920\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1779920\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1780252\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1780252\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1780599\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1780599\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1780808\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1780808\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1781598\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1781598\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1781730\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1781730\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1781872\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1781872\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1781904\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1781904\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1782597\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1782597\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1783437\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1783437\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1783739\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1783739\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1783756\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1783756\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1783853\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1783853\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1784422\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1784422\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1784613\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1784613\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1784786\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1784786\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1784901\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1784901\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1784994\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1784994\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1785040\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1785040\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1785341\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1785341\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1785550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1785550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1785577\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1785577\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1785580\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1785580\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1786243\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1786243\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1786417\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1786417\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1786802\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1786802\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1786958\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1786958\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1786975\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1786975\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1787051\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1787051\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1787353\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1787353\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1787641\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1787641\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1788349\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1788349\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1788352\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1788352\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1788893\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1788893\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1789188\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1789188\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1789320\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1789320\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1789556\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1789556\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1789622\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1789622\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1789972\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1789972\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1790003\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1790003\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1790131\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1790131\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1791530\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1791530\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1791543\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1791543\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1791765\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1791765\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1791893\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1791893\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1792032\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1792032\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1793400\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1793400\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1793971\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1793971\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1794218\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1794218\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1794620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1794620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1794665\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1794665\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1794759\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1794759\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1794842\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1794842\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1795106\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1795106\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1795376\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1795376\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1795584\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1795584\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1796060\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1796060\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1796250\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1796250\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1796840\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1796840\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1797468\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1797468\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1797503\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1797503\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1797995\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1797995\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1798308\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1798308\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1798325\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1798325\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1798387\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1798387\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1798980\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1798980\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1799067\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1799067\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1799421\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1799421\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1799737\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1799737\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"17UL389\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"17UL389\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1800281\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1800281\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1800552\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1800552\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1800709\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1800709\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1800726\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1800726\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1800774\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1800774\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1800788\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1800788\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1801229\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1801229\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1801406\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1801406\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1802710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1802710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1802915\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1802915\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1803914\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1803914\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1804097\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1804097\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1804115\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1804115\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1804690\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1804690\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1805082\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1805082\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1805575\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1805575\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1805960\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1805960\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1806127\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1806127\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1806304\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1806304\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1806321\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1806321\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1806415\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1806415\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1806446\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1806446\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1806751\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1806751\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1807271\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1807271\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1808205\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1808205\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1808320\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1808320\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1808395\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1808395\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1808621\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1808621\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1809235\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1809235\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1809759\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1809759\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1810046\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1810046\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1810109\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1810109\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1811572\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1811572\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1811891\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1811891\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1812460\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1812460\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1812856\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1812856\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1813620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1813620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1814441\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1814441\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1815950\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1815950\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1815981\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1815981\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816010\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816010\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816311\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816311\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816325\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816325\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816405\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816405\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816453\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816453\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816498\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816498\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816520\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816520\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816600\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816600\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816710\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816710\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816790\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816790\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816821\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816821\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816835\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1816835\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817195\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817195\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817213\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817213\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817227\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817227\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817310\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817310\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817369\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817369\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817497\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817497\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817515\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817515\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817529\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817529\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817546\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817546\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817563\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817563\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817577\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817577\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817609\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817609\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817612\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817612\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817674\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817674\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817723\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817723\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817785\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817785\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817799\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1817799\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818132\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818132\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818150\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818150\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818212\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818212\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818257\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818257\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818288\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818288\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818354\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818354\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818465\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818465\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818528\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818528\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818559\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818559\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818593\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818593\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818753\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818753\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818802\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818802\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818927\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818927\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818958\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1818958\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819034\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819034\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819065\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819065\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819079\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819079\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819082\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819082\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819100\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819100\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819145\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819145\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819176\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819176\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819211\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819211\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819242\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819242\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819256\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819256\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819260\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819260\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819305\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819305\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819340\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819340\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819420\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819420\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819433\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819433\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819669\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819669\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819690\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819690\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819783\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819783\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819926\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819926\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819957\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819957\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819974\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1819974\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820040\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820040\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820070\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820070\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820084\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820084\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820116\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820116\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820181\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820181\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820195\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820195\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820421\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820421\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820435\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820435\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820660\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820660\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820674\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820674\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820691\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820691\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820706\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820706\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820723\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820723\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820737\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820737\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820740\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820740\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820754\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820754\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820799\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820799\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820882\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820882\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820914\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820914\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820959\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820959\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820962\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1820962\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821146\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821146\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821368\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821368\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821399\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821399\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821434\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821434\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821465\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821465\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821528\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821528\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821559\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821559\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821608\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821608\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821642\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821642\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821705\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821705\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821719\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821719\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821753\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821753\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821798\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821798\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821847\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1821847\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822017\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822017\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822145\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822145\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822162\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822162\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822225\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822225\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822273\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822273\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822290\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822290\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822481\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822481\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822544\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822544\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822589\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822589\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822592\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822592\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822641\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822641\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822721\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822721\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822749\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822749\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822770\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822770\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822801\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822801\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822943\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822943\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822988\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1822988\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823033\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823033\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823047\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823047\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823064\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823064\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823130\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823130\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823349\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823349\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823450\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823450\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823509\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823509\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823640\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823640\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823911\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823911\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823925\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1823925\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824094\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824094\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824210\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824210\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824237\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824237\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824271\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824271\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824365\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824365\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824382\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824382\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824431\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824431\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824653\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824653\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824861\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824861\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824938\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1824938\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1825014\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1825014\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1825267\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1825267\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1825427\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1825427\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1825510\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1825510\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1825670\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1825670\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1825732\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1825732\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1825985\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1825985\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1826092\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1826092\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1826266\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1826266\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1826301\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1826301\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1826412\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1826412\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1826460\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1826460\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1826648\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1826648\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1826696\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1826696\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827009\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827009\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827123\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827123\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827140\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827140\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827171\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827171\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827248\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827248\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827328\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827328\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827456\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827456\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827522\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827522\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827553\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827553\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827921\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827921\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827952\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1827952\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1828202\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1828202\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1828220\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1828220\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1828344\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1828344\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1828441\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1828441\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1828854\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1828854\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1829551\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1829551\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1829596\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1829596\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1829600\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1829600\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1829933\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1829933\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1830009\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1830009\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1830123\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1830123\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1830460\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1830460\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1830540\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1830540\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1830602\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1830602\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1830664\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1830664\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1830713\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1830713\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1831344\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1831344\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1831629\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1831629\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1831760\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1831760\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1831837\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1831837\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1831965\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1831965\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832086\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832086\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832294\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832294\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832357\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832357\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832499\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832499\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832596\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832596\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832628\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832628\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832645\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832645\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832805\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832805\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832840\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1832840\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1833006\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1833006\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1833068\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1833068\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1833405\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1833405\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1833804\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1833804\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1833835\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1833835\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834164\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834164\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834227\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834227\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834230\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834230\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834341\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834341\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834418\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834418\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834452\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834452\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834529\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834529\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834550\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834550\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834771\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834771\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834851\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1834851\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1835070\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1835070\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1835306\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1835306\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1835323\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1835323\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1835479\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1835479\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1835545\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1835545\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1835961\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1835961\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1836082\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1836082\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1836128\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1836128\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1836162\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1836162\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1836544\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1836544\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1836672\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1836672\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1836894\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1836894\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1836974\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1836974\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1837207\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1837207\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1837318\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1837318\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1837429\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1837429\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1837862\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1837862\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1837880\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1837880\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1837973\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1837973\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1838015\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1838015\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1838046\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1838046\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1838094\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1838094\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1838130\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1838130\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1838191\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1838191\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1838764\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1838764\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1838795\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1838795\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1839125\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1839125\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1839333\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1839333\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1839381\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1839381\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1840078\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1840078\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1840130\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1840130\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1840494\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1840494\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1840703\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1840703\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1840908\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1840908\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1840956\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1840956\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1841077\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1841077\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1841109\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1841109\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1841126\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1841126\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1841160\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1841160\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1841556\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1841556\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1841587\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1841587\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1841716\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1841716\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1842031\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1842031\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1842142\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1842142\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1842430\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1842430\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1842461\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1842461\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1843155\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1843155\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1843297\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1843297\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1843460\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1843460\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1843491\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1843491\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844012\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844012\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844057\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844057\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844248\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844248\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844279\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844279\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844376\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844376\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844584\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844584\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844598\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844598\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844620\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844620\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844664\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844664\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844713\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844713\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844838\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844838\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844952\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1844952\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1845119\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1845119\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1845136\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1845136\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1845264\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1845264\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1845278\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1845278\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1845389\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1845389\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1846135\",\"badgeno\": \"\",\"movement\": \"I\",\"clock\": \"2021-01-21 09:00:00 -04:00\",\"deviceid\": \"1234\"},{\"person\": \"1846135\",\"badgeno\": \"\",\"movement\": \"O\",\"clock\": \"2021-01-21 14:00:00 -04:00\",\"deviceid\": \"1234\"}]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/clocking/batch/clocks"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Fri, 29 Jan 2021 11:21:39 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"180132b6-f901-417e-8ecd-a53895096b59-014145fb"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION, X-COREHR-INTEGRITY, CACHE-CONTROL, X-COREHR-FILE-NAME, X-COREHR-WARNINGS"},{"key":"Content-Length","value":"0"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":""},{"id":"f3474b78-d6d5-4666-b2e4-8f831b034788","name":"/clocking/batch/clocks","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer aiCeArFkGBoGr-_w8zxSLg","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"externalBatchId\": \"1234566\",\r\n\"clockData\": [{\r\n                  \"person\": \"7204000020\",\r\n                  \"badgeno\": \"\",\r\n                  \"movement\": \"I\",\r\n                  \"clock\": \"2021-01-20 09:00:00 -04:00\",\r\n                  \"deviceid\": \"1234\"\r\n              },\r\n              {\r\n                  \"person\": \"7204000020\",\r\n                  \"badgeno\": \"\",\r\n                  \"movement\": \"O\",\r\n                  \"clock\": \"2021-01-20 14:00:00 -04:00\",\r\n                  \"deviceid\": \"1234\"\r\n              }]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/clocking/batch/clocks"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Fri, 29 Jan 2021 15:39:55 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"180132b6-f901-417e-8ecd-a53895096b59-014768c4"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION, X-COREHR-INTEGRITY, CACHE-CONTROL, X-COREHR-FILE-NAME, X-COREHR-WARNINGS"},{"key":"Content-Length","value":"0"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a051f4ac-4dd1-4804-a24e-babf84d2b763"}],"id":"792ba82c-1a34-474e-aac7-5279ae0824b1","_postman_id":"792ba82c-1a34-474e-aac7-5279ae0824b1","description":""},{"name":"badge","item":[{"name":"/clocking/badge","id":"c9f16f13-4c10-4b95-91fe-bd550907ae68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"authUrl","value":"<auth-url>"}]},"isInherited":false},"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer aiCeArFkGBoGr-_w8zxSLg","type":"text"}],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/clocking/badge?diff=Y","description":"<p>This endpoint will return a list of valid badges for third party clocking services.</p>\n<ul>\n<li><p><a href=\"#common-get-request-optional-parameters\">Optional Params</a></p>\n<ol>\n<li><strong>diff</strong>. \n Alphabetic Chars Only.\n Pass in 'Y' to return only differences since last time this api was called. \n Pass in 'N' to return a full list of valid badges clearing all out tracked changes.</li>\n</ol>\n</li>\n<li><p>The JSON Response</p>\n<ol>\n<li><strong>badge</strong><ul>\n<li>String. Badge Number.</li>\n</ul>\n</li>\n<li><strong>person</strong><ul>\n<li>String. Personnel Number.</li>\n</ul>\n</li>\n<li><strong>name</strong><ul>\n<li>String. Persons Name.</li>\n</ul>\n</li>\n<li><strong>distroGroups</strong><ul>\n<li>Comma delimited Array of Distribution Groups.</li>\n</ul>\n</li>\n<li><strong>languageCode</strong><ul>\n<li>String. Prefered Language.</li>\n</ul>\n</li>\n<li><strong>status</strong><ul>\n<li>String. ACTIVE or DELETE.</li>\n</ul>\n</li>\n</ol>\n</li>\n<li><p>This endpoint is protected using oAuth2, it requires a valid Bearer Token to be sent in the Authorization header. Please refer to the <a href=\"#authorization\">Authorization</a> guidelines outlined in the introduction.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","clocking","badge"],"host":["{{url}}"],"query":[{"key":"diff","value":"Y"}],"variable":[]}},"response":[],"_postman_id":"c9f16f13-4c10-4b95-91fe-bd550907ae68"}],"id":"da02f551-87ee-47e3-832c-fb983374cbb0","_postman_id":"da02f551-87ee-47e3-832c-fb983374cbb0","description":""},{"name":"groups","item":[{"name":"/clocking/groups","id":"fdccb3fd-2f6a-4ab2-a726-e973fa8a9823","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"authUrl","value":"<auth-url>"}]},"isInherited":false},"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/clocking/groups","description":"<p>This endpoint will return a list of Distribution groups.</p>\n<ul>\n<li><p>The JSON Response</p>\n<ol>\n<li><strong>code</strong><ul>\n<li>String. Code for distribution groups.</li>\n</ul>\n</li>\n<li><strong>description</strong><ul>\n<li>String. Distribution group description</li>\n</ul>\n</li>\n</ol>\n</li>\n<li><p>This endpoint is protected using oAuth2, it requires a valid Bearer Token to be sent in the Authorization header. Please refer to the <a href=\"#authorization\">Authorization</a> guidelines outlined in the introduction.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","clocking","groups"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e4c75275-19e8-443e-a5ba-b4a343aed761","name":"/clocking/groups","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/clocking/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Feb 2021 16:08:05 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"d80ec666-e367-4ccc-b097-7e8921f43b2c-00439d15"},{"key":"ETag","value":"\"/rlRJFMYE48uJIwB/jGMIRJgLn7kv9ZYlVb6RYylZYM8Hc/CQJAQ98Dex2R/rFwe5bVqKHLq6mdKAffGB+wlRw==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com https://*.xd.accessacloud.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION, X-COREHR-INTEGRITY, CACHE-CONTROL, X-COREHR-FILE-NAME, X-COREHR-WARNINGS"},{"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    \"items\": [\n        {\n            \"code\": \"STEF1\",\n            \"description\": \"A shack in Hawaii\"\n        },\n        {\n            \"code\": \"MATT1\",\n            \"description\": \"GAA Center Ballincollig\"\n        },\n        {\n            \"code\": \"LON1\",\n            \"description\": \"London Main Office\"\n        },\n        {\n            \"code\": \"DUB1\",\n            \"description\": \"Dublin Main Office\"\n        },\n        {\n            \"code\": \"LON2\",\n            \"description\": \"London Satilie Office\"\n        },\n        {\n            \"code\": \"DUB2\",\n            \"description\": \"Dublin Satilie Office\"\n        }\n    ]\n}"}],"_postman_id":"fdccb3fd-2f6a-4ab2-a726-e973fa8a9823"}],"id":"fe470c8d-9358-45c4-a627-238db3a864ab","_postman_id":"fe470c8d-9358-45c4-a627-238db3a864ab","description":""},{"name":"/clocking/user","id":"f277fb96-3b11-478e-9995-4c664f0c171d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"content-type","value":"application/json"},{"key":"authorization","value":"Bearer ALgQ3rnPP2TYd6CAOaKDBA.."}],"url":"{{url}}/ws/{{schema}}/{{version}}v1/clocking/user/","description":"<p>This Web Service provides a means of reporting the data that has been sent to the Clocking web service and the status of that clocking data in terms of it being interfaced into CoreTime.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li><p>id</p>\n<p>Type : Numeric Optional</p>\n<p>The ws_id unique id of the web service clocking. When a clocking is POSTed to the /clocking/user/ web service it returns this unique ws_id relating to the data just added.</p>\n</li>\n<li><p>person </p>\n<p>Type : Alphanumeric Optional</p>\n<p>The personnel number in CoreHR of the person for whom the web service related clockings will be retrieved for.</p>\n</li>\n<li><p>badge_no </p>\n<p>Type : Numeric Optional</p>\n<p>The badge number in CoreHR of the person for whom web service related clockings will be retrieved for.</p>\n</li>\n<li><p>appointment_id </p>\n<p>Type : Alphanumeric Optional</p>\n<p>The appointment id in CoreHR for which web service related clockings will be retrieved.</p>\n</li>\n<li><p>device_id </p>\n<p>Type : Alphanumeric Optional</p>\n<p>The device ID from which the clocking originated for which web service related clockings will be retrieved.</p>\n</li>\n<li><p>moved_to_coretime </p>\n<p>Type : Alpha Optional</p>\n<p>The status of the clocking records being queried. Options include:</p>\n<ol>\n<li><code>Y</code> - Clockings that have been successfully interfaced into CoreTime</li>\n<li><code>N</code> - Clockings that have not yet been interfaced into CoreTime. These will be actioned the next time the Clocking Interface to CoreTime is invoked.</li>\n<li><code>E</code> - Clockings that have been attempted to be interfaced into CoreTime but have not been successfully inserted into coretime. Further details of the Error are included in the errMsg results returned.</li>\n</ol>\n</li>\n<li><p>start_date_range </p>\n<p>Type : Date Optional</p>\n<p>The start of the date range from which Web Service Clocking will be retrieved. Required to use the standard ISO 8601 / CoreHR Standard YYYY-MM-DD format.</p>\n</li>\n<li><p>end_date_range </p>\n<p>Type : Date Optional</p>\n<p>The end of the date range from which Web Service Clocking will be retrieved. Required to use the standard ISO 8601 / CoreHR Sandard YYYY-MM-DD format.</p>\n</li>\n<li><p>The JSON Response</p>\n<ol>\n<li><p><strong>WSID</strong>  </p>\n<ul>\n<li>The unique id of the web service clocking record.</li>\n</ul>\n</li>\n<li><p><strong>PERSON</strong></p>\n<ul>\n<li>The CoreHR personnel number of the person the clocking record is for. Note that this will be automatically populated based on the badge number of the record if that was used to insert the clocking -  provided that the badge number is associated with a valid CoreHR employee.</li>\n</ul>\n</li>\n<li><p><strong>APPOINTMENTID</strong></p>\n<ul>\n<li>The Appointment ID of the clocking being queried. Only populated on sites where CoreTime is configured to run as multi-appointment.</li>\n</ul>\n</li>\n<li><p><strong>BADGENO</strong></p>\n<ul>\n<li>The CoreTime Badge Number of the clocking record. Only populated where the clocking was inserted using a badge number.</li>\n</ul>\n</li>\n<li><p><strong>CLOCKDATETIME</strong></p>\n<ul>\n<li>The Clock Date Time in the standard <code>YYYY-MM-DD HH24:MI TZH:TZM</code> format. This is the format the clocking record came in as. e.g. <code>2018-09-04 00:16 +01:00</code> \n Note that CoreHR will convert the data into the server system time before interfacing to CoreTime.</li>\n</ul>\n</li>\n<li><p><strong>INSERTDATETIME</strong></p>\n<ul>\n<li>The date (without time) that the clocking record was inserted.</li>\n</ul>\n</li>\n<li><p><strong>RECORDTYPE</strong></p>\n<ul>\n<li>The transactional event type that the clocking record is.</li>\n</ul>\n</li>\n<li><p><strong>FUNCTIONCODE</strong></p>\n<ul>\n<li>The optional function code related to the clocking record.</li>\n</ul>\n</li>\n<li><p><strong>FUNCTIONVALUE</strong></p>\n<ul>\n<li>The function value related to the function code above. e.g. if the FUNCTIONCODE was <code>COST</code> and the FUNCTIONVALUE was <code>1</code> then the clocking would relate to Cost Centre 1.</li>\n</ul>\n</li>\n<li><p><strong>DEVICEID</strong></p>\n<ul>\n<li>Text field to report on the device that the clocking originated from.</li>\n</ul>\n</li>\n<li><p><strong>CLOCKDATESYSTEMTZ</strong></p>\n<ul>\n<li>The Clock Date converted to the System Time Zone for the clocking record. e.g. a clocking for <code>2018-09-20 00:46 +02:00</code> would be <code>2018-09-19</code> when converted to system date presuming server resides in +01:00 time zone (i.e UTC+1 for daylight savings).</li>\n</ul>\n</li>\n<li><p><strong>CLOCKTIMESYSTEMTZ</strong></p>\n<ul>\n<li>The Clock time converted to the System Time Zone for the clocking record. e.g. a clocking for <code>2018-09-20 00:46 +02:00</code> would be <code>23:46</code> when converted to system date presuming server resides in +01:00 time zone (i.e UTC+1 for daylight savings).</li>\n</ul>\n</li>\n<li><p><strong>CORETIMECLOCKDATE</strong></p>\n<ul>\n<li>The CoreTime Date. This is because CoreTime may need to perform some adjustments to the clocking once it is inserted into CoreTime based on the pattern the person is working and if it relates to an overnight.</li>\n</ul>\n</li>\n<li><p><strong>CORETIMECLOCKTIME</strong></p>\n<ul>\n<li>The CoreTime Time. This is because CoreTime may need to perform some adjustments to the clocking once it is inserted into CoreTime based on the pattern the person is working and if it relates to an overnight.</li>\n</ul>\n</li>\n<li><p><strong>CORETIMEACTUALCLOCKDATE</strong></p>\n<ul>\n<li>The CoreTime actual date of clocking for reporting purposes.</li>\n</ul>\n</li>\n<li><p><strong>MOVEDTOCORETIME</strong></p>\n<ul>\n<li>Indicates what the status of this clocking record is in terms of its having been transferred to CoreTime. Options are:\n <code>Y</code> where the record has been successfully transferred into CoreTime.\n <code>N</code> where the record has not yet been attempted to be transferred into CoreTime.\n <code>E</code> where an attempt was made to move the record into CoreTime but an error occurred  when doing so.</li>\n</ul>\n</li>\n<li><p><strong>ERRIND</strong></p>\n<ul>\n<li>Indicates  if an error occurred when transferring  the clocking for the web service into CoreTime. Can be either <code>Y</code> or <code>N</code>.</li>\n</ul>\n</li>\n<li><p><strong>ERRLOGID</strong></p>\n<ul>\n<li>The unique id of the error record on the system. Only ever populated when there was an error transferring the clocking to CoreTime. i.e. only populated when ERRIND above is <code>Y</code>.</li>\n</ul>\n</li>\n<li><p><strong>ERRMSG</strong></p>\n<ul>\n<li>A message explaining the error that occurred when transferring the record into CoreTime.</li>\n</ul>\n</li>\n</ol>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}v1","clocking","user",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3cdbfe91-2b4e-48f7-bd95-72a4ea058fb8","name":"200 - Success with no params","originalRequest":{"method":"GET","header":[{"key":"content-type","value":"application/json"},{"key":"authorization","value":"Bearer ALgQ3rnPP2TYd6CAOaKDBA.."}],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}v1/clocking/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Jan 2019 12:30:25 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"6c8fa8cd-67b1-4e97-a6c3-27fdc01684e2-00258979"},{"key":"ETag","value":"\"Q/oLtHAATq9W4CMXLHLklvLvnGf2y+dF4i9CKYp2kab3nL9JTP0o8riR4/kx+wK2+lsBM3lKTVWUFKMVZn64vw==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY, CACHE-CONTROL,X-COREHR-FILE-NAME"},{"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    \"items\": [\n        {\n            \"wsID\": \"1\",\n            \"person\": \"102572\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"\",\n            \"clockDateTime\": \"16-JAN-19 08.56.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"08:56\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"08:56\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"2\",\n            \"person\": \"102572\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"\",\n            \"clockDateTime\": \"16-JAN-19 05.58.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"05:58\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"05:58\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"3\",\n            \"person\": \"102572\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 05.59.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"05:59\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"05:59\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"4\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 05.59.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"05:59\",\n            \"coretimeClockDate\": \"\",\n            \"coretimeClockTime\": \"\",\n            \"coretimeActualClockDate\": \"\",\n            \"movedToCoretime\": \"E\",\n            \"errInd\": \"Y\",\n            \"errLogID\": \"1\",\n            \"errMsg\": \"Duplicate clocking. Clocking already exists in CoreTime for this Person at this Date and Time. Clocking can not be processed.\"\n        },\n        {\n            \"wsID\": \"5\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 06.00.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"06:00\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"06:00\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"6\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 06.01.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"06:01\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"06:01\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"7\",\n            \"person\": \"202129\",\n            \"appointmentID\": \"500076-7\",\n            \"badgeNo\": \"\",\n            \"clockDateTime\": \"31-DEC-18 02.25.00.000000 PM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"\",\n            \"functionValue\": \"\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20181231\",\n            \"clockTimeSystemTZ\": \"14:25\",\n            \"coretimeClockDate\": \"20181231\",\n            \"coretimeClockTime\": \"14:25\",\n            \"coretimeActualClockDate\": \"31-DEC-18\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 7,\n    \"hasMore\": false,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/dev27/corehr/v1/clocking/user\"\n        }\n    ]\n}"},{"id":"8ef5933e-5ed7-4fe5-9aaf-98ca3b358963","name":"200 - Success with several params including date range and device_id","originalRequest":{"method":"GET","header":[{"key":"content-type","value":"application/json"},{"key":"authorization","value":"Bearer ALgQ3rnPP2TYd6CAOaKDBA.."}],"url":{"raw":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}v1/clocking/user?id=&start_date_range=2018-12-20&end_date_range=2019-01-20&badge_no=&moved_to_coretime=&person=&appointment_id=&device_id=DEVSERIALNO123456","host":["{{url}}"],"path":["ws","{{tenant}}","{{schema}}","{{version}}v1","clocking","user"],"query":[{"key":"id","value":""},{"key":"start_date_range","value":"2018-12-20"},{"key":"end_date_range","value":"2019-01-20"},{"key":"badge_no","value":""},{"key":"moved_to_coretime","value":""},{"key":"person","value":""},{"key":"appointment_id","value":""},{"key":"device_id","value":"DEVSERIALNO123456"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Jan 2019 12:35:33 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"6c8fa8cd-67b1-4e97-a6c3-27fdc01684e2-0025988e"},{"key":"ETag","value":"\"0KRGs+6cXgkkS2vJTSAaQIOjepp4W3DIjFqF9uWODJJ/s/8E6xh6xB3rVHECp14kr4tBElM15tlL69YJb0n1Zg==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY, CACHE-CONTROL,X-COREHR-FILE-NAME"},{"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    \"items\": [\n        {\n            \"wsID\": \"1\",\n            \"person\": \"102572\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"\",\n            \"clockDateTime\": \"16-JAN-19 08.56.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"08:56\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"08:56\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"2\",\n            \"person\": \"102572\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"\",\n            \"clockDateTime\": \"16-JAN-19 05.58.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"05:58\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"05:58\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"3\",\n            \"person\": \"102572\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 05.59.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"05:59\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"05:59\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"4\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 05.59.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"05:59\",\n            \"coretimeClockDate\": \"\",\n            \"coretimeClockTime\": \"\",\n            \"coretimeActualClockDate\": \"\",\n            \"movedToCoretime\": \"E\",\n            \"errInd\": \"Y\",\n            \"errLogID\": \"1\",\n            \"errMsg\": \"Duplicate clocking. Clocking already exists in CoreTime for this Person at this Date and Time. Clocking can not be processed.\"\n        },\n        {\n            \"wsID\": \"5\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 06.00.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"06:00\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"06:00\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"6\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 06.01.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"06:01\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"06:01\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"7\",\n            \"person\": \"202129\",\n            \"appointmentID\": \"500076-7\",\n            \"badgeNo\": \"\",\n            \"clockDateTime\": \"31-DEC-18 02.25.00.000000 PM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"\",\n            \"functionValue\": \"\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20181231\",\n            \"clockTimeSystemTZ\": \"14:25\",\n            \"coretimeClockDate\": \"20181231\",\n            \"coretimeClockTime\": \"14:25\",\n            \"coretimeActualClockDate\": \"31-DEC-18\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 7,\n    \"hasMore\": false,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/dev27/corehr/v1/clocking/user?id&start_date_range=2018-12-20&end_date_range=2019-01-20&badge_no&moved_to_coretime&person&appointment_id&device_id=DEVSERIALNO123456\"\n        }\n    ]\n}"},{"id":"b565bb7a-aa8d-4c28-9ea3-bf2ae0cbd930","name":"200 - Success for specific person 00001","originalRequest":{"method":"GET","header":[{"key":"content-type","value":"application/json"},{"key":"authorization","value":"Bearer ALgQ3rnPP2TYd6CAOaKDBA.."}],"url":{"raw":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}v1/clocking/user?id=&start_date_range=2018-12-20&end_date_range=2019-01-20&badge_no=&moved_to_coretime=&person=00001&appointment_id=&device_id=","host":["{{url}}"],"path":["ws","{{tenant}}","{{schema}}","{{version}}v1","clocking","user"],"query":[{"key":"id","value":""},{"key":"start_date_range","value":"2018-12-20"},{"key":"end_date_range","value":"2019-01-20"},{"key":"badge_no","value":""},{"key":"moved_to_coretime","value":""},{"key":"person","value":"00001"},{"key":"appointment_id","value":""},{"key":"device_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Jan 2019 12:38:17 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"6c8fa8cd-67b1-4e97-a6c3-27fdc01684e2-00259f5b"},{"key":"ETag","value":"\"yxvkyPo45rj5wAh8zzRV4dqZm/kbettoR2yKg3RqKBWCoitKWPxVWYvgeH63Hj/q7LnCuwJ0XPAo2IAzovKA3w==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY, CACHE-CONTROL,X-COREHR-FILE-NAME"},{"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    \"items\": [\n        {\n            \"wsID\": \"4\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 05.59.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"05:59\",\n            \"coretimeClockDate\": \"\",\n            \"coretimeClockTime\": \"\",\n            \"coretimeActualClockDate\": \"\",\n            \"movedToCoretime\": \"E\",\n            \"errInd\": \"Y\",\n            \"errLogID\": \"1\",\n            \"errMsg\": \"Duplicate clocking. Clocking already exists in CoreTime for this Person at this Date and Time. Clocking can not be processed.\"\n        },\n        {\n            \"wsID\": \"5\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 06.00.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"06:00\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"06:00\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"6\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 06.01.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"06:01\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"06:01\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 3,\n    \"hasMore\": false,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/dev27/corehr/v1/clocking/user?id&start_date_range=2018-12-20&end_date_range=2019-01-20&badge_no&moved_to_coretime&person=00001&appointment_id&device_id\"\n        }\n    ]\n}"}],"_postman_id":"f277fb96-3b11-478e-9995-4c664f0c171d"},{"name":"/clocking/user/","id":"2e05bf6d-b4a2-49c1-b1f4-97148ddea9f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer XYopyFOTxxoxAqpQU6kjvw.."}],"body":{"mode":"raw","raw":"{\n    \"person\": \"202129\",\n    \"badge_no\": \"\",\n    \"clock_date_time\": \"2018-12-31 14:25 +00:00\",\n    \"record_type\": \"\",\n    \"function_code\": \"\",\n    \"function_value\": \"\",\n    \"device_id\": \"DEVSERIALNO123456\",\n    \"appointment_id\": \"500076-7\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}v1/clocking/user/","description":"<p>Create a clocking record in the clocking module for subsequent transfer into CoreTime. On successful completion, users will have submitted a new clocking record which subject to subsequent CoreTime validation will be transferred into CoreTime the next time the interface runs.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<p><strong>person</strong></p>\n<p>Is an CoreHR employee id also known as <code>personnel number</code> although it is alphanumeric.</p>\n<p><strong>badge_no</strong></p>\n<p>Is the badge number that the CoreHR employee uses. Badge must be valid and linked to a valid CoreHR employee for the clocking to interface into CoreTime.</p>\n<p><strong>clock_date_time</strong></p>\n<p>The Date and Time that this particular clocking is for. Required to be in YYYY-MM-DD HH24:MI TZH:TZM format. Mandatory.</p>\n<p><strong>record_type</strong></p>\n<p>The Transactional event associated with the clocking. Optional but if specified must be one of:</p>\n<ul>\n<li><code>B0</code>     <em>Undefined.</em></li>\n<li><code>B1</code>     <em>In.</em></li>\n<li><code>B2</code>     <em>Out.</em></li>\n<li><code>B3</code>     <em>Business Absence.</em></li>\n</ul>\n<p><strong>function_code</strong></p>\n<p>Optional function code but if specified must be one of:</p>\n<ul>\n<li><code>CALLIN</code></li>\n<li><code>UNSBRK</code></li>\n<li><code>STD</code></li>\n<li><code>TNAIN</code></li>\n<li><code>CALLOT</code></li>\n<li><code>TNAOUT</code></li>\n<li><code>OVERTM</code></li>\n<li><code>COST</code></li>\n</ul>\n<p><strong>function_value</strong></p>\n<p>Optional function_value relating to the above code. When using the <code>function_code</code> COST then the Cost Centre provided in the <code>function_value</code> is validated against the CoreHR Cost Centres.</p>\n<p><strong>device_id</strong></p>\n<p>Optional free text to describe the Device ID where the clocking was recorded e.g. Main Entrance Device.</p>\n<p><strong>appointment_id</strong></p>\n<p>CoreHR Appointment ID of person clocking in. Note: if using this field then <code>person</code> must also be used. i.e. this field cannot be used in conjunction with the <code>badge_no</code> field. Also note: this cannot be used at all if the CoreTime site is not Multi-Appointment. If the site is Multi-Appointment then the field is optional unless the ClockingWebservices Appointment Mandatory for Clockings option in the CoreTime Global Parameters screen is selected.</p>\n<p><strong>Mandatory</strong></p>\n<ul>\n<li>Either <code>person</code> or <code>badge_no</code></li>\n<li><code>clock_date_time</code></li>\n<li><code>appointment_id</code> for Multi-Appointment sites where the Webservices Appointment Mandatory for Clockings option in the CoreTime Global Parameters screen is selected.</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}v1","clocking","user",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4917a322-3714-46ba-bb01-c037f681acb8","name":"201 - Success","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer XYopyFOTxxoxAqpQU6kjvw.."}],"body":{"mode":"raw","raw":"{\n    \"person\": \"102572\",\n    \"badge_no\": \"\",\n    \"clock_date_time\": \"2019-01-16 05:58 +00:00\",\n    \"record_type\": \"\",\n    \"function_code\": \"COST\",\n    \"function_value\": \"40000000\",\n    \"device_id\": \"DEVSERIALNO123456\",\n    \"appointment_id\": \"400978\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}v1/clocking/user/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Jan 2019 11:47:08 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"6c8fa8cd-67b1-4e97-a6c3-27fdc01684e2-002520db"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY, CACHE-CONTROL,X-COREHR-FILE-NAME"},{"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    \"Response\": {\n        \"success\": true,\n        \"ws_id\": \"2\"\n    }\n}"},{"id":"57a9db98-52b9-43e6-a80a-467b891447ce","name":"400 - Bad Request due to appoitnment_id being required","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer XYopyFOTxxoxAqpQU6kjvw.."}],"body":{"mode":"raw","raw":"{\n    \"person\": \"202129\",\n    \"badge_no\": \"\",\n    \"clock_date_time\": \"2018-12-31 09:10 +00:00\",\n    \"record_type\": \"\",\n    \"function_code\": \"COST\",\n    \"function_value\": \"2\",\n    \"device_id\": \"DEVSERIALNO123456\",\n    \"appointment_id\": \"\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}v1/clocking/user/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Jan 2019 12:01:59 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"6c8fa8cd-67b1-4e97-a6c3-27fdc01684e2-002544f1"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY, CACHE-CONTROL,X-COREHR-FILE-NAME"},{"key":"Connection","value":"close"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"Response\": {\n        \"success\": false,\n        \"errorCode\": \"009\",\n        \"errorMessage\": \"appointment_id is configured to be a required field but none has been provided.\"\n    }\n}"},{"id":"9b99c3a0-88a1-45b2-b917-ec79da4974e2","name":"201 -- Success using badge","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer XYopyFOTxxoxAqpQU6kjvw.."}],"body":{"mode":"raw","raw":"{\n    \"person\": \"\",\n    \"badge_no\": \"123456\",\n    \"clock_date_time\": \"2019-01-16 06:00 +00:00\",\n    \"record_type\": \"\",\n    \"function_code\": \"COST\",\n    \"function_value\": \"40000000\",\n    \"device_id\": \"DEVSERIALNO123456\",\n    \"appointment_id\": \"\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}v1/clocking/user/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Jan 2019 11:49:27 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"6c8fa8cd-67b1-4e97-a6c3-27fdc01684e2-0025262c"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY, CACHE-CONTROL,X-COREHR-FILE-NAME"},{"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    \"Response\": {\n        \"success\": true,\n        \"ws_id\": \"5\"\n    }\n}"},{"id":"a4df5cd5-d0dd-4be5-a9fd-56d599bf1497","name":"201 - Success uisng person and appointment","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer XYopyFOTxxoxAqpQU6kjvw.."}],"body":{"mode":"raw","raw":"{\n    \"person\": \"202129\",\n    \"badge_no\": \"\",\n    \"clock_date_time\": \"2018-12-31 14:25 +00:00\",\n    \"record_type\": \"\",\n    \"function_code\": \"\",\n    \"function_value\": \"\",\n    \"device_id\": \"DEVSERIALNO123456\",\n    \"appointment_id\": \"500076-7\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}v1/clocking/user/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Jan 2019 12:15:43 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"6c8fa8cd-67b1-4e97-a6c3-27fdc01684e2-0025648c"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY, CACHE-CONTROL,X-COREHR-FILE-NAME"},{"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    \"Response\": {\n        \"success\": true,\n        \"ws_id\": \"7\"\n    }\n}"},{"id":"b0a00afb-0135-4eda-817f-42cd97866f89","name":"400 - Bad Request due to invalid cost centre","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer XYopyFOTxxoxAqpQU6kjvw.."}],"body":{"mode":"raw","raw":"{\n    \"person\": \"\",\n    \"badge_no\": \"123456\",\n    \"clock_date_time\": \"2019-01-16 06:01 +00:00\",\n    \"record_type\": \"\",\n    \"function_code\": \"COST\",\n    \"function_value\": \"2\",\n    \"device_id\": \"DEVSERIALNO123456\",\n    \"appointment_id\": \"\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}v1/clocking/user/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Jan 2019 11:51:58 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"6c8fa8cd-67b1-4e97-a6c3-27fdc01684e2-00252cb7"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY, CACHE-CONTROL,X-COREHR-FILE-NAME"},{"key":"Connection","value":"close"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"Response\": {\n        \"success\": false,\n        \"errorCode\": \"013\",\n        \"errorMessage\": \"The Cost Centre provided in the function_value for is not a valid Cost Centre on the system\"\n    }\n}"}],"_postman_id":"2e05bf6d-b4a2-49c1-b1f4-97148ddea9f2"}],"id":"8d5869dd-2524-4fa5-bbd5-0da86a2f8860","description":"<p>The clocking module provides ability to insert CoreTime clocking records for a PeopleXD employee.</p>\n<p><strong>Constraints, Limitations, Mandatory and Validation</strong></p>\n<p>The clocking module is designed to handle clockings for CoreTime. Clocking by <code>person</code> <strong>or</strong> <code>badge_no</code> is possible. It is also as of Version 27 possible to perform clocking by appointment for CoreTime Multi-Appointment sites. When using clock by appointment both the appointment_id and the person must be provided. i.e. badge_no cannot be used together with appointment_id. Appointments for the clocking web service can only be used as long as CoreTime is configured in Multi-Appointment mode (ct_global_param.multi_appointment). Provided CoreTime is running as a Mutli- Appointment site it is possible to make appointments mandatory for the clocking web service using the Appointment Mandatory For Clockings option (ct_global_param.ws_clocking_appt_mandatory) in the CoreTime Global Params screen.</p>\n<p>In Version 27 (V27) of PeopleXD the Clocking webservice completes the following validation:</p>\n<p>*   Person is a valid PeopleXD employee.\n*   Badge is a valid PeopleXD Badge for a valid PeopleXD employee. If both badge and person are populated badge take precedence.\n*   Record Type is valid.\n*   Function Code is valid. When using COST then it validates that the Function Value is a valid Cost Centre.\n*   Appointment ID is valid on the specified clocking date - if the site is Multi-Appointment based. Also validates that the field is populated if it is mandatory.\n*   Duplicate Clocking - defined as where a clocking already exists in CoreTime for this person at the same date/time. Clockings are converted to system time for this comparison i.e. 09:00 +00:00 is the same as 08:00 +01:00.<br />    Prior to V27 much of the above validation was performed later at the point of interface into CoreTime.</p>\n<p>Fields are as in the table below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Length</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Person</td>\n<td>Character</td>\n<td>10</td>\n</tr>\n<tr>\n<td>Badge No</td>\n<td>Number</td>\n<td>18</td>\n</tr>\n<tr>\n<td>Clock Date Time</td>\n<td>Date YYYY-MM-DD HH24:MI TZH:TZM</td>\n<td>26</td>\n</tr>\n<tr>\n<td>Record Type</td>\n<td>Character</td>\n<td>2</td>\n</tr>\n<tr>\n<td>Function Code</td>\n<td>Character</td>\n<td>6</td>\n</tr>\n<tr>\n<td>Function Value</td>\n<td>Character</td>\n<td>18</td>\n</tr>\n<tr>\n<td>Device ID</td>\n<td>Character</td>\n<td>100</td>\n</tr>\n<tr>\n<td>Appointment ID</td>\n<td>Character</td>\n<td>16</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: Clock Date Time is mandatory and either Person or Badge No must also be provided.</p>\n<p>Note2: Appointment ID is an optional parameter for use if the site is configured as CoreTime Multi-Appointment. This can be made mandatory by also activating the Appointment Mandatory for Clockings option in CoreTime.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<p>*   400 / 001 Both badge and person fields are not populated. One must be populated.\n*   400 / 002 clock_date_time field is not populated.\n*   400 / 003 clock_date_time field is not in the correct format.\n*   404 / 004 Non standard database exception inserting this clocking.\n*   404 / 005 record_type is invalid. Must be either empty, B0, B1, B2 or B3.\n*   400 / 006 function_code is invalid. Must be either empty, CALLIN, UNSBRK, STD, TNAIN, CALLOT, TNAOUT, OVERTM or COST.\n*   400 / 007 CoreTime is not configured to run using appoinments but an appointment has been provided as part of this request.\n*   400 / 008 badge_no and appointment_id cannot be used together. If you want to clock by appointment, then only personnel_no and appointment_id must be provided but badge_no must be blank.\n*   400 / 009 appointment_id is configured to be a required field but none has been provided.\n*   400 / 010 The appointment_id provided for this person is not valid - check that the appointment id is valid on the system and that it is valid on the clocking date provided.\n*   400 / 011 The badge_no provided is not a valid badge on the system.\n*   400 / 012 The person provided is not a valid person on the system.\n*   400 / 013 The Cost Centre provided in the function_value for is not a valid Cost Centre on the system.\n*   400 / 014 This is a duplicate Clocking. Clocking with this detail has already been interfaced to Core Time.\n*   400 / 015 Clocking with this detail is already in the queue to be interfaced to Core Time.\n*   400 / 016 When specifying a date range to use the start date range must be before the end date range.\n*   400 / 017 When using the id parameter only numeric values are valid.\n*   400 / 999 Basic sanitization error. Where a filed is not the correct data type or length or the data is deemed to be unsafe for recording within the system. Details of the fields failing sanitization are returned in the sanatizeError object in the Response.</p>\n","event":[{"listen":"prerequest","script":{"id":"0ce39f37-cfae-42d6-8c3c-e368d00156bc","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"91d2bb1b-cbc9-45e6-a232-44afb8ac61d0","type":"text/javascript","exec":[""]}}],"_postman_id":"8d5869dd-2524-4fa5-bbd5-0da86a2f8860"},{"name":"Contact","item":[{"name":"/contact/","id":"3a36457f-3c97-43ed-858b-7638ceb8106a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer p7Zy3YYr3Yck6yOVXUYPaQ.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/","description":"<p>Get a list of registered / whitelisted contacts. Tenant has an ability to define contacts available for creating / updating. A tenant may not allow all contacts to be updated or created, this base URI provides the list of valid contact types. In cases where server returns validation errors, refer to this list.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"73c1c930-0f3c-4897-9bd9-e72bc78cda29","name":"200 - Response OK","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:00:52 GMT","name":"Date","description":""},{"key":"ETag","value":"\"uwlnRwLu1teq90JMcLw3B68+EOyVApqwZ0O87dUiP4G6rHtTNS14dRJz0YaKyE8k7RmWTnrUodwqt3OwuAMICA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"EMAIL\", \"length\": 80, \"dataType\" : \"EMAIL\"}\n,\n{\"type\":\"MOBILE\", \"length\": 20, \"dataType\" : \"MOB\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/\"\n      }\n    ]\n}\n"}],"_postman_id":"3a36457f-3c97-43ed-858b-7638ceb8106a"},{"name":"/contact/:type/","id":"2a6a16b8-846a-4bea-afeb-e4d97236ac06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/EMAIL/","description":"<p>Get a list of all users for a particular contact type. Typically used to get a list of all users <code>email</code> addresses. </p>\n<p>This service will only return whitelisted contact types. A tenant may decide to only whitelist a subset of all contacts e.g. EMAIL is whitelisted while MOBILE is not. Only accounts where the contact type is populated are returned. To find accounts with missing contact information use the web service /contact/missing/:type</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","EMAIL",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"831c218f-2afd-4122-904e-6edc627a12da","name":"404 - Invalid Contact type","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/MOB/"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 15 Nov 2016 19:51:28 GMT","name":"Date","description":""},{"key":"ETag","value":"\"WIZPZbpKwxRRgssW8lwH34floeFnPJzhb0Pc1fxiiWRv2Gqy41LgVu19up1qzvTBBMK6i635jWpyDaAsi5TVnQ==-gzip\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Contact type does not exist\" }}\n"},{"id":"94661f24-f169-452c-87cc-6fe7ce6df0da","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/EMAIL/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 15 Nov 2016 19:46:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"6iQZlpyFhjCcA3IiwUAR9L8mLF0w4tdo6M6kmFN3AV+v32sX/fFbqqgk/bMg7pMmUv2y1+9/cnGbLcj57836dw==-gzip\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"coreHRId\":\"003676\", \"value\": \"webservices003676@corehr.com\"}\n,\n{\"coreHRId\":\"003674\", \"value\": \"webservices003674@corehr.com\"}\n,\n{\"coreHRId\":\"003332\", \"value\": \"webservices003332@corehr.com\"}\n,\n{\"coreHRId\":\"003333\", \"value\": \"webservices003333@corehr.com\"}\n,\n{\"coreHRId\":\"INT009\", \"value\": \"webservicesINT009@corehr.com\"}\n,\n{\"coreHRId\":\"INT010\", \"value\": \"webservicesINT010@corehr.com\"}\n,\n{\"coreHRId\":\"600100\", \"value\": \"webservices600100@corehr.com\"}\n,\n{\"coreHRId\":\"600101\", \"value\": \"webservices600101@corehr.com\"}\n,\n{\"coreHRId\":\"600102\", \"value\": \"webservices600102@corehr.com\"}\n,\n{\"coreHRId\":\"7777\", \"value\": \"webservices7777@corehr.com\"}\n,\n{\"coreHRId\":\"C876876\", \"value\": \"webservicesC876876@corehr.com\"}\n,\n{\"coreHRId\":\"003193\", \"value\": \"webservices003193@corehr.com\"}\n,\n{\"coreHRId\":\"003528\", \"value\": \"webservices003528@corehr.com\"}\n,\n{\"coreHRId\":\"gh1234\", \"value\": \"webservicesgh1234@corehr.com\"}\n,\n{\"coreHRId\":\"JG1234\", \"value\": \"webservicesJG1234@corehr.com\"}\n,\n{\"coreHRId\":\"002145\", \"value\": \"webservices002145@corehr.com\"}\n,\n{\"coreHRId\":\"002144\", \"value\": \"webservices002144@corehr.com\"}\n,\n{\"coreHRId\":\"002146\", \"value\": \"webservices002146@corehr.com\"}\n,\n{\"coreHRId\":\"000660\", \"value\": \"webservices000660@corehr.com\"}\n,\n{\"coreHRId\":\"002626\", \"value\": \"webservices002626@corehr.com\"}\n,\n{\"coreHRId\":\"000740\", \"value\": \"webservices000740@corehr.com\"}\n,\n{\"coreHRId\":\"000936\", \"value\": \"webservices000936@corehr.com\"}\n,\n{\"coreHRId\":\"000830\", \"value\": \"webservices000830@corehr.com\"}\n,\n{\"coreHRId\":\"000831\", \"value\": \"webservices000831@corehr.com\"}\n,\n{\"coreHRId\":\"000880\", \"value\": \"webservices000880@corehr.com\"}\n,\n{\"coreHRId\":\"1000491\", \"value\": \"webservices1000491@corehr.com\"}\n,\n{\"coreHRId\":\"000014\", \"value\": \"webservices000014@corehr.com\"}\n,\n{\"coreHRId\":\"000115\", \"value\": \"webservices000115@corehr.com\"}\n,\n{\"coreHRId\":\"000012\", \"value\": \"webservices000012@corehr.com\"}\n,\n{\"coreHRId\":\"000015\", \"value\": \"webservices000015@corehr.com\"}\n,\n{\"coreHRId\":\"000296\", \"value\": \"webservices000296@corehr.com\"}\n,\n{\"coreHRId\":\"000297\", \"value\": \"webservices000297@corehr.com\"}\n,\n{\"coreHRId\":\"000328\", \"value\": \"webservices000328@corehr.com\"}\n,\n{\"coreHRId\":\"000590\", \"value\": \"webservices000590@corehr.com\"}\n,\n{\"coreHRId\":\"000227\", \"value\": \"webservices000227@corehr.com\"}\n,\n{\"coreHRId\":\"001873\", \"value\": \"webservices001873@corehr.com\"}\n,\n{\"coreHRId\":\"000275\", \"value\": \"webservices000275@corehr.com\"}\n,\n{\"coreHRId\":\"CUT-001\", \"value\": \"webservicesCUT-001@corehr.com\"}\n,\n{\"coreHRId\":\"END-001\", \"value\": \"webservicesEND-001@corehr.com\"}\n,\n{\"coreHRId\":\"000286\", \"value\": \"webservices000286@corehr.com\"}\n,\n{\"coreHRId\":\"001987\", \"value\": \"webservices001987@corehr.com\"}\n,\n{\"coreHRId\":\"000180\", \"value\": \"webservices000180@corehr.com\"}\n,\n{\"coreHRId\":\"001993\", \"value\": \"webservices001993@corehr.com\"}\n,\n{\"coreHRId\":\"000598\", \"value\": \"webservices000598@corehr.com\"}\n,\n{\"coreHRId\":\"000601\", \"value\": \"webservices000601@corehr.com\"}\n,\n{\"coreHRId\":\"002037\", \"value\": \"webservices002037@corehr.com\"}\n,\n{\"coreHRId\":\"GH992\", \"value\": \"webservicesGH992@corehr.com\"}\n,\n{\"coreHRId\":\"000119\", \"value\": \"webservices000119@corehr.com\"}\n,\n{\"coreHRId\":\"000124\", \"value\": \"webservices000124@corehr.com\"}\n,\n{\"coreHRId\":\"000587\", \"value\": \"webservices000587@corehr.com\"}\n,\n{\"coreHRId\":\"000588\", \"value\": \"webservices000588@corehr.com\"}\n,\n{\"coreHRId\":\"000592\", \"value\": \"webservices000592@corehr.com\"}\n,\n{\"coreHRId\":\"000594\", \"value\": \"webservices000594@corehr.com\"}\n,\n{\"coreHRId\":\"002315\", \"value\": \"webservices002315@corehr.com\"}\n,\n{\"coreHRId\":\"000904\", \"value\": \"webservices000904@corehr.com\"}\n,\n{\"coreHRId\":\"002261\", \"value\": \"webservices002261@corehr.com\"}\n,\n{\"coreHRId\":\"002262\", \"value\": \"webservices002262@corehr.com\"}\n,\n{\"coreHRId\":\"CUT-012\", \"value\": \"webservicesCUT-012@corehr.com\"}\n,\n{\"coreHRId\":\"002248\", \"value\": \"webservices002248@corehr.com\"}\n,\n{\"coreHRId\":\"002249\", \"value\": \"webservices002249@corehr.com\"}\n,\n{\"coreHRId\":\"002250\", \"value\": \"webservices002250@corehr.com\"}\n,\n{\"coreHRId\":\"002367\", \"value\": \"webservices002367@corehr.com\"}\n,\n{\"coreHRId\":\"002368\", \"value\": \"webservices002368@corehr.com\"}\n,\n{\"coreHRId\":\"002369\", \"value\": \"webservices002369@corehr.com\"}\n,\n{\"coreHRId\":\"000826\", \"value\": \"webservices000826@corehr.com\"}\n,\n{\"coreHRId\":\"000897\", \"value\": \"webservices000897@corehr.com\"}\n,\n{\"coreHRId\":\"001128\", \"value\": \"webservices001128@corehr.com\"}\n,\n{\"coreHRId\":\"002629\", \"value\": \"webservices002629@corehr.com\"}\n,\n{\"coreHRId\":\"002697\", \"value\": \"webservices002697@corehr.com\"}\n,\n{\"coreHRId\":\"000934\", \"value\": \"webservices000934@corehr.com\"}\n,\n{\"coreHRId\":\"002624\", \"value\": \"webservices002624@corehr.com\"}\n,\n{\"coreHRId\":\"000290\", \"value\": \"webservices000290@corehr.com\"}\n,\n{\"coreHRId\":\"000837\", \"value\": \"webservices000837@corehr.com\"}\n,\n{\"coreHRId\":\"002444\", \"value\": \"webservices002444@corehr.com\"}\n,\n{\"coreHRId\":\"002685\", \"value\": \"webservices002685@corehr.com\"}\n,\n{\"coreHRId\":\"002227\", \"value\": \"webservices002227@corehr.com\"}\n,\n{\"coreHRId\":\"002169\", \"value\": \"webservices002169@corehr.com\"}\n,\n{\"coreHRId\":\"000849\", \"value\": \"webservices000849@corehr.com\"}\n,\n{\"coreHRId\":\"000808\", \"value\": \"webservices000808@corehr.com\"}\n,\n{\"coreHRId\":\"002091\", \"value\": \"webservices002091@corehr.com\"}\n,\n{\"coreHRId\":\"1010101010\", \"value\": \"webservices1010101010@corehr.com\"}\n,\n{\"coreHRId\":\"20202020\", \"value\": \"webservices20202020@corehr.com\"}\n,\n{\"coreHRId\":\"GM967\", \"value\": \"webservicesGM967@corehr.com\"}\n,\n{\"coreHRId\":\"GM969\", \"value\": \"webservicesGM969@corehr.com\"}\n,\n{\"coreHRId\":\"DB678\", \"value\": \"webservicesDB678@corehr.com\"}\n,\n{\"coreHRId\":\"002651\", \"value\": \"webservices002651@corehr.com\"}\n,\n{\"coreHRId\":\"gh23\", \"value\": \"webservicesgh23@corehr.com\"}\n,\n{\"coreHRId\":\"6633228\", \"value\": \"webservices6633228@corehr.com\"}\n,\n{\"coreHRId\":\"250\", \"value\": \"webservices250@corehr.com\"}\n,\n{\"coreHRId\":\"260\", \"value\": \"webservices260@corehr.com\"}\n,\n{\"coreHRId\":\"002705\", \"value\": \"webservices002705@corehr.com\"}\n,\n{\"coreHRId\":\"002103\", \"value\": \"webservices002103@corehr.com\"}\n,\n{\"coreHRId\":\"000950\", \"value\": \"webservices000950@corehr.com\"}\n,\n{\"coreHRId\":\"002756\", \"value\": \"webservices002756@corehr.com\"}\n,\n{\"coreHRId\":\"002652\", \"value\": \"webservices002652@corehr.com\"}\n,\n{\"coreHRId\":\"jg1234\", \"value\": \"webservicesjg1234@corehr.com\"}\n,\n{\"coreHRId\":\"DF5609\", \"value\": \"webservicesDF5609@corehr.com\"}\n,\n{\"coreHRId\":\"002289\", \"value\": \"webservices002289@corehr.com\"}\n,\n{\"coreHRId\":\"002727\", \"value\": \"webservices002727@corehr.com\"}\n,\n{\"coreHRId\":\"000179\", \"value\": \"webservices000179@corehr.com\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://localhost/ws/tenant/corehr/v1/contact/EMAIL/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"https://localhost/ws/tenant/corehr/v1/contact/EMAIL/?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"2a6a16b8-846a-4bea-afeb-e4d97236ac06"},{"name":"/contact/user/:person/","id":"c91a75ef-4ea7-4bfd-985a-843665e014c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/","description":"<p>This web service returns all contacts for the <code>person</code>. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"99e8c5d0-f3b8-42da-ac48-595adbbd873d","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:07:46 GMT","name":"Date","description":""},{"key":"ETag","value":"\"LhGBatBRxgaYUmBtTmvXvChPohvGeovn7W4uxHWhB4+QRQzr2hMGTwHgTVmNBSC5LBBs5caMKtNgcUPRq//F4g==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"EMAIL\", \"value\": \"darragh.michael.duffy@corehr.com\"}\n,\n{\"type\":\"MOBILE\", \"value\": \"+353 86 879394365\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/100/\"\n      }\n    ]\n}\n"},{"id":"a61d8d46-43ca-44d7-bcc4-ac2522a1f13b","name":"200 - No User","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/101/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:01:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"O9HyTNymWfaETgxd2+q0Z8TsEInPQq/SaTstLGNYuk0ULMG4HwXQCLduJMqhelPi2gIHQzv5MIpmEwSbtWPRpA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 0,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/101/\"\n      }\n    ]\n}\n"}],"_postman_id":"c91a75ef-4ea7-4bfd-985a-843665e014c7"},{"name":"/contact/user/:person/:type","id":"583f62ed-bb14-4df9-b84d-baf90743e12d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service returns a specific contact for an associated <code>person</code> and <code>type</code>. Refer to /contact/ for a complete list of contacts available.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"06a6f537-3395-4bab-8458-9ef52b1976da","name":"200 - Success - MOBILE","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/MOBILE"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:09:49 GMT","name":"Date","description":""},{"key":"ETag","value":"\"scMWmM8Da5PAtTmblpgR7OkNQV1BzUC3oAQTxAwklCyu4Ho/oxtaOFLKAD3gitBDb+yEJe9jVdbxDOQC/3ADBw==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"MOBILE\", \"value\": \"+353 86 879394365\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/100/MOBILE\"\n      }\n    ]\n}\n"},{"id":"cc0be6c3-4eca-46d2-a020-cea2e09c2fe5","name":"200 - No User","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/101/MOBILE"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:10:07 GMT","name":"Date","description":""},{"key":"ETag","value":"\"ay7m5ryBPHhMsOJ1KjoM5eH7l1NGTfBQtHtRz3pe6vAnViut/MxWuBYfXJAq8eIwVG9Mdw++NsyHV8rF1b+n9w==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 0,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/101/MOBILE\"\n      }\n    ]\n}\n"},{"id":"ded16333-5e0a-4cd7-ba78-956f9dd53b83","name":"200 - Success - EMAIL","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:09:26 GMT","name":"Date","description":""},{"key":"ETag","value":"\"Pc4vB09OL4Wki+1My6sbuyspVqD9UgcaBW5WwkJt7G+pjphL6HqjfPhY3QJdY9rBBhTQiZpy3yiq/0Ss9VN8Og==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"EMAIL\", \"value\": \"darragh.michael.duffy@corehr.com\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/100/EMAIL\"\n      }\n    ]\n}\n"}],"_postman_id":"583f62ed-bb14-4df9-b84d-baf90743e12d"},{"name":"/contact/user/:person/:type","id":"136efeb9-f7c5-415e-a31f-0e3791da6049","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"value\" :\"darragh.duffy@corehr.com\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service provides ability to create a new contact type for a user. The contact type should not already exist for this account. As previously noted a tenant may whitelist contact types. Refer to /contact/ for a complete list of contacts available.</p>\n<p>The value of the contact type must be provided in the request body as JSON e.g.</p>\n<blockquote>\n<p>{\"value\" :\"<a href=\"mailto:darragh.james.duffy@corehr.com\">darragh.james.duffy@corehr.com</a>\"}</p>\n</blockquote>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"13607f96-1ee2-467c-9100-f2e0b65e17cb","name":"400 - Bad Request - Error Code 006","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:41:20 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"006\",\"errorMessage\" :\"Validation failed. Existing contact for user, use PATCH to update\" }}\n"},{"id":"344e78a1-7889-4858-90f2-2e1272289d38","name":"400 - Bad Request - Error Code 001","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:42:45 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing\" }}\n"},{"id":"37d6cabc-0143-4977-a50e-c3ac3f4517a4","name":"201 - Success - Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:40:49 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"7f229075-2fe4-464c-9047-08443856c1e5","name":"404 - Not Found - Error Code 003","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/7788/EMAIL"},"status":"Not Found","code":404,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:43:31 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"003\",\"errorMessage\" :\"Validation failed. User account does not exist\" }}\n"},{"id":"dfee6d8d-9c16-43b8-866d-33345774102e","name":"400 - Bad Request - Error Code 005","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/PHONE"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:44:28 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"005\",\"errorMessage\" :\"Validation failed. Ensure contact type is allowed and has correct format\" }}\n"}],"_postman_id":"136efeb9-f7c5-415e-a31f-0e3791da6049"},{"name":"/contact/user/:person/:type","id":"b792d56e-e89d-42fc-a0d5-ebb903d05551","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"value\" :\"darragh.james.duffy@corehr.com\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service provides ability to patch / update a contact type for a user. The contact type <strong>must</strong> already exist for this account. As previously noted a tenant may whitelist contact types. Refer to /contact/ for a complete list of contacts available.</p>\n<p>The value of the contact type must be provided in the request body as JSON e.g.</p>\n<blockquote>\n<p>{\"value\" :\"<a href=\"mailto:darragh.james.duffy@corehr.com\">darragh.james.duffy@corehr.com</a>\"}</p>\n</blockquote>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"31faaeb0-8355-4b56-af0a-6f2e5d4d8032","name":"404 - Not Found - Error Code 003","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/7788/EMAIL"},"status":"Not Found","code":404,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:47:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"003\",\"errorMessage\" :\"Validation failed. User account does not exist\" }}\n"},{"id":"4e5d4c60-bea4-4476-b714-8a026eee0ae3","name":"400 - Bad Request - Error Code 001","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:46:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing\" }}\n"},{"id":"b6545e7d-bb7b-4fc3-9f61-669ac0d834c4","name":"404 - Not Found - Error Code 002","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/Phone"},"status":"Not Found","code":404,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:48:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Contact does not exist\" }}\n"},{"id":"d10b8742-89f8-49e3-81b1-1b3307c26bfe","name":"201- Success - Created","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:45:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"b792d56e-e89d-42fc-a0d5-ebb903d05551"},{"name":"/contact/user/:person/:type","id":"f2f05d0b-c47e-4057-a7d6-92debd1b23c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service provides ability to delete a contact from a users / employees profile. The contact type should already exist for this account. As previously noted a tenant may whitelist contact types. Refer to /contact/ for a complete list of contacts available. All contact types are case sensitive.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"83b58572-c6cb-47ce-a9e0-e127d2b8ab4d","name":"200 - Response OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 11 Nov 2016 14:46:13 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"f2f05d0b-c47e-4057-a7d6-92debd1b23c1"},{"name":"/contact/missing/:type","id":"bb201adb-6317-4656-8bf1-eb0010687568","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/missing/EMAIL","description":"<p>This web service provides ability to list user accounts with missing contact types. For example find all users with a missing <code>EMAIL</code> contact.</p>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","missing","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"afdd26f5-3a6b-4637-945e-5ac2603f9149","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/missing/EMAIL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:20:51 GMT","name":"Date","description":""},{"key":"ETag","value":"\"CxtmnGZgL6Fnj+S5DOnKKr5OPrcNWUF/Tp/4y80gZt+7x/+jHBqLIZD6vvrFUddPuXIu33rL+abP5e3np94DYA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"corehrid\":\"000003703\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003704\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003706\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003707\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003708\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003709\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003710\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003711\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003712\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003713\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003714\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003715\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003716\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003717\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003718\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003720\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003721\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003722\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003723\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000013\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000017\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000018\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000020\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000022\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000023\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000025\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000027\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000028\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000030\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000031\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000032\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000035\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000036\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000038\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000039\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000041\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000042\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000043\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000044\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000045\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000046\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000047\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000048\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000049\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000050\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000051\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000052\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000053\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000054\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000055\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000056\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000057\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000058\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000059\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000060\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000061\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000063\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000064\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000065\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000066\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000067\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000069\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000070\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000071\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000072\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000073\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000078\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000080\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000081\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000082\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000084\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000085\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000086\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000088\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000090\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000091\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000092\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000093\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000094\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000096\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000097\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000098\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000099\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000100\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"0001000\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000101\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000102\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000103\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000105\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000106\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000107\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000108\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000109\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000110\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000111\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000112\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000113\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000114\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000118\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000120\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/missing/EMAIL\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/missing/EMAIL?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"bb201adb-6317-4656-8bf1-eb0010687568"}],"id":"0e5bd16c-a50b-4673-acb1-201a90a98277","description":"<p>Contact module provides ability to interact with contact information associated with an account in PeopleXD. Different contact types exist and can be defined by a tenant e.g EMAIL, MOBILE etc. Not all tenants have the same list of contacts i.e. each tenant can define a whitelist of contacts exposed to web services.</p>\n<p><strong>Contraints, Limitations &amp; Mandatory</strong></p>\n<p>The contact module is case senstive, no process converts the contact type provided to upper or lower case. You must ensure you have set the case correctly, otherwise no data will be returned. Within PeopleXD contact types are typically uppercase.</p>\n<p>Person is mandatory, person represents users unique PeopleXD ID, this is often referenced as <code>personnel number</code></p>\n<p><strong>Optionally</strong></p>\n<p>Provide the type of contact e.g. <code>EMAIL</code> to get users associated email address.</p>\n<p>In cases where <code>type</code> is not specified all contact details are returned associated with employee.</p>\n<p>In Summary contact provides ability to</p>\n<p>*   Enumerate users contact information\n*   Obtain a specific contact type\n*   Update / Patch an existing contact type\n*   Assign a new contact type to a user</p>\n<p><strong>Error Codes</strong></p>\n<p>Note <code>type</code> is case senstive, no process converts the type provided into upper or lower case. You must ensure you have set the case correctly, otherwise no data will be returned.</p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<p>*   400 / 001 Mandatory fields are missing\n*   404 / 002 Validation failed. Contact does not exist\n*   404 / 003 Validation failed. User account does not exist\n*   400 / 005 Validation failed. Ensure contact type is allowed and has correct format\n*   400 / 006 Validation failed. Existing contact for user, use PATCH to update\n*   404 / 007 Contact type does not exist for user, consider using POST to create</p>\n<p><strong>Note</strong></p>\n<p>Where a contact exists within PeopleXD , this does not mean an account in PeopleXD has this contact assigned, e.g. not every account would have a mobile / cell number. Keep this in mind if you attempt to PATCH a contact type and server responds with a validation error.</p>\n","_postman_id":"0e5bd16c-a50b-4673-acb1-201a90a98277"},{"name":"Image","item":[{"name":"/image/user/","id":"343731cf-6d46-4277-98f7-75f0df4df427","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"authorization","value":"Bearer MZun_JVHkiiNm9SXgadz4A.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>This Web Service is used to retrieve (GET) the image profile for a CoreHR user on the system. Returns a binary image file.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$  curl -o ./local_copy_of_profile.jpeg -k --request GET --url https://devapi.corehr.com/ws/frame/corehr/v1/image/user/0890126 \\\n --header 'authorization: Bearer MZun_JVHkiiNm9SXgadz4A..'\n</code></pre>\n<p>This command will save the binary image of CoreHR User <code>0890126</code> into the file <code>local_copy_of_profile.jpeg</code>. If alternatively the person did not have an image on the system then the web service would return an http code 404 with and verbose errorCode of 1008. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4f83d31d-c5b4-4b9c-bf75-3e9014f9f12f","name":"Successfull GET","originalRequest":{"method":"GET","header":[{"key":"authorization","value":"Bearer MZun_JVHkiiNm9SXgadz4A.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"OK","code":200,"_postman_previewlanguage":"auto","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Disposition","value":"filename=\"0890126.GIFF\"; filename*=UTF-8''0890126.GIFF","name":"Content-Disposition","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"image/GIFF","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 16:37:26 GMT","name":"Date","description":""},{"key":"ETag","value":"\"j9mJrveZSvs7gkL4ts+ozuq3PRxaNSFSStvjAW2auCnxwS+XXia03jqP+qm1FXXgVzmdyy+4rIR6LGyDsgpwzA==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002dd3","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"GIF89a\u0000\u0002\u0000\u0002�\n\u0000~}}~}}~}}~}}~}}~}}~}}~}}~}}~}}������������������!�\u001aCreated with GIMP on a Mac\u0000!�\u0004\u0001\n\u0000\u000f\u0000,\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0002@\u0004���I��8�ͻ�`(�di�h��l��p,�tm�x��|����pH,\u001a�Ȥr�l:�ШtJ�Z�جv��z���xL.����z�n����|N���\u0016\u0001\"������  \u0001\b\u0002x���2\u0007��������\u0007���f�����������C\b������\b���'|������\u0001���������}���u���ʷ��h����Ӡ���Z����ݒ���O\u0002�������F��������>������:�����  �Q\u0000����\n\f\\\b\u0003�Ç�\u0018Jt\u0001��E@\u00133� w��Au�\u001aC��H��ȓ\u0014K�܆�%��+c�R���\fw2sn�g�'\u000e�@1�\u001c:\u0004ZP�ֈ*ur��ҧ<�\u0005R\u0001�i��A�ʱ��\u0016RW~e\u0011v\u0016ȭ���\u001bK�@\u0001\u0001\u0002�&)[\u000e�+�$\u0003�\u0015#��J�v���z+��\u0003\b\nťI�-�ć\u0007\u0013��4p�ɘ3w�\u001c\u0005��Ϡwr.\u0015���T{G/:ͺ�*��Q�uM��)Ʊ?t�ͻ��Թ)�\u001eN<U�  œ+\u0007�z��盹B�N=\u0012p���k��\u0007�K�����)�<w���??ξ�����˟O��������Ͽ���\u0000\u0006�(��\u0004\u0016h��\b&���\f6���\u0010F(��\u0014Vh��\u0018f���\u001cv��� �(�\u000f}\u0001�׈\u000fJ\u0006Z\u0000ޡ��n�]�bH*��He3������\b�g<\"\u0003��t\u0000\u0019�6C\u0012�F�G����b4�\u0010�`�(%@�Q9\u0005�WB$��M0��AO��Ԙ$�9\u0005�i�\u0019��lb��\u0014��  P�s:Q�����g\u0014b�IM�Z����|Y�\u0016�*�h\u001b����\u001dpF�G��*b��If\u001aN��\u0011�i\u001c{B�h\b\u0005�\u001a\u0014�\u001b}���@�:��-\b�)7\u0007������\n+\n����\u001d�\"��\u0007��tb\u0013%��櫙�Z:\u001d�\"F+�z�Rx��vv� ��B�`��F�ߡ��;������:Z����ȳKmkﾞxK\u0014�\u0000�\u0002\u0015�\u0001\u0017�ڿ\u0006'̌M�*�0'�2��Ē��0�\u0014G|��\u001cw��� �,��$�l��(����,����0�,��4�l��8����<����@\u0007-��D\u0017m��H'���L7���PG-��\u0005\\�\u000b\u0002�N]��\u0000���\"�j6��r\u0010�\u001a�dc��p^��\u0004�����\u0010k����9p�7\u000fuw�7\r\u0001���Â���\u001f��vx hϽ���S\u0000��rK=����7����d����g~4��|M�,S�^�Ӫ���٭wҸϱ��t��+�9��x\u001e4���\u000e�q�\u000f�ӻ\u001b߈�B�^��@+o.��O�����\r���']�P{':�R�8�_��0���\u001e�\u0007�������;��\u0015�/���k������\b���\u0000\n0\u0005V\u0003��\u000ex��-�n\f$\u0001\u001f\fh\u0001�P�\u0002\u0013��\u0004@�>\r8�0\u0010�@�.X4���\u0005a���V�<��L}�� \b��\u0014\u0017r\u0000��\u001a�\u0007ma�\u0011T���\u000eLx��%P\u001a$\\\u0003\u0010o���\u0011�\u001e=��\u0013�\u0011E7��\"Ml��\u0011-\u0012�<-q%��a\n�rE\u0015z��߻G\u0017E4�4:��\u0011��\u001b���\u0006��4\u001f�cm2���LH�}TV��\u0018����=�,�\u0019\u0007���������!�\u0002�H\u000eg�>��%����lRJ��$�سEQn'�>1%�F�IUj���@�+��Ɛ��RP������k!�����,�i��\u0010So59&���Ln�Q\u001c�l�sꈍRJS�\u0003��5�\u0005K\rz���\f�8�I�r����L�:���v������<�I�z����̧>���~���\u0000\r�@\u0007JЂ\u001a��\bM�B\u0017�І:��\u0010��D�'JъZ��\u0018ͨF7�юz�� \r�HGJҒ���(M�JW�Җ���0ՠ\\b�\u00052\n).4�A��!Ĝ� �\bY�OA`�|�ҥ�D\u000759\n��\b5���I--�Լ������>�ڔ��3���j?�J\u001c�����:(X�#�wr�8^\u001d�[���r�U�h��Q�I�+��m\u0006kg_��ר͕Gq��`\u001bUX���ZwM�aǔ���/�84�3��لmVs�����'Z�}/qn\u0014�\u001d��X�EVh�UXceVȴ52}�,��,9���N�8�d�|�;�֬��{mpE�I=�:-����nU�4WV���\u0015nv7  ZU\u001a\u0017f�\r�vy;�H^ה�u.ӐK:��,���-���:�6\r���nϴ\u000b5�b̽9#����0\u0000�춊-�|_6YuU��z�[x1�]��Wa�EZ������6r��߆��a���M%.ډ��b�]�\\\u0019�-�*��Ù��l20`\u001d�N\u001c\u001fIǪ\u0005�<᫞\u0005����\u00012\u0003Wܛ\u0016\u000b�ɮqr\u0004�쬂\"�7JV'�mcdrR9'R\u0016�y�\\�Ҿ�31�\u0000���\u0007j��)i��\u001f��4ح��1��\u0004L���\u001d�����  ����2�y\u0002[��$�I��\u0011��W��Oi\u0011f�\u0001��4�Ȳ^p���9+4�4>6\u001d�O\u0007��(K�#\u001a��H7\"W8p5 ��1(W�\u0002o�\u0003*\b�S\u001f�:g���+&�\u000b2S  ���uM����\u0011{Pʦ\u0013�'\u0011m(\u0005[\u0019�&�J��!S��\u0000��A\u0001d=\rT+�����  ��\u000eV{h�HRw\u001eН�[W\b���5\f���x�\u001bB��f\u0002�\u001d��\u000b�\u000f\u0004g��\u000f\u000e10=���\b�� �\u000f\u001f\u0019���\u0018��1\u000e\f����\u001c�ÿ��B��\u0001��\u00031r��|��@y`T\u000e�\u0013J��mr��q^��\u0006ќ��h�S�.\u0013\u0004m����8%��\u0013����L\u000fF���B�\"��U��u������\u000f�1s��g�>f��|���^�\u0007�m�����������8��\u000f�tz�=4��{ir\u0003w�#I5z7<B��\fś�3lw�-�N��K~�v�<\u001e��p���������\u0012y�O~���R\n�zI����\u001fJ�a�\u000f�7����I�q�\u000e�ǁ��o  �U���\u000f?�5)��g����\u001e%�w��Z\u0012}�������gt�}���\r��~�e/~���S��*g�v\u0000�\u000f�0=\u001d���O��G����Ͽ��������\u0000\u0018�\u00028�\u0004X�\u0006x�\b��\n��\f؀\u000e��\u0010\u0018�\u00128�\u0014X�\u0016x�\u0018��\u001a��\u001c؁\u001e�� \u0018�\"8�!\u0010\u0001\u0000;"}],"_postman_id":"343731cf-6d46-4277-98f7-75f0df4df427"},{"name":"/image/user/","id":"bc651680-fe36-4324-9f72-34f4af463e79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer E63-fevVwKH-CV4E_TScUA.."},{"key":"Content-Type","value":"image/png"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>This Web Service is used to insert a profile image for a CoreHR user on the system where none exists. The image is provided as binary data in the body of the request.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$ curl --request POST --url https://api.corehr.com/ws/tenant/corehr/v1/image/user/0890126 \\\n  --header \"Expect:\" \\\n  --header 'content-type:image/png' \\\n  --header 'authorization: Bearer E63-fevVwKH-CV4E_TScUA..' \\\n  --data-binary \"@./original_profile.png\" \n</code></pre>\n<p>The above cURL will insert the file <code>original_profile.png</code> as the binary image profile photo for the CoreHR User <code>0890126</code> where they do not have an profile image already configured on the system.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1a8a39b0-1fc7-4c24-a0a4-51993f500b3e","name":"New profile image added","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer N3Q1pq4ltsFO89nxd7jdSw.."},{"key":"Content-Type","value":"image/gif"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 15:58:03 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002d2b","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true,  \"person\": \"0890126\",\"mimeType\": \"image/gif\",\"fileFormat\": \"GIFF\",\"width\": \"512\",\"height\": \"512\",\"blobLength\": \"2734\",\"contentLength\":\"2734\"}}\n"},{"id":"ee0848fe-8058-4fa1-88c7-91581e424206","name":"No image included in POST","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer N3Q1pq4ltsFO89nxd7jdSw.."},{"key":"Content-Type","value":"image/gif"}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"Unsupported Media Type","code":415,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 16:02:22 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002d3d","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"1002\",\"errorMessage\" :\"An image file (gif, png, jpeg or tiff) of size greater than zero must be attached to this request.\" }}\n"}],"_postman_id":"bc651680-fe36-4324-9f72-34f4af463e79"},{"name":"/image/user/ ","id":"04095d96-eb91-4982-815b-2d949d1192d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer Fbbanqy44exS0Nat7Ep3oQ.."},{"key":"Content-Type","value":"image/jpeg"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>Web Service used to update the profile image for a CoreHR user on the system. This overwrites their current profile image with this new image. The image is provided as binary data in the body of the request.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$ curl --request PATCH --url https://api.corehr.com/ws/tenant/corehr/v1/image/user/0890126 \\\n  --header \"Expect:\" \\\n  --header 'content-type:image/jpeg' \\\n  --header 'authorization: Bearer Fbbanqy44exS0Nat7Ep3oQ..' \\\n  --data-binary \"@./new_profile.jpg\" \n</code></pre>\n<p>The above cURL will insert the file <code>new_profile.jpg</code> as the binary image profile photo for the CoreHR User <code>0890126</code> where they already have a profile image in CoreHR. This will over-write the existing profile image.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4f7125b4-b5f5-4248-9d16-07a66b59128b","name":"Unsupported image type PATCH attempt","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer JWsqzJY8n1LFVJRvqakNjQ.."},{"key":"Content-Type","value":"image/bmp"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"Unsupported Media Type","code":415,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 15:54:55 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002d1f","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"1003\",\"errorMessage\" :\"There was an issue with the supplied image being recognized as a supported image (gif, png, jpeg or tiff) please save as another supported format and re-try.\" }}\n"},{"id":"aefc72ea-fa3d-4e9f-872c-d9d31f607e9f","name":"Image update to GIF","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer seHDfknuDp9vu9UYFvsRRQ.."},{"key":"Content-Type","value":"image/gif"}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 15:38:37 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002d17","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true,  \"person\": \"0890126\",\"mimeType\": \"image/gif\",\"fileFormat\": \"GIFF\",\"width\": \"512\",\"height\": \"512\",\"blobLength\": \"2734\",\"contentLength\":\"2734\"}}\n"}],"_postman_id":"04095d96-eb91-4982-815b-2d949d1192d5"},{"name":"/image/user/","id":"9b91d911-7537-4f02-980c-3c88c6459ba2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"authorization","value":"Bearer MZun_JVHkiiNm9SXgadz4A.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>This Web Service is used to retrieve (GET) the image profile for a CoreHR user on the system. Returns a binary image file.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$  curl -o ./local_copy_of_profile.jpeg -k --request GET --url https://devapi.corehr.com/ws/frame/corehr/v1/image/user/0890126 \\\n --header 'authorization: Bearer MZun_JVHkiiNm9SXgadz4A..'\n</code></pre>\n<p>This command will save the binary image of CoreHR User <code>0890126</code> into the file <code>local_copy_of_profile.jpeg</code>. If alternatively the person did not have an image on the system then the web service would return an http code 404 with and verbose errorCode of 1008. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9b91d911-7537-4f02-980c-3c88c6459ba2"},{"name":"/image/user/ ","id":"99299138-7b55-44d6-86d4-6fff1caf589f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer Fbbanqy44exS0Nat7Ep3oQ.."},{"key":"Content-Type","value":"image/jpeg"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>Web Service used to update the profile image for a CoreHR user on the system. This overwrites their current profile image with this new image. The image is provided as binary data in the body of the request.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$ curl --request PATCH --url https://api.corehr.com/ws/tenant/corehr/v1/image/user/0890126 \\\n  --header \"Expect:\" \\\n  --header 'content-type:image/jpeg' \\\n  --header 'authorization: Bearer Fbbanqy44exS0Nat7Ep3oQ..' \\\n  --data-binary \"@./new_profile.jpg\" \n</code></pre>\n<p>The above cURL will insert the file <code>new_profile.jpg</code> as the binary image profile photo for the CoreHR User <code>0890126</code> where they already have a profile image in CoreHR. This will over-write the existing profile image.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"99299138-7b55-44d6-86d4-6fff1caf589f"},{"name":"/image/user/","id":"1a050099-025f-4ca4-8b22-5ef2ac779ba2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer E63-fevVwKH-CV4E_TScUA.."},{"key":"Content-Type","value":"image/png"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>This Web Service is used to insert a profile image for a CoreHR user on the system where none exists. The image is provided as binary data in the body of the request.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$ curl --request POST --url https://api.corehr.com/ws/tenant/corehr/v1/image/user/0890126 \\\n  --header \"Expect:\" \\\n  --header 'content-type:image/png' \\\n  --header 'authorization: Bearer E63-fevVwKH-CV4E_TScUA..' \\\n  --data-binary \"@./original_profile.png\" \n</code></pre>\n<p>The above cURL will insert the file <code>original_profile.png</code> as the binary image profile photo for the CoreHR User <code>0890126</code> where they do not have an profile image already configured on the system.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1a050099-025f-4ca4-8b22-5ef2ac779ba2"}],"id":"2ed72dd2-1cd6-4746-b27d-e039e6b6da1a","description":"<p>The image web service provides a means for uploading and viewing a PeopleXD user's profile picture.</p>\n<p><strong>Constraints, Limitations, Mandatory and Validation</strong></p>\n<p>Images uploaded can be a maximum of 500KB in size and must be provided in one of the following file formats:</p>\n<p>*   gif\n*   png\n*   jpeg\n*   tiff</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<p>*   415 / 1001 Invalid content type, only image/gif, image/png, image/jpeg or image/tiff allowed\n*   415 / 1002 n image file (gif, png, jpeg or tiff) of size greater than zero must be attached to this request.\n*   415 / 1003 There was an issue with the supplied image being recognized as a supported image (gif, png, jpeg or tiff) please save as another supported format and re-try.\n*   415 / 1004 The attached image exceeded the maximum allowed file size for an image.\n*   400 / 1005 The person supplied is not currently a valid person on the system. Please check the personnel details.\n*   400 / 1006 This person does not have an image on the system to update please change this request to POST to insert the image.\n*   400 / 1007 This person already has an image on the system to insert please change this request to PATCH to update the image.\n*   404 / 1008 This person does not currently have an image on the system to retrieve.</p>\n","_postman_id":"2ed72dd2-1cd6-4746-b27d-e039e6b6da1a"},{"name":"Provision","item":[{"name":"native","item":[{"name":"auth","item":[{"name":"/provision/native/auth/uuid/","id":"1075210e-62c0-4f22-9c0d-12382df38fb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\" : \"email\",\n  \"id\" : \"darragh@COREHR.com\"\n}"},"url":"{{url}}/ws/devws/corehr/v1/provision/native/auth/uuid","description":"<p>Use this service if you want to remove UUID's. The service can facility bulk UUID removal/purge and individual employee UUID.</p>\n<p>This is useful in cases where you have a need</p>\n<ul>\n<li>to remove an individuals UUID e.g. as part of a leaver process.</li>\n<li>to implement a policy requiring users to re-register, this would be similar to a password policy</li>\n</ul>\n<p><strong>Constraints and Limitations</strong></p>\n<ul>\n<li><code>type</code> must be one of the following:</li>\n</ul>\n<p>email</p>\n<p>ALL</p>\n<ul>\n<li><code>id</code></li>\n</ul>\n<p>must now be a valid type i.e. a valid Email address. In cases where ALL is used for type, the id should be left blank.</p>\n<p>If invalid ID provided nothing is deleted, i.e. if an invalid email address provided a status of 404 is returned. For valid email address a 200 is returned, indicating a success.</p>\n<p><strong>Parameters</strong></p>\n<ul>\n<li><code>type</code> this must be email, username, employeeNumber or all. \"ALL\" is reserved for bulk removal, this will remove all the registered UUID's, therefore use with caution</li>\n<li><code>id</code> this must be a valid email address</li>\n</ul>\n","urlObject":{"path":["ws","devws","corehr","v1","provision","native","auth","uuid"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1075210e-62c0-4f22-9c0d-12382df38fb0"}],"id":"415d2e84-12e7-4d19-b7a6-47034bbc23ae","description":"<p>CoreHR's native mobile application facilitates users registering once and then using biometric (e.g. touchID, FaceID)  or PIN to unlock the application i.e. the user does not require a username / password each time they login. However a user is required to unlock the app via biometric or PIN.</p>\n<p>A tenant may have a requirement to implement a different policy e.g. a user must authenticate via username / password at least once a day, week or month i.e. similar to password policies. CoreHR makes no assumptions for password policies, instead tenants can implement their own policies.</p>\n<p>In order to faciliate these requirments web services can be used. A tenant can generate a new app grant priviliges to this module and end point.</p>\n","_postman_id":"415d2e84-12e7-4d19-b7a6-47034bbc23ae"}],"id":"8069402f-cc56-41a0-bd0b-e34b818e07f0","description":"<p>The native module manages authentication and tokens for the CoreHR native application. These services cater for both SAML and non-SAML customers. All request will be handled via TLS.</p>\n<p>This service provides:</p>\n<ul>\n<li>Ability to remove / purge / reset Uses UUID's</li>\n</ul>\n","_postman_id":"8069402f-cc56-41a0-bd0b-e34b818e07f0"},{"name":"/provision/not/","id":"3bd2239a-32b8-4664-8cd8-fc5cc01a7460","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/","description":"<p>Find all non provisioned accounts. This endpoint will return all users not yet provisioned. </p>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","not",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1106d8a1-9488-4220-b2b1-214157d9ca64","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:25:18 GMT","name":"Date","description":""},{"key":"ETag","value":"\"1vMo5C9I8Z5vCzing5E3+mi3CqxEERGEkgaT63wiuazPEAyQbKuxHRi0r2O+2zXIJzD+SWQvh7AOH1pHdVRB2A==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"corehrId\":\"000003703\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003704\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003706\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003707\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003708\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003709\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003710\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003711\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003712\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003713\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003714\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003715\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003716\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003717\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003718\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003719\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003720\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003721\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003722\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003723\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000013\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000018\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000020\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000021\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000022\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000023\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000025\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000027\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000028\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000030\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000031\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000032\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000035\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000038\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000039\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000041\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000042\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000043\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000044\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000045\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000046\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000047\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000048\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000049\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000050\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000051\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000054\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000055\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000056\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000057\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000058\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000059\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000060\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000061\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000063\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000064\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000065\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000066\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000067\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000069\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000070\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000072\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000073\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000078\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000080\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000081\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000082\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000084\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000085\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000086\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000087\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000088\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000089\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000090\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000091\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000092\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000093\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000094\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000096\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000097\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000098\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000099\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000100\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"0001000\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000101\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000102\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000103\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000104\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000105\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000106\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000107\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000108\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000109\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000110\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000111\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000112\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000113\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000114\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000115\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000117\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/not/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/not/?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"3bd2239a-32b8-4664-8cd8-fc5cc01a7460"},{"name":"/provision/not/:days","id":"ce9c5344-f5f0-452e-b7ed-0248094246b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/10","description":"<p><strong>Optionally</strong> provide number of days, this service is used to offset users start date. Provides ability to determine accounts not yet provisioned in CoreHR for Core|Portal self service access. This service will include employees due to start in the future.</p>\n<p>Allowing the following scenario.</p>\n<ul>\n<li><p>obtain user accounts to be provisioned within the last X number of days, i.e. a start date occurring in the past.</p>\n</li>\n<li><p>obtain user accounts to be provisioned with a future start date, i.e. users starting in the future.</p>\n</li>\n</ul>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","not","10"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"876e140c-e425-4a0d-930f-984d7c3de189","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/10"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:30:42 GMT","name":"Date","description":""},{"key":"ETag","value":"\"cSKNv2WwIIh0T+eJ45YnqtVBjBFYZkks1p7Tqg85HR8CDOYFRrykHVYdfY25akVQyWUXfWirPpwnI4ZKalVYEA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"corehrId\":\"000613\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000614\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000615\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000623\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000624\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000660\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000662\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000673\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000674\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000676\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000677\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000679\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000754\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000755\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000756\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000757\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000770\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000771\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000794\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000795\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000796\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000801\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000806\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000825\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000830\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000831\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000883\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000893\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000894\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000897\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000898\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000899\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000900\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000919\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000921\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000934\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000944\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000958\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001027\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001105\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001141\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001330\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"002544\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"002556\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"003292\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"003484\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"003555\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"0208884\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"123\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"123-XYZ\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"609\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"610\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"611\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"612\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"616\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"617\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"618\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"619\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"620\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"621\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"622\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"625\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"638\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"639\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"640\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"642\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"643\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"644\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"645\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"650\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"651\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"652\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"667\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"671\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"675\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"678\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"680\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"694\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"C123456\", \"firstName\": \"DEAN\", \"lastName\": \"M\"}\n,\n{\"corehrId\":\"C123457\", \"firstName\": \"DOM\", \"lastName\": \"GRIFFIN\"}\n,\n{\"corehrId\":\"C464646\", \"firstName\": \"FDS\", \"lastName\": \"FSDF\"}\n,\n{\"corehrId\":\"C555555\", \"firstName\": \"STPEHEN\", \"lastName\": \"195\"}\n,\n{\"corehrId\":\"C876876\", \"firstName\": \"STEPHEN\", \"lastName\": \"NOW\"}\n,\n{\"corehrId\":\"C878778\", \"firstName\": \"SAFDA\", \"lastName\": \"WRWE\"}\n,\n{\"corehrId\":\"C888888\", \"firstName\": \"STEPHEN\", \"lastName\": \"EXTERNAL\"}\n,\n{\"corehrId\":\"C901111\", \"firstName\": \"STEPHEN\", \"lastName\": \"106\"}\n,\n{\"corehrId\":\"C989889\", \"firstName\": \"STEPOHEN\", \"lastName\": \"C\"}\n,\n{\"corehrId\":\"C989898\", \"firstName\": \"STEPHEN\", \"lastName\": \"185\"}\n,\n{\"corehrId\":\"DFLT-9\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"DYLAN1\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"TA0001\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"TA0002\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"TA0004\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 93,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/not/10\"\n      }\n    ]\n}\n"}],"_postman_id":"ce9c5344-f5f0-452e-b7ed-0248094246b0"},{"name":"/provision/user","id":"1f12e560-0f3f-491e-9101-8e100c099df6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"100\",\n  \"loginid\" : \"darragh.duffy@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user","description":"<p>Provisions a new CorePortal account;  on successful completion, users will have ability to access CoreHR's self service features via CorePortal. As noted in the introduction to the provisioning module, where an IDM or third party application understands CorePortal privileges this module will accept these privileges. Example provided below includes Users Privilege.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by the /provision/not/ web service.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<ul>\n<li>authType</li>\n</ul>\n<p>This is the authentication type for the employee, the value here should be either <code>inApplicationPassword</code> or <code>LDAP</code>. For all single sign on authenticated accounts use LDAP. For non single sign on account set this value to inApplicationPassword this then requires the password attribute to be set. Leaving this parameter null indicates to CoreHR that the user account should pick up the system default authentication type, this parameter can be found in CoreHR as 'authtype'.</p>\n<ul>\n<li>password</li>\n</ul>\n<p>This attribute is required when authType is  <code>inApplicationPassword</code>. The value here will be validated against the password policy in CoreHR.</p>\n<ul>\n<li>privileges</li>\n</ul>\n<p>An array, each array object contains a privilege.</p>\n<p><strong>Mandatory</strong></p>\n<ul>\n<li>corehrid</li>\n<li>loginid</li>\n<li>password (only when authType is inApplicationPassword)</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"053f3eec-632c-46fd-ba8a-126ae5c744d7","name":"201 - Created - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.smith@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 05 Oct 2016 16:35:54 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"1b54ceaa-9c4e-4b1c-90d2-52a01b9b9e31","name":"400 - Bad Request - ","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:36:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing\" }}\n"},{"id":"9b9676f7-b923-4c75-8107-d5fbfecd81ea","name":"400 - Bad Request - Validation Failed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.smith@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:38:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. If attempting to update use PATCH method\" }}\n"}],"_postman_id":"1f12e560-0f3f-491e-9101-8e100c099df6"},{"name":"/provision/user","id":"81ab924d-52b1-4c92-9e29-8209ddfb2bc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"developmentTeam\"},\n            {\"privilege\" : \"VPNGroup\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user","description":"<p>Provides ability to patch (amend) an existing account. Account must have previously been provisioned, this means corehrID must previously have been generated via <code>POST</code>. In general this service supports Single Sign On style accounts. </p>\n<p>It is possible to use this service with non SSO accounts, in such cases all parameters are mandatory including password and explcitly setting authType to <code>inApplicationPassword</code>. In cases where <code>authType</code> is not provided the account is assumed to be Single Sign On.</p>\n<p>The use cases for this web service includes </p>\n<ul>\n<li>loginId changing</li>\n</ul>\n<p>Where a user changes their loginId e.g. their name changes because of marriage, this web service faciliates this change of ID.</p>\n<ul>\n<li>privilege changing</li>\n</ul>\n<p>executing this web service will remove all current privileges and replace with the privileges array. It is therefore possible to use this web service to revoke all privileges for a user by sending a blank array of privileges.</p>\n<p>Example provided below changes both Login ID and privileges.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by the /provision/not/ web service.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<ul>\n<li>authType</li>\n</ul>\n<p>This is the authentication type for the employee, the value here should be either <code>inApplicationPassword</code> or <code>LDAP</code>. For all single sign on authenticated accounts use LDAP. For non single sign on account set this value to <code>inApplicationPassword</code> this then requires the password attribute to be set. In cases where this attribute is null, assumpetion is Single Sign On.</p>\n<ul>\n<li>password</li>\n</ul>\n<p>This attribute is required when authType is  <code>inApplicationPassword</code>. The value here will be validated against the password policy in CoreHR. </p>\n<ul>\n<li>privileges</li>\n</ul>\n<p>An array, each array object contains a privilege. If this is blank all privs are revoked.</p>\n<p><strong>Mandatory</strong></p>\n<ul>\n<li>corehrid</li>\n<li>loginid</li>\n<li>password (only when authType is inApplicationPassword)</li>\n</ul>\n<p>For Non SSO Accounts <strong>all</strong> parameters are mandatory. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ad614ee9-63d9-4c85-b2bb-dc726637e5b5","name":"201 - Created - Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"developmentTeam\"},\n            {\"privilege\" : \"VPNGroup\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}//provision/user"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 05 Oct 2016 16:42:46 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"81ab924d-52b1-4c92-9e29-8209ddfb2bc1"},{"name":"/provision/user/status/:id","id":"6788199b-72fa-416e-a1a4-249482969277","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100","description":"<p>Obtain user account status indicator; determining if an account is active or not. The parameter <code>id</code> can be users coreHRID or account username.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","status","100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"14cda846-5d41-423e-afc3-a2edffae7546","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:31:30 GMT","name":"Date","description":""},{"key":"ETag","value":"\"sGx4HzAXH89DhDNFtkOUMSQlXB866SC59AcS3OozZImkugcv3VxH0Fu28Ggg8u1MKe9Q0te3IaT/rcBLEIZxsA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"isAccountActive\":\"Yes\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/user/status/100\"\n      }\n    ]\n}\n"}],"_postman_id":"6788199b-72fa-416e-a1a4-249482969277"},{"name":"/provision/user/authtype/:id","id":"b6f3eabb-35cd-4d54-a292-50786fc2d627","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/authtype/100","description":"<p>Obtain user authentication type. Response indicates either <code>LDAP</code> or <code>inApplicationPassword</code>. </p>\n<p>The parameter <code>id</code> can be users coreHRID or loginID.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","authtype","100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ddb638dd-2429-41f9-b40c-9cee394e9149","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/authtype/100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 15 May 2017 14:44:26 GMT","name":"Date","description":""},{"key":"ETag","value":"\"mZYGBTCc1ovUVzZXDgF+YJsBaIu7WlfXQxZde8j3GjOesDyaERKI0JiZmy5tZzqcbhUZA5zogDX+iGxiFiz7JQ==-gzip\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"authType\":\"inApplicationPassword\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://localhost/ws/tenant/corehr/v1/provision/user/authtype/100\"\n      }\n    ]\n}\n"}],"_postman_id":"b6f3eabb-35cd-4d54-a292-50786fc2d627"},{"name":"/provision/user/status/:id","id":"6e650f08-b6d2-4cdf-b0f0-c4afedb1230c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"active\" : \"N\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100","description":"<p>Provides an ability to activate or deactivate an account. Setting an account to be deactive results in a user not being allowed sign into CoreHR self Service module CorePortal. This does not apply to SAML authentication. Credentials and access needs to be checked by the SAML IDP.</p>\n<p>When an account is created via <code>POST</code> <code>/provision/user</code> the account is assumed to be active. You do not need to execute this web services to activate an account once it has been created. However if you execute this web services and set active to N then you must execute this web services again to re-activate the account by setting active to Y.</p>\n<p>The id parameter can be either coreHRID or the username associated with the account. The Active parameter must be N or Y</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","status","100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"24945d7b-046d-4dab-ac65-01c00785d1fa","name":"400 - Validation Failed","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\"active\" : \"N\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/1001"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 22 Oct 2016 19:02:41 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"007\",\"errorMessage\" :\"Validation failed. Either user account does not exist or request data is invalid.\" }}\n"},{"id":"5ef85864-ca15-439f-b815-c64b7612cda1","name":"200 - Account Active","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 22 Oct 2016 18:04:52 GMT","name":"Date","description":""},{"key":"ETag","value":"\"L/idwKxNGWvlkQGQ4j3vC0+brkecdYNqpY2o9nJxaN5RiPktu/5d3OJrX6yJIWMlOB0ocscXHR0OVsUrx7Decw==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"{\"items\":[{\"isaccountactive\":\"Yes\"}],\"hasMore\":false,\"limit\":100,\"offset\":0,\"count\":1,\"links\":[{\"rel\":\"self\",\"href\":\"http://localhost:8585/ws/corehr/v1/provision/user/status/100\"},{\"rel\":\"describedby\",\"href\":\"http://localhost:8585/ws/corehr/metadata-catalog/v1/provision/user/status/item\"},{\"rel\":\"first\",\"href\":\"http://localhost:8585/ws/corehr/v1/provision/user/status/100\"}]}"},{"id":"8ec89643-257f-47cc-9f92-1efda2ad03c0","name":"201 - Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\"active\" : \"N\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 22 Oct 2016 19:02:16 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"6e650f08-b6d2-4cdf-b0f0-c4afedb1230c"},{"name":"/provision/user/privilege","id":"987b187d-f470-4dfa-a705-17e47ff971c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privilege\" : \"hrAdmin\"\n  }\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/privilege","description":"<p>Provisions a new privilege for a user. This service allows one new privilege to be assigned to the user account. In addition this service assumes an account has already been provisioned. Validation is performed on the account confirming existence. </p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by the /provision/not/ web service.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<ul>\n<li>privilege</li>\n</ul>\n<p>a new privilege for the user.</p>\n<p><strong>Special Usage Note</strong></p>\n<p>use one of the following combinations, <strong>do not</strong> use all three fields. If you do an error will be returned.</p>\n<ul>\n<li>corehrid and a privilege</li>\n</ul>\n<p>or</p>\n<ul>\n<li>loginid and a privilege</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","privilege"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"740b75bc-768e-4b95-a89a-d367250c4a23","name":"201 - Created - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"  {\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privilege\" : \"hrAdmin\"\n  }\n  "},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/privilege"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:47:41 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"d2462b7b-5513-47cb-9d93-f8a83416c680","name":"400 - Bad Request - Validation Failed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"  {\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privilege\" : \"hrAdmin\"\n  }\n  "},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/privilege"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:49:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"006\",\"errorMessage\" :\"Validation failed. Invalid fields used\" }}\n"}],"_postman_id":"987b187d-f470-4dfa-a705-17e47ff971c8"},{"name":"/provision/user/privilege?id","id":"89a30d85-3452-428c-a26b-3b8a13e46483","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege?id=","description":"<p><strong>CoreHR v25.0.7 required</strong></p>\n<p>This service will list all currently granted privileges associated with a user. </p>\n<p><strong>Parameter</strong></p>\n<p>id can be either the users  <code>loginid</code> or the users <code>corehrid</code> (personnelNumber).</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","provision","user","privilege"],"host":["{{url}}"],"query":[{"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"89a30d85-3452-428c-a26b-3b8a13e46483"},{"name":"/provision/user/privilege/revoke/all","id":"5b50edde-d150-4140-9620-8406dc899e8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"corehrid\" : \"5990404\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all","description":"<p><strong>CoreHR v25.0.7 required</strong></p>\n<p>Provides an ability to revoke <strong>all</strong> user privileges associated with the user account. </p>\n<p>A privilege here relates to all granted menu security items i.e. feature access and <strong>not</strong> access to a specific user, while access to the user is not revoked the privilege to use the feature is revoked. </p>\n<p>NB this revokes <strong>all</strong>. </p>\n<p>Other attributes associated with the user Account are not affected e.g. account will still exist, authentication type will remain as is, and password for non SSO accounts remain in place etc.</p>\n<p>This service assumes an account has already been provisioned. Validation is performed on the account confirming existence. This is a simple purge request, in cases where the user has no privileges, this service will not respond with an error, instead a successful response is returned.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by using the new filter services.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<p><strong>Special Usage Note</strong></p>\n<p>use one of the following combinations, <strong>do not</strong> use both fields. If you do an error will be returned.</p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>or</p>\n<ul>\n<li>loginid</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","provision","user","privilege","revoke","all"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"257321a9-0044-4f66-9a43-4e34855cd5df","name":"Invalid User ID","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"corehrid\" : \"XXXX\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 29 Mar 2018 07:48:13 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-000ed1ed","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"004\",\"errorMessage\" :\"Validation failed. User account does not exist\" }}\n"},{"id":"75847a43-6dc7-4a65-94d1-045c0d7894d8","name":"Successful Revoke All - LoginID","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"loginid\" : \"darragh.duffy@corehr.com\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 29 Mar 2018 08:03:00 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-000edc6d","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"927b2400-e8c7-497e-8187-0bd2ed81c043","name":"Invalid Request used both identifiers","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"corehrid\" : \"XXXX\", \"loginid\" : \"marco.donnino\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 29 Mar 2018 07:48:58 GMT","name":"Date","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-000ed268","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"006\",\"errorMessage\" :\"Validation failed. Invalid fields used\" }}\n"},{"id":"b8943b8b-9757-47a2-a8b8-7d384e9a8113","name":"Successful Revoke All - CoreHRID","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"corehrid\" : \"5990404\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 29 Mar 2018 07:45:42 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-000ed03f","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"5b50edde-d150-4140-9620-8406dc899e8a"}],"id":"136eb6ed-8acf-4f93-82ed-e907790c2738","description":"<p>Provisioning facility allowing Portal accounts to be provisioned. Portal is the self service module within PeopleXD . A employee may have a record in PeopleXD , this does not automatically suggest same employee has access to self service features via Portal. In order to access Portal a self service account is required. This module provides a web service mechanism to provision an employee.</p>\n<p>In Summary provisioning provides ability to</p>\n<p>*   Determine accounts yet to be provisioned\n*   Determine accounts yet to be provisioned within X number of days (including future start dates)\n*   Provision a new account\n*   Provision a new account with privileges\n*   Update existing accounts privileges\n*   Add additional privilege to an account\n*   Set authentication Type in cases where a mix of Single Sign On, SAML and inApplicationPasswords exist</p>\n<p><strong>Contraints, Limitations &amp; Mandatory</strong></p>\n<p>Accounts to be provisioned simply indicates accounts (employees) not yet provisioned. These accounts must satisfy following criteria</p>\n<p>*   Active Employee Record</p>\n<p>indicates employees record must not have a date left.</p>\n<p>Do not assume logic applies indicating certain categories of employees are allowed access and others are not allowed. No other conditions are applied. Additional attributes are possible to add to the response to help an IDM provider make this decision, PeopleXD will work with an IDM provider to best determine.</p>\n<p>Portal privileges can be assigned by the IDM using the privileges array (example below). Where an IDM can not determine privileges, this provisioning web service module integrates with the PeopleXD user profile matrix, and in cases where this matrix is not configured the fall back is all users are granted a default access profile typically \"coreportal_employee\".</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<p>*   400 / 001 Mandatory fields are missing\n*   400 / 002 Validation failed. If attempting to update use PATCH method\n*   400 / 003 Unexpected error, unable to provision account\n*   404 / 004 Validation failed. User account does not exist\n*   404 / 005 Validation failed. Account must first be provisioned, use POST method\n*   400 / 006 Validation failed. Invalid fields used\n*   400 / 007 Validation failed. Either user account does not exist or request data is invalid.\n*   400 / 008 Validation failed. Authtype must be either LDAP or inApplicationPassword. If choosing inApplicationPassword a password is required\n*   400 / 009 Validation failed. Supplied password has not passed password</p>\n","_postman_id":"136eb6ed-8acf-4f93-82ed-e907790c2738"},{"name":"Reference","item":[{"name":"/reference/","id":"23ef6767-6b6c-423e-92bc-43d9fed25afd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/","description":"<p>Get a list of registered / whitelisted referene types. Tenant has an ability to define reference types available for creating / updating. A tenant may not allow all references to be updated or created, this base URI provides the list of valid reference types. In cases where server returns validation errors, refer to this list to confirm the reference type is whitelisted.</p>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter. </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b9e04b41-fc2b-48f5-a86a-ccbe84812750","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:32:48 GMT","name":"Date","description":""},{"key":"ETag","value":"\"c+fK0tVaqmJ9e4v3iAcjrkNwTm99RSdRJXXfABfFEcdajSFUsEcGTUC0aJFyIg7ll32J/RQTlDd4wRl99bLqZQ==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"ACCI\", \"description\" : \"ACCIDENT CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACCSEV\", \"description\" : \"Accident Severity Code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACDIS1\", \"description\" : \"Academic Discipline 1\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACDIS2\", \"description\" : \"Academic Discipline 2\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACSTAT\", \"description\" : \"Academic Staff Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACT\", \"description\" : \"Activity\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACTINV\", \"description\" : \"Workplace Activity Involved\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACTION\", \"description\" : \"Action\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ADDTYP\", \"description\" : \"Address Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ADMBY\", \"description\" : \"Training Administered By\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"AGERNG\", \"description\" : \"Age Range\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ALLCOD\", \"description\" : \"Allowance Code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"APP\", \"description\" : \"Appointment code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"APPR\", \"description\" : \"APPRAISAL CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"APPTYP\", \"description\" : \"Approval Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"AREA\", \"description\" : \"Area\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ASCAT\", \"description\" : \"Academic Staff Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ASPOSE\", \"description\" : \"Aspose Document Type Mapping\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"AWRD\", \"description\" : \"Pdp Recognition Awards\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"BCKWRK\", \"description\" : \"Back At Work Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"BEN\", \"description\" : \"BENEFIT CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"BUSNAT\", \"description\" : \"Business Nature Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CARPRF\", \"description\" : \"Test\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CATG\", \"description\" : \"Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CERT\", \"description\" : \"CERTIFICATE TYPE\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFATTY\", \"description\" : \"Conference Attendance Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFLEVL\", \"description\" : \"Conference Level\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFORGB\", \"description\" : \"Conference Organising Body\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFSTAT\", \"description\" : \"Conference Status\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFTYPE\", \"description\" : \"Conference Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CITZ\", \"description\" : \"Citizenship Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CLINAC\", \"description\" : \"Clinical Access\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CNTCOD\", \"description\" : \"Country\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COMCAT\", \"description\" : \"Employee Company Categories\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CONTRT\", \"description\" : \"Contract Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CONTYP\", \"description\" : \"Contact Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COST\", \"description\" : \"Cost centre\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COSTCL\", \"description\" : \"Cost Class\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COUNTY\", \"description\" : \"County Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CPCRT\", \"description\" : \"Crew Plan Rule Day Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CPNR\", \"description\" : \"Crew Plan Night Allowance Rule Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CRSLVL\", \"description\" : \"Qualification Level\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CRTYP\", \"description\" : \"Clinical Research Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CRYTP\", \"description\" : \"Clinical Research Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CSOI\", \"description\" : \"CSO\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DAYRTN\", \"description\" : \"Days to Return Codes (OccInj)\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DEPN\", \"description\" : \"DEPENDENTS\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DEPT\", \"description\" : \"Department\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DESC\", \"description\" : \"Description\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DISABL\", \"description\" : \"Disability Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DIV\", \"description\" : \"Division\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DIVER\", \"description\" : \"Diversity Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DOCTYP\", \"description\" : \"Document Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EDUC\", \"description\" : \"EDUCATION/SKILL CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EMPL\", \"description\" : \"EMPLOYMENT HISTORY\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EMPS\", \"description\" : \"Employment status\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ETHNIC\", \"description\" : \"Ethnicity\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EVTCAT\", \"description\" : \"Event Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EXCDVL\", \"description\" : \"Core Expense Code Validation\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EXPS\", \"description\" : \"Expenses\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EXTPER\", \"description\" : \"External Person Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FAMSTS\", \"description\" : \"Family Status Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FBGRP\", \"description\" : \"Flexible Benefit Groups\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FBLNK\", \"description\" : \"Flexible Benefit Links\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FECBCK\", \"description\" : \"FEC Background\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FECCLA\", \"description\" : \"FEC Classification\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FECTYP\", \"description\" : \"FEC Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FEES\", \"description\" : \"Fees\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FEMRPT\", \"description\" : \"FEM Report Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FIRE\", \"description\" : \"FIRE ZONE CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FIRPNT\", \"description\" : \"Fire Point\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FORM\", \"description\" : \"Form Name\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FTEHRS\", \"description\" : \"FTE Hour Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FUNDAG\", \"description\" : \"Funding Agency Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FUNDSC\", \"description\" : \"Funding Source\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FUNTYP\", \"description\" : \"Funding Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"GNDRID\", \"description\" : \"Gender Identity\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"GRIPID\", \"description\" : \"Group ID\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"GRPID\", \"description\" : \"Group ID\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HAZZ\", \"description\" : \"HAZZARD CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HONCON\", \"description\" : \"Honorary Contract\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HOUR\", \"description\" : \"Hours\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSASRC\", \"description\" : \"Health Safety Action Source\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSCON\", \"description\" : \"Health Safety Contractor\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSNT\", \"description\" : \"Health Safety Notice Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSPRI\", \"description\" : \"Health Safety Action Priority\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSSRC\", \"description\" : \"Health Safety Source Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSSTA\", \"description\" : \"Health Safety Action Status\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ILINCN\", \"description\" : \"Industry Nature of Contact\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ILINCT\", \"description\" : \"Industry Categories\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ILOC\", \"description\" : \"Input location\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INCVIO\", \"description\" : \"Incidents of Violence Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INDCAT\", \"description\" : \"Employee Industry Categories\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INJBOD\", \"description\" : \"Injured BOdy Part Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INJCAU\", \"description\" : \"Cause of Injury Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"JOBCAT\", \"description\" : \"Job Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"JOBCOD\", \"description\" : \"Job Code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"JOBS\", \"description\" : \"Job code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"LENTIM\", \"description\" : \"Length of Time\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"LEVEL\", \"description\" : \"Level Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"23ef6767-6b6c-423e-92bc-43d9fed25afd"},{"name":"/reference/type/:atype","id":"1b2ce441-a481-49db-bfdc-66869b8a3232","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Returns a list of codes and descriptions for a reference type, a reference type could be <code>COST</code>, <code>DEPT</code> etc. Reference Types are typically upper case. As already noted reference types can be whitelisted by a tenant.</p>\n<p>For a full list of available reference types use /reference/</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"35492378-7820-412b-a790-2a6d31288529","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:35:18 GMT","name":"Date","description":""},{"key":"ETag","value":"\"ZInz0RdXlDlkFr0RxOWVt0Xe8DrUJnBC2+V/aZmUKdeVao7Vnt+tTjTY7a88qxAW/95HgOuX3zxv4wgdqSdatg==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"COST\", \"code\": \"1\", \"description\": \"Cost Centre Web Services 1\"}\n,\n{\"type\":\"COST\", \"code\": \"10\", \"description\": \"Cost Centre Web Services 10\"}\n,\n{\"type\":\"COST\", \"code\": \"100A\", \"description\": \"Cost Centre Web Services 100A\"}\n,\n{\"type\":\"COST\", \"code\": \"111\", \"description\": \"Cost Centre Web Services 111\"}\n,\n{\"type\":\"COST\", \"code\": \"123456789\", \"description\": \"Cost Centre Web Services 123456789\"}\n,\n{\"type\":\"COST\", \"code\": \"149\", \"description\": \"Cost Centre Web Services 149\"}\n,\n{\"type\":\"COST\", \"code\": \"159\", \"description\": \"Cost Centre Web Services 159\"}\n,\n{\"type\":\"COST\", \"code\": \"20\", \"description\": \"Cost Centre Web Services 20\"}\n,\n{\"type\":\"COST\", \"code\": \"200A\", \"description\": \"Cost Centre Web Services 200A\"}\n,\n{\"type\":\"COST\", \"code\": \"21\", \"description\": \"Cost Centre Web Services 21\"}\n,\n{\"type\":\"COST\", \"code\": \"22\", \"description\": \"Cost Centre Web Services 22\"}\n,\n{\"type\":\"COST\", \"code\": \"222\", \"description\": \"Cost Centre Web Services 222\"}\n,\n{\"type\":\"COST\", \"code\": \"23\", \"description\": \"Cost Centre Web Services 23\"}\n,\n{\"type\":\"COST\", \"code\": \"24\", \"description\": \"Cost Centre Web Services 24\"}\n,\n{\"type\":\"COST\", \"code\": \"25\", \"description\": \"Cost Centre Web Services 25\"}\n,\n{\"type\":\"COST\", \"code\": \"26\", \"description\": \"Cost Centre Web Services 26\"}\n,\n{\"type\":\"COST\", \"code\": \"27\", \"description\": \"Cost Centre Web Services 27\"}\n,\n{\"type\":\"COST\", \"code\": \"28\", \"description\": \"Cost Centre Web Services 28\"}\n,\n{\"type\":\"COST\", \"code\": \"29\", \"description\": \"Cost Centre Web Services 29\"}\n,\n{\"type\":\"COST\", \"code\": \"2908100\", \"description\": \"Cost Centre Web Services 2908100\"}\n,\n{\"type\":\"COST\", \"code\": \"30\", \"description\": \"Cost Centre Web Services 30\"}\n,\n{\"type\":\"COST\", \"code\": \"300A\", \"description\": \"Cost Centre Web Services 300A\"}\n,\n{\"type\":\"COST\", \"code\": \"356\", \"description\": \"Cost Centre Web Services 356\"}\n,\n{\"type\":\"COST\", \"code\": \"39\", \"description\": \"Cost Centre Web Services 39\"}\n,\n{\"type\":\"COST\", \"code\": \"40\", \"description\": \"Cost Centre Web Services 40\"}\n,\n{\"type\":\"COST\", \"code\": \"451\", \"description\": \"Cost Centre Web Services 451\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC\", \"description\": \"Cost Centre Web Services ABC\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC001\", \"description\": \"Cost Centre Web Services ABC001\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC0010\", \"description\": \"Cost Centre Web Services ABC0010\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC003\", \"description\": \"Cost Centre Web Services ABC003\"}\n,\n{\"type\":\"COST\", \"code\": \"J12345\", \"description\": \"Cost Centre Web Services J12345\"}\n,\n{\"type\":\"COST\", \"code\": \"JKL333\", \"description\": \"Cost Centre Web Services JKL333\"}\n,\n{\"type\":\"COST\", \"code\": \"PROD\", \"description\": \"Cost Centre Web Services PROD\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 33,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/type/COST/\"\n      }\n    ]\n}\n"}],"_postman_id":"1b2ce441-a481-49db-bfdc-66869b8a3232"},{"name":"/reference/type/:atype/:code?","id":"1613fdac-7091-402a-95be-884ac4a438ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/7001","description":"<p>Returns an individual reference description associated with a reference type and code. A reference type could be <code>COST</code>, <code>DEPT</code> etc. Reference Types are typically upper case. As already noted reference types can be whitelisted by a tenant.</p>\n<p>For a full list of available reference types use /reference/</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference","type","DEPT","7001"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8d891e38-604f-4c4a-be6f-0591a0862561","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/10"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:35:39 GMT","name":"Date","description":""},{"key":"ETag","value":"\"Q3jVQU2iTQ/v0g70PelGZKl9U6wG1LV/Ns7vRxFBtB7MUyXAAgUcC+nxdBtW/mQMcQPoQhSS1jjRtrAA4a7uzQ==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"COST\", \"code\": \"10\", \"description\": \"Cost Centre Web Services 10\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/type/COST/10\"\n      }\n    ]\n}\n"}],"_postman_id":"1613fdac-7091-402a-95be-884ac4a438ce"},{"name":"/reference/type/:atype","id":"ff4db3d6-ed19-4d18-875d-787e81dfee86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Department One\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Add reference data based on the reference type, code and description. The reference type is expected in the URL, while the request body should include <code>code</code> and <code>description</code></p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f94d0e34-20d6-4039-8414-78f42da609cc","name":"201 - Created - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Cost Centre One\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 04 Oct 2016 19:35:00 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"ff4db3d6-ed19-4d18-875d-787e81dfee86"},{"name":"/reference/type/:atype","id":"7801ab16-fc29-445e-b77a-01c22733bb1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Department One Data Updated\",\n\"active\" : \"Y\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Ability to update a description associated with an existing reference code / type combination. The reference type is expected in the URL, while the request body should include <code>code</code> and <code>description</code></p>\n<p>It is possible to also provide an <code>active</code> parameter, this parameter can also be provided via the request body must be either Y or N.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0acd4930-b455-4bf2-b642-dd1951984373","name":"Inactive ","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Department One Data Updated\",\n\"active\" : \"N\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS","name":"Access-Control-Allow-Methods-Age","description":"Custom header"},{"key":"Access-Control-Max-Age","value":"600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Sep 2018 13:38:12 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"b0b00ddc-b960-4e37-b4b3-3d5446e9ff5e-000b4a10","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"d2ec46de-e121-499d-8dbf-94b82f99f53b","name":"201 - Created (Updated) - Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Cost Centre One Data Updated\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 04 Oct 2016 19:36:31 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"d320576b-95a3-42c0-8c94-65ab6e645e95","name":"Active","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Department One Data Updated\",\n\"active\" : \"Y\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS","name":"Access-Control-Allow-Methods-Age","description":"Custom header"},{"key":"Access-Control-Max-Age","value":"600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Sep 2018 13:38:12 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"b0b00ddc-b960-4e37-b4b3-3d5446e9ff5e-000b4a10","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"7801ab16-fc29-445e-b77a-01c22733bb1b"},{"name":"/reference/type/:atype","id":"f6e6ec08-2ba5-47b8-863f-c3e3fb13cf1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"value\" : \"1\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Delete reference data based on the reference type, code. The reference type is expected in the URL, while the request body should include <code>code</code>.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2d907392-66d8-40a9-a015-b22fe3f24875","name":"200 - Success OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 11 Nov 2016 16:32:50 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"f6e6ec08-2ba5-47b8-863f-c3e3fb13cf1e"}],"id":"f88629c1-368a-46d0-8df7-035db27157e9","description":"<p>Reference module provides ability to view, add and update reference related items for PeopleXD e.g. Cost Centre, Department, Projects etc.</p>\n<p><strong>Contraints, Limitations &amp; Mandatory</strong></p>\n<p>The reference module is case senstive, no process converts the type provided into upper or lower case. You must ensure you have set the case correctly, otherwise no data will be returned. Within PeopleXD reference types are typically uppercase.</p>\n<p>In most cases a type is mandatory. Following are some examples, for more detail review each URI and method below.</p>\n<p>For endpoint <code>/reference/type/aType/</code> aType is mandatory e.g. <code>/reference/type/COST/</code>. Another example <code>/reference/type/COST/1</code> will return Reference Type COST where the cost centre code is 1. For <code>/reference/types/</code> no type is required.</p>\n<p>Further information per method below.</p>\n<p><strong>Limitations</strong></p>\n<p>Description max length - 40 Characters</p>\n<p>Code max length - 13 Characters</p>\n<p><code>WRKGRP</code> only GETS are supported, POST, PATCH and DELETE are not supported.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<p>*   400 / 001 Mandatory fields are missing\n*   400 / 002 Validation failed. If attempting to update use PATCH method\n*   404 / 003 Validation failed. Reference type does not exist\n*   400 / 004 Validation failed. Sanitization of data failed, ensure field lengths are correct\n*   400 / 005 Validation failed. Reference code does not exist. If attempting to add use POST method.\n*   400 / 006 Validation failed. Validation failed. Reference type and code do not exist.\n*   400 / 007 Validation failed. Validation failed. Active Indicator can only be Y or N.</p>\n<p>Defined below are the endpoints, sample requests and responses.</p>\n","event":[{"listen":"prerequest","script":{"id":"24a38dcd-3a5c-4007-af8b-870fd7787a74","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4f2616ab-5e01-4a38-a242-11ddd9b933e5","type":"text/javascript","exec":[""]}}],"_postman_id":"f88629c1-368a-46d0-8df7-035db27157e9"},{"name":"User Defined Fields","item":[{"name":"/udf/user/:udf_type","id":"96a407cc-b3dd-476f-9ff8-e445c614d39e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer 9m1zDcUnJrxvkqTfEsTOfQ.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"\",\n    \"text2\": \"\",\n    \"text3\": \"\",\n    \"text4\": \"\",\n    \"text5\": \"\",\n    \"text6\": \"\",\n    \"text7\": \"\",\n    \"text8\": \"\",\n    \"text9\": \"\",\n    \"text10\": \"\",\n    \"text11\": \"\",\n    \"text12\": \"\",\n    \"date1\": \"14-AUG-2017\",\n    \"date2\": \"\",\n    \"user_code\": \"EE\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20","description":"<p><strong>Creating a new UDF Type Record for a user</strong></p>\n<p>Adding a new User record for a UDF Type requires the following fields. UDF Type code is mandatory and specified as part of the URL.</p>\n<p>The rest of the fields are provided as JSON in the request body. Un-used/empty fields should be left blank. Successful inserts results in a JSON Response object with success value of true. Also included in the JSON Response is the ws_id which is the unique Web Service ID that can be used to identify this specific record.</p>\n<p>Fields are sent in the JSON are as in the table below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personnel_no</td>\n<td>Character</td>\n<td>10</td>\n<td>Yes ¹</td>\n</tr>\n<tr>\n<td>appointment_id</td>\n<td>Character</td>\n<td>20</td>\n<td>Yes ¹</td>\n</tr>\n<tr>\n<td>user_code</td>\n<td>Character</td>\n<td>6</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date1</td>\n<td>Date ²</td>\n<td>11</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date2</td>\n<td>Date ²</td>\n<td>11</td>\n<td>No</td>\n</tr>\n<tr>\n<td>text1,text2...text12 ³</td>\n<td>Defined by type</td>\n<td>4000 ¬</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><p>¹ Either <code>personnel_no</code> OR <code>appointment_id</code> are mandatory.</p>\n<p>² Date1 and Date2 are input in the format DD-MON-RRRR.</p>\n<p>³ Text1 to Text12 must ALWAYS be provided. If the field is not being used for the UDF Type use a blank value string e.g. \"\".</p>\n<p>¬ Text1 to Text12 field requirements are defined by the UDF Type configuration in CoreHR. Text fields can be marked as mandatory/optional and of specific data types including: </p>\n<ol>\n<li>Text - to a maximum of 4000 characters long.</li>\n<li>Number - number values only</li>\n<li>Date required to be in the format DD-MON-YYYY.</li>\n<li>List - Based on the allowed list for the UDF Type as configured in CoreHR.</li>\n</ol>\n<p><strong>Response Object</strong>\nSample responses are shown to the right under different conditions.</p>\n<p>A response objects is always provided and within success will either be <code>true</code>. In which case as ws_id (unique web service identifier that allows us to refer back to this record). </p>\n<p>Alternatively, the success value can be <code>false</code> if this is the cause an errorCode and errorMessage are provided. Additional error details - if the error pertains to a specific value in the body - is provided in the validationError object. This will contain one or more JSON objects relating to each specific error. The param_name will contain the field the validation error relates to the field_name is the label of the field used in CoreHR and the <code>message</code> will contain a detailed explanation of what validation is failing.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code. These are shared by all these UDF endpoints and explained in the Error Codes section at the start of the UDF documentation.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","udf","user","AB20"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3c4aab90-bb34-4477-9511-27d09b0c8683","name":"1. Successful date fields example","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer _QsnRadImZrbh8w9_4B6UA.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"1409000\",\n    \"appointment_id\": \"\",\n    \"text1\": \"27-JAN-2017\",\n    \"text2\": \"24-FEB-2017\",\n    \"text3\": \"31-MAR-2017\",\n    \"text4\": \"28-APR-2017\",\n    \"text5\": \"27-MAY-2017\",\n    \"text6\": \"30-JUN-2017\",\n    \"text7\": \"28-JUL-2017\",\n    \"text8\": \"25-AUG-2017\",\n    \"text9\": \"29-SEP-2017\",\n    \"text10\": \"28-OCT-2017\",\n    \"text11\": \"24-NOV-2017\",\n    \"text12\": \"29-DEC-2017\",\n    \"date1\": \"\",\n    \"date2\": \"\",\n    \"user_code\": \"\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"Keep-Alive","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Fri, 11 Aug 2017 16:05:48 GMT","description":""},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"41431680-ec3d-4690-8100-5e5ec94a3c78-00002f6a","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true, \"ws_id\":\"2017081171563091\"}}\n"},{"id":"6ef19f31-00b0-469a-8cc3-41d2ade461ac","name":"3. Sanatization Fail Example","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer _QsnRadImZrbh8w9_4B6UA.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"1409000\",\n    \"appointment_id\": \"\",\n    \"text1\": \"27\",\n    \"text2\": \"24\",\n    \"text3\": \"31\",\n    \"text4\": \"28\",\n    \"text5\": \"27\",\n    \"text6\": \"30\",\n    \"text7\": \"28\",\n    \"text8\": \"25\",\n    \"text9\": \"29\",\n    \"text10\": \"28\",\n    \"text11\": \"24\",\n    \"text12\": \"29\",\n    \"date1\": \"\",\n    \"date2\": \"\",\n    \"user_code\": \"\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"close","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Fri, 11 Aug 2017 16:16:01 GMT","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"41431680-ec3d-4690-8100-5e5ec94a3c78-00002f6f","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[],"responseTime":null,"body":"\n\n      { \"Response\": {\n         \"success\"         : false,\n         \"errorCode\"       : \"998\",\n         \"errorMessage\"    : \"UDF Type validation errors. Review validationError object for more details of data errors for this UDF type.\",\n         \"validationError\"   : [\n\n  {\n    \"param_name\"   : \"text1\",\n    \"field_name\"   : \"COREHR 7600\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text2\",\n    \"field_name\"   : \"text2\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text3\",\n    \"field_name\"   : \"text3\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text4\",\n    \"field_name\"   : \"text4\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text5\",\n    \"field_name\"   : \"text5\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text6\",\n    \"field_name\"   : \"text6\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text7\",\n    \"field_name\"   : \"text7\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text8\",\n    \"field_name\"   : \"text8\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text9\",\n    \"field_name\"   : \"text9\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text10\",\n    \"field_name\"   : \"text10\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text11\",\n    \"field_name\"   : \"text11\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text12\",\n    \"field_name\"   : \"text12\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n]\n      }\n   }\n"},{"id":"bbb6a402-2c8e-46da-9429-f1c8ec81baca","name":"2. Validation Fail","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer _QsnRadImZrbh8w9_4B6UA.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"1409000\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"27-JAN-2017\",\n    \"text2\": \"24-FEB-2017\",\n    \"text3\": \"31-MAR-2017\",\n    \"text4\": \"28-APR-2017\",\n    \"text5\": \"27-MAY-2017\",\n    \"text6\": \"30-JUN-2017\",\n    \"text7\": \"28-JUL-2017\",\n    \"text8\": \"25-AUG-2017\",\n    \"text9\": \"29-SEP-2017\",\n    \"text10\": \"28-OCT-2017\",\n    \"text11\": \"24-NOV-2017\",\n    \"text12\": \"29-DEC-2017\",\n    \"date1\": \"\",\n    \"date2\": \"\",\n    \"user_code\": \"\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"Keep-Alive","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Fri, 11 Aug 2017 16:14:20 GMT","description":""},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"41431680-ec3d-4690-8100-5e5ec94a3c78-00002f6d","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Provide either a personnel number or an Appointment ID. It is not possible to use both.\" }}\n"},{"id":"e833f078-38e5-4a20-b46c-bfd9465415b9","name":"4. User Code example to use pre-defined data in all text fields","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer 9m1zDcUnJrxvkqTfEsTOfQ.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"\",\n    \"text2\": \"\",\n    \"text3\": \"\",\n    \"text4\": \"\",\n    \"text5\": \"\",\n    \"text6\": \"\",\n    \"text7\": \"\",\n    \"text8\": \"\",\n    \"text9\": \"\",\n    \"text10\": \"\",\n    \"text11\": \"\",\n    \"text12\": \"\",\n    \"date1\": \"14-AUG-2017\",\n    \"date2\": \"\",\n    \"user_code\": \"EE\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"Keep-Alive","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Mon, 14 Aug 2017 12:10:39 GMT","description":""},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"f38c5093-1095-4e7e-be35-0074f4d4eb81-0000002c","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"ZtfR7qZUUleahU","key":"__zlcmid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"GA1.2.345263352.1459269949","key":"_ga"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"154209639.534d7e038246e171d1efdb1f4bc83822.1459269952833.1484837065141.1494406860445.32","key":"__hstc"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"534d7e038246e171d1efdb1f4bc83822","key":"hubspotutk"}],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true, \"ws_id\":\"2017081471563097\"}}\n"}],"_postman_id":"96a407cc-b3dd-476f-9ff8-e445c614d39e"},{"name":"/udf/user/:udf_type","id":"9f98ed76-18d6-4fed-91e6-e5cea715e4e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer 9m1zDcUnJrxvkqTfEsTOfQ.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"\",\n    \"text2\": \"\",\n    \"text3\": \"\",\n    \"text4\": \"\",\n    \"text5\": \"\",\n    \"text6\": \"\",\n    \"text7\": \"\",\n    \"text8\": \"\",\n    \"text9\": \"\",\n    \"text10\": \"\",\n    \"text11\": \"\",\n    \"text12\": \"\",\n    \"date1\": \"14-AUG-2017\",\n    \"date2\": \"\",\n    \"user_code\": \"EE\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20","description":"<p><strong>Updating existing UDF Type Record for a user</strong></p>\n<p>Updating a user record for a UDF Type uses the personnel_no/appoinment_id, date1, date2 and the udf_type to determine if the record is an update. i.e. If there is an existing record(s) with the same person/appointment and date1 and date2 then it is an update and the existing record(s) will be patched (updated) to the new values provided in the JSON code. UDF Type is of course mandatory and specified as part of the URL.</p>\n<p>The rest of the fields are provided as JSON in the request body. Un-used/empty fields should be left blank. Successful updates result in a JSON Response object with success value of true.</p>\n<p>Fields are sent in the JSON are as in the table below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personnel_no</td>\n<td>Character</td>\n<td>10</td>\n<td>Yes ¹</td>\n</tr>\n<tr>\n<td>appointment_id</td>\n<td>Character</td>\n<td>20</td>\n<td>Yes ¹</td>\n</tr>\n<tr>\n<td>user_code</td>\n<td>Character</td>\n<td>6</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date1</td>\n<td>Date ²</td>\n<td>11</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date2</td>\n<td>Date ²</td>\n<td>11</td>\n<td>No</td>\n</tr>\n<tr>\n<td>text1,text2...text12 ³</td>\n<td>Defined by type</td>\n<td>4000 ¬</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><p>¹ Either <code>personnel_no</code> OR <code>appointment_id</code> are mandatory.</p>\n<p>² Date1 and Date2 are input in the format DD-MON-RRRR.</p>\n<p>³ Text1 to Text12 must ALWAYS be provided. If the field is not being used for the UDF Type use a blank value string e.g. \"\".</p>\n<p>¬ Text1 to Text12 field requirements are defined by the UDF Type configuration in CoreHR. Text fields can be marked as mandatory/optional and of specific data types including: </p>\n<ol>\n<li>Text - to a maximum of 4000 characters long.</li>\n<li>Number - number values only</li>\n<li>Date required to be in the format DD-MON-YYYY.</li>\n<li>List - Based on the allowed list for the UDF Type as configured in CoreHR.</li>\n</ol>\n<p><strong>Response Object</strong>\nSample responses are shown to the right under different conditions.</p>\n<p>A response objects is always provided and within success will either be <code>true</code>. In which case as ws_id (unique web service identifier that allows us to refer back to this record). </p>\n<p>Alternatively, the success value can be <code>false</code> if this is the cause an errorCode and errorMessage are provided. Additional error details - if the error pertains to a specific value in the body - is provided in the validationError object. This will contain one or more JSON objects relating to each specific error. The param_name will contain the field the validation error relates to the field_name is the label of the field used in CoreHR and the <code>message</code> will contain a detailed explanation of what validation is failing.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code. These are shared by all these UDF endpoints and explained in the Error Codes section at the start of the UDF documentation.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","udf","user","AB20"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"09b29ee8-b9a1-434a-8914-db219b968224","name":"Successful update using User Code","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Bearer 0nsn4KtX5QlKF4_4q0gNcw.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"\",\n    \"text2\": \"\",\n    \"text3\": \"\",\n    \"text4\": \"\",\n    \"text5\": \"\",\n    \"text6\": \"\",\n    \"text7\": \"\",\n    \"text8\": \"\",\n    \"text9\": \"\",\n    \"text10\": \"\",\n    \"text11\": \"\",\n    \"text12\": \"\",\n    \"date1\": \"14-AUG-2017\",\n    \"date2\": \"\",\n    \"user_code\": \"EE\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"Keep-Alive","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Thu, 17 Aug 2017 15:13:29 GMT","description":""},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"e491ed87-4cb1-4174-9763-76bbe5667c2b-0000009c","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"ZtfR7qZUUleahU","key":"__zlcmid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"GA1.2.345263352.1459269949","key":"_ga"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"154209639.534d7e038246e171d1efdb1f4bc83822.1459269952833.1484837065141.1494406860445.32","key":"__hstc"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"534d7e038246e171d1efdb1f4bc83822","key":"hubspotutk"}],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"9f98ed76-18d6-4fed-91e6-e5cea715e4e2"},{"name":"/udf/user/","id":"566825e5-5581-484d-9aa5-12563cac555a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}]},"isInherited":false},"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/udf/user/?udf_type=USER&person=7202000006","description":"<p>Web service to get the list of User Defined Field (UDF) records for a particular UDF Type. Mandatory search criteria include:</p>\n<ul>\n<li>udf_type - The UDF code.</li>\n<li>person - The CoreHR Personnel Number for whom records are to be retrieved.\nOptional criteria include:</li>\n<li>appointment_id - To search for details relating to a specific appointment.</li>\n<li>date1 - Commonly used as the Date From field.</li>\n<li>date2 - Commonly used as the Date To field.</li>\n</ul>\n<p>A get request can return many records depending on the criteria poveded and consequently the <code>ws_id</code> value pair is the unique identifier that can be used with other web services to update this specific record.</p>\n<p>Error Codes are documented at the start of the UDF documentation.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","udf","user",""],"host":["{{url}}"],"query":[{"key":"udf_type","value":"USER"},{"key":"person","value":"7202000006"}],"variable":[]}},"response":[{"id":"6cee0780-db43-4536-b016-66f5da3064ad","name":"Missing Person parameter","originalRequest":{"method":"GET","header":[{"key":"Authorization","name":"Authorization","value":"Bearer _E4Pl9nxSkcJFbic2dxD8w.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"connection","key":"connection","value":"close","description":"Options that are desired for the connection"},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":"Custom header"},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":"The mime type of this content"},{"name":"date","key":"date","value":"Thu, 17 Aug 2017 11:54:53 GMT","description":"The date and time that the message was sent"},{"name":"etag","key":"etag","value":"\"hu/EykO6P9EsmiOfI5hQk+9yi5r2AxYFcmeD8ppL8ujowI4GmtSfFHQi+xgzudcWmF0pxNbJHLHEWwepH2J8/A==\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"server","key":"server","value":"Apache","description":"A name for the server"},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"e491ed87-4cb1-4174-9763-76bbe5667c2b-00000044","description":"Custom header"},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":"Custom header"},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"ZtfR7qZUUleahU","key":"__zlcmid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"GA1.2.345263352.1459269949","key":"_ga"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"154209639.534d7e038246e171d1efdb1f4bc83822.1459269952833.1484837065141.1494406860445.32","key":"__hstc"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"534d7e038246e171d1efdb1f4bc83822","key":"hubspotutk"}],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"013\",\"errorMessage\" :\"Person is a mandatory field.\" }}\n"},{"id":"6f50e776-e067-4f03-b70e-e40dd03c653f","name":"Search using all citeria","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Bearer 8N7tv3Kwt2W5_i-B72dWew.."}],"url":{"raw":"{{url}}/ws/{{schema}}/{{version}}/udf/user/?udf_type=AB20&person=1409000&appointment_id=TS0011-2594&date1=01-JAN-2017&date2=31-DEC-2017","host":["{{url}}"],"path":["ws","{{schema}}","{{version}}","udf","user",""],"query":[{"key":"udf_type","value":"AB20"},{"key":"person","value":"1409000"},{"key":"appointment_id","value":"TS0011-2594"},{"key":"date1","value":"01-JAN-2017"},{"key":"date2","value":"31-DEC-2017"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"connection","key":"connection","value":"Keep-Alive","description":"Options that are desired for the connection"},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":"Custom header"},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":"The mime type of this content"},{"name":"date","key":"date","value":"Thu, 17 Aug 2017 14:27:44 GMT","description":"The date and time that the message was sent"},{"name":"etag","key":"etag","value":"\"MQgB6VKjaT8lHDgADQKxxd0zqZ1ssI3lKuh3MursJBsVKHrOsHcxUeOJWWw6Lq7KQJ4hi5sQMuu9orqF0glhNg==\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":"Custom header"},{"name":"server","key":"server","value":"Apache","description":"A name for the server"},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"e491ed87-4cb1-4174-9763-76bbe5667c2b-0000008c","description":"Custom header"},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":"Custom header"},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"ZtfR7qZUUleahU","key":"__zlcmid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"GA1.2.345263352.1459269949","key":"_ga"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"154209639.534d7e038246e171d1efdb1f4bc83822.1459269952833.1484837065141.1494406860445.32","key":"__hstc"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"534d7e038246e171d1efdb1f4bc83822","key":"hubspotutk"}],"responseTime":null,"body":"\n{ \"items\" : [\n{\"udf_type\":\"AB20\",\"person\": \"1409000\",\"appointment_id\": \"TS0011-2594\",\"ws_id\": \"2017081171563091\",\"user_code\": \"AB20\",\"date1\": \"01-JAN-2017\",\"date2\": \"31-DEC-2017\",\"text1\": \"27-JAN-2017\",\"text2\": \"24-FEB-2017\",\"text3\": \"31-MAR-2017\",\"text4\": \"28-APR-2017\",\"text5\": \"27-MAY-2017\",\"text6\": \"30-JUN-2017\",\"text7\": \"28-JUL-2017\",\"text8\": \"25-AUG-2017\",\"text9\": \"29-SEP-2017\",\"text10\": \"28-OCT-2017\",\"text11\": \"24-NOV-2017\",\"text12\": \"29-DEC-2017\",\"last_update\": \"17-AUG-2017 12:46:49\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/frame/corehr/v1/udf/user/\"\n      }\n    ]\n}\n"}],"_postman_id":"566825e5-5581-484d-9aa5-12563cac555a"}],"id":"41431d64-849a-49f9-8a47-f2e7a8545436","description":"<p>The User Defined Fields (UDF) module provides ability to insert/update and view the UDF records for a PeopleXD employee.</p>\n<p>The list of UDF Types available is as configured in Core Personnel in the User Defined Fields under the Employee option i.e. those UDF types that related to a specific employee/user.</p>\n<p>These UDF Types must also be white listed using the Security option in Portal to allow them to be called via this Web Service.</p>\n<p><strong>Constraints, Limitations and Validation</strong></p>\n<p>For all calls (insert/update/get) the personnel no. and the UDF Type code must be specified at a minimum. As previously mentioned the UDF Type must have been added to the whitelist to be accessed in any way.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<p>*   404 / 000 The UDF Type does not exist in Core as a valid UDF Type for an Employee/User.\n*   400 / 001 A Personnel Number or an Appointment ID must be provided.\n*   404 / 002 Provide <em>either</em> a personnel number <em>or</em> an Appointment ID. It is not possible to use both.\n*   404 / 003 There is no PeopleXD personnel/user account associated with the personnel number provided.\n*   404 / 004 The Appointment ID is invalid.\n*   404 / 006 UDF Type with these details does not exist for user, consider using POST to create.\n*   404 / 007 This UDF Type is not whitelisted for web services.\n*   400 / 008 When using User Reference Data - by specifying a user_code - then do <em>not</em> provide values in parameters text1 to text12 i.e. pass in empty values in text1..text12.\n*   404 / 009 This User Reference Data - as specified by the user_code - is not a a valid User Code for this UDF Type.\n*   404 / 010 There is no UDF record of this type for this person with these details to update. Use POST if you want to insert a record.\n*   400 / 011 Date1 field when used must be provided in the date format DD-MON-YYY.\n*   400 / 012 Date2 field when used must be provided in the date format DD-MON-YYY.\n*   400 / 013 Person is a mandatory field in this context.\n*   400 / 014 UDF Type is a mandatory field in this context.</p>\n","_postman_id":"41431d64-849a-49f9-8a47-f2e7a8545436"},{"name":"Position","item":[{"name":"Profile","item":[{"name":"All","item":[{"name":"/position/profile/all","id":"d5df6b8f-5480-45c6-9b85-b7e99232a36d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/all","description":"<p>This service returns all position profiles, and is ordered by post number</p>\n<p><strong>Parameters</strong></p>\n<p>None</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li>postNumber</li>\n</ul>\n<p>A unique identifier associated with the position profile.</p>\n<ul>\n<li>postType</li>\n</ul>\n<p> Provides information about the type of post e.g. permanent, part time, trainee, contractor etc. For associated descriptions use the Reference Module with the reference type <code>EMPS</code>. This attribute is available from <strong>CoreHR 26.0.6</strong> and is not available in older versions.</p>\n<ul>\n<li>category</li>\n</ul>\n<p> Categorises the position / post based on an organisations requirements. E.g. Categorising employees who are entitled to additional levels of annual leave. For associated descriptions use the Reference Module with the reference type <code>CATG</code>.</p>\n<ul>\n<li><p>subCategory</p>\n<p>Typically used to further break down the Category. For associated descriptions use the Reference Module with the reference type <code>SUBC</code>.</p>\n</li>\n<li><p>startDate</p>\n</li>\n</ul>\n<p> The date this position / post profile is effective from  </p>\n<ul>\n<li>endDate</li>\n</ul>\n<p> The date this position / post profile is no longer effective</p>\n<ul>\n<li>FTE</li>\n</ul>\n<p> Full Time Eqivalence of the appointment between 0 and 1 (inclusive).</p>\n<ul>\n<li>payScale</li>\n</ul>\n<p> This is the \"scale\" related to salary information which is associated with the appointment. This attribute is also referred to as 'PositionCode' and 'Grade'. Note: if the requirement is to determine an individuals exact Grade use the /person/salary/ web service instead.</p>\n<ul>\n<li>postTileCode</li>\n</ul>\n<p> A code that represents the description of the position / post profile. For associated descriptions use the Reference Module with the reference type <code>POSTTL</code>.</p>\n<ul>\n<li>Hierarchy / Structure Related - explains where the appointment fits within an organisation, not all of these fields will be populated. The number of fields populated depend on the the configuration of the organisation structure. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</li>\n</ul>\n<ul>\n<li><p><code>structureCode</code> - ability to map back to the Organisation Hierarchy end point /organisation</p>\n</li>\n<li><p><code>company</code> - Used to indicate the company / organisation on the structure of where the person's appointment sits. This is usually the highest level of the organisation. For associated descriptions use the Reference Module with the reference type <code>ORGZ</code>.</p>\n</li>\n<li><p><code>managementUnit</code> - Used to indicate the management unit within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>MGTU</code>.</p>\n</li>\n<li><p><code>department</code> - Used to indicate the department within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DEPT</code>.</p>\n</li>\n<li><p><code>costCentre</code> - The cost centre associated with this appointment. For associated descriptions use the Reference Module with the reference type <code>COST</code>.</p>\n</li>\n<li><p><code>division</code> - Used to indicate the division within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DIV</code>.</p>\n</li>\n<li><p><code>location</code> - Used to indicate the location within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>LOC</code>.</p>\n</li>\n<li><p><code>workGroup</code> - Used to indicate the workGroup within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>WRKGRP</code>.</p>\n</li>\n<li><p><code>user1</code> .. <code>user5</code> - Additional customized fields, how these are mapped and defined refer to the web service /organisation, using the provided structure code.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","position","profile","all"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1d5b6015-970e-4630-ac02-1dbc545f1db4","name":"Invalid Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/59900000"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 04 May 2018 16:32:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"1Qx3t/UWz3zTKKOdm3LSBjOnLatPFQy7Gnt5gD0G3W5W8oGPsmp8cyKFHANwuCZSKAfHsUFZkc5uObhPEvTmnQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"c56341ae-8040-4020-94cb-a0059cf71b63-00045009","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Post Number has a maximum length of 6\" }}\n"},{"id":"1e7bd09d-5189-479d-8054-6dcc5e3099c8","name":"Invalid Number ","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/5990-"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 04 May 2018 16:31:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"0FoqxLKU/Q+B00fZAzIsL22Bh8+Zs44U0qVCWudFEc81asczNAF9K3AeUwxZmYek20y3sdnxLVFGPq0gKBgJ4w==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"c56341ae-8040-4020-94cb-a0059cf71b63-00044fd3","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"003\",\"errorMessage\" :\"Validation failed. Post Number should be a number\" }}\n"},{"id":"ed3ac0a6-9696-48b7-a912-9a63c5839809","name":"All Position Profile","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Nov 2018 13:17:09 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-001db0a3"},{"key":"ETag","value":"\"F2NjN38vOKmHnpcTR/y0BeNwX+2SfIlO1oF0Ttnx6pteEYbI07l0J1rn7gKnX2VJnJvQz1k0uVsZtLvl/7OvuQ==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"items\": [\n        {\n            \"postNumber\": \"502240\",\n            \"postType\": \"CT\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"2\",\n            \"postTitle\": \"JXXXXX\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1005\",\n                \"department\": \"6109\",\n                \"costCentre\": \"X999999\",\n                \"division\": \"\",\n                \"location\": \"3100\",\n                \"workGroup\": \"W00240\",\n                \"user1\": \"1105\",\n                \"user2\": \"1205\",\n                \"user3\": \"1505\",\n                \"user4\": \"2026\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502241\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"20170620\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00008\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502242\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"599\",\n            \"postTitle\": \"J00521\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502243\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502244\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502245\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502246\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1002\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502247\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502248\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00221\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502249\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"0006\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"199\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00930\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"9093\",\n                \"costCentre\": \"TP72243\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"H00094\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"9584\"\n            }\n        },\n        {\n            \"postNumber\": \"502250\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502251\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00203\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502252\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00531\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502253\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00128\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502254\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00937\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502255\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00123\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502256\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00219\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502257\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00938\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502258\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00917\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502259\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00939\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502260\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00940\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502261\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00941\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502262\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00904\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502263\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00336\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502264\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00695\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502265\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00882\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502266\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502267\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00216\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502268\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502269\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502270\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00942\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502271\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00943\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502272\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00944\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502273\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00945\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502274\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00557\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502275\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00946\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502276\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00399\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502277\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00330\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1020\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502278\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00947\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502279\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00948\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502280\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00949\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502281\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00950\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502282\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00951\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502283\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00436\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502284\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00952\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502285\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00953\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502286\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00954\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502287\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00955\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502288\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00956\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502289\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00957\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502290\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00958\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502291\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00098\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502292\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00096\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502293\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00204\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502294\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502295\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502298\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19900101\",\n            \"endDate\": \"\",\n            \"payScale\": \"99\",\n            \"FTE\": \"1\",\n            \"postTitle\": \"J00003\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502299\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00268\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502300\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510901\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00026\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1003\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502301\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00969\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502302\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00035\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1024\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502303\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00970\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502304\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00971\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502305\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00876\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502306\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00973\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502307\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502308\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502309\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00004\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502310\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19500101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00364\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502311\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00156\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1022\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502312\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502313\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00063\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502314\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00107\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502315\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502316\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00972\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502317\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00974\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502318\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00975\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502319\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00129\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502320\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502321\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502322\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502323\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00449\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502324\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00484\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502325\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00197\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502326\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00083\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502327\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00061\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502328\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502329\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00020\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502330\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00377\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502331\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00976\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502332\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00977\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502333\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00978\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502334\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00979\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502335\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00980\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502336\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00981\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502337\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00982\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502338\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00983\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502339\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00984\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502340\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00985\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502341\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00986\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 100,\n    \"hasMore\": true,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/all\"\n        },\n        {\n            \"rel\": \"next\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/all?offsetby=100\"\n        }\n    ]\n}"}],"_postman_id":"d5df6b8f-5480-45c6-9b85-b7e99232a36d"}],"id":"c45635d3-9a9a-47e4-b255-70bc0b646eeb","_postman_id":"c45635d3-9a9a-47e4-b255-70bc0b646eeb","description":""},{"name":"Active","item":[{"name":"/position/profile/active/:date?","id":"ae4fc778-ccaf-40c9-8e0b-7e7aa923eb64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/active/","description":"<p>This service returns only active position profiles, and is ordered by post number. An active position profile is based on the start and end dates of the position profile. Leaving the date parameter blank will return the current active appointments as of 'today'. Provide a date if the requirement is to determine active position profiles as of a specific date. An appointment with a start date &gt;= today and a dormant date &lt;= today is considered active. When the dormant date is not set for an appointment then it is  active if the start date is &gt;= today.</p>\n<p><strong>Parameters</strong></p>\n<p>date : format YYYYMMDD</p>\n<p>Mandatory : No</p>\n<p>When blank, the service returns active appointments as of 'today'.</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li>postNumber</li>\n</ul>\n<p>A unique identifier associated with the position profile.</p>\n<ul>\n<li>postType</li>\n</ul>\n<p> Provides information about the type of post e.g. permanent, part time, trainee, contractor etc. For associated descriptions use the Reference Module with the reference type <code>EMPS</code>. This attribute is available from <strong>CoreHR 26.0.6</strong> and is not available in older versions.</p>\n<ul>\n<li>category</li>\n</ul>\n<p> Categorises the position / post based on an organisations requirements. E.g. Categorising employees who are entitled to additional levels of annual leave. For associated descriptions use the Reference Module with the reference type <code>CATG</code>.</p>\n<ul>\n<li><p>subCategory</p>\n<p>Typically used to further break down the Category. For associated descriptions use the Reference Module with the reference type <code>SUBC</code>.</p>\n</li>\n<li><p>startDate</p>\n</li>\n</ul>\n<p> The date this position / post profile is effective from  </p>\n<ul>\n<li>endDate</li>\n</ul>\n<p> The date this position / post profile is no longer effective</p>\n<ul>\n<li>FTE</li>\n</ul>\n<p> Full Time Eqivalence of the appointment between 0 and 1 (inclusive).</p>\n<ul>\n<li>payScale</li>\n</ul>\n<p> This is the \"scale\" related to salary information which is associated with the appointment. This attribute is also referred to as 'PositionCode' and 'Grade'. Note: if the requirement is to determine an individuals exact Grade use the /person/salary/ web service instead.</p>\n<ul>\n<li>postTileCode</li>\n</ul>\n<p> A code that represents the description of the position / post profile. For associated descriptions use the Reference Module with the reference type <code>POSTTL</code>.</p>\n<ul>\n<li>Hierarchy / Structure Related - explains where the appointment fits within an organisation, not all of these fields will be populated. The number of fields populated depend on the the configuration of the organisation structure. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</li>\n</ul>\n<ul>\n<li><p><code>structureCode</code> - ability to map back to the Organisation Hierarchy end point /organisation</p>\n</li>\n<li><p><code>company</code> - Used to indicate the company / organisation on the structure of where the person's appointment sits. This is usually the highest level of the organisation. For associated descriptions use the Reference Module with the reference type <code>ORGZ</code>.</p>\n</li>\n<li><p><code>managementUnit</code> - Used to indicate the management unit within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>MGTU</code>.</p>\n</li>\n<li><p><code>department</code> - Used to indicate the department within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DEPT</code>.</p>\n</li>\n<li><p><code>costCentre</code> - The cost centre associated with this appointment. For associated descriptions use the Reference Module with the reference type <code>COST</code>.</p>\n</li>\n<li><p><code>division</code> - Used to indicate the division within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DIV</code>.</p>\n</li>\n<li><p><code>location</code> - Used to indicate the location within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>LOC</code>.</p>\n</li>\n<li><p><code>workGroup</code> - Used to indicate the workGroup within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>WRKGRP</code>.</p>\n</li>\n<li><p><code>user1</code> .. <code>user5</code> - Additional customized fields, how these are mapped and defined refer to the web service /organisation, using the provided structure code.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","position","profile","active",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"013fe855-a5be-4dce-ba32-65a1251393db","name":"Active Positions Based on a Date-","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/active/20180101"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Nov 2018 13:18:26 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-001db393"},{"key":"ETag","value":"\"IxXtYLWysy45I5hwfOED38zBxHTvrufCmFDE8qkgq3hGx6UcXuTM8BVcJgIuNFJGhsS5rT/6ue8FzfNKLhHnNQ==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"items\": [\n        {\n            \"postNumber\": \"502240\",\n            \"postType\": \"CT\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"2\",\n            \"postTitle\": \"JXXXXX\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1005\",\n                \"department\": \"6109\",\n                \"costCentre\": \"X999999\",\n                \"division\": \"\",\n                \"location\": \"3100\",\n                \"workGroup\": \"W00240\",\n                \"user1\": \"1105\",\n                \"user2\": \"1205\",\n                \"user3\": \"1505\",\n                \"user4\": \"2026\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502242\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"599\",\n            \"postTitle\": \"J00521\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502243\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502244\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502245\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502246\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1002\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502247\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502248\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00221\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502249\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"0006\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"199\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00930\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"9093\",\n                \"costCentre\": \"TP72243\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"H00094\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"9584\"\n            }\n        },\n        {\n            \"postNumber\": \"502250\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502251\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00203\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502252\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00531\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502253\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00128\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502254\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00937\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502255\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00123\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502256\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00219\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502257\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00938\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502258\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00917\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502259\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00939\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502260\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00940\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502261\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00941\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502262\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00904\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502263\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00336\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502264\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00695\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502265\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00882\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502266\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502267\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00216\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502268\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502269\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502270\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00942\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502271\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00943\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502272\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00944\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502273\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00945\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502274\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00557\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502275\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00946\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502276\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00399\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502277\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00330\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1020\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502278\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00947\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502279\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00948\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502280\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00949\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502281\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00950\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502282\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00951\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502283\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00436\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502284\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00952\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502285\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00953\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502286\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00954\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502287\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00955\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502288\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00956\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502289\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00957\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502290\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00958\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502291\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00098\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502292\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00096\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502293\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00204\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502294\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502295\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502298\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19900101\",\n            \"endDate\": \"\",\n            \"payScale\": \"99\",\n            \"FTE\": \"1\",\n            \"postTitle\": \"J00003\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502299\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00268\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502300\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510901\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00026\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1003\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502301\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00969\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502302\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00035\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1024\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502303\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00970\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502304\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00971\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502305\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00876\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502306\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00973\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502307\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502308\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502309\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00004\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502310\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19500101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00364\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502311\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00156\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1022\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502312\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502313\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00063\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502314\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00107\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502315\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502316\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00972\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502317\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00974\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502318\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00975\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502319\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00129\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502320\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502321\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502322\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502323\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00449\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502324\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00484\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502325\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00197\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502326\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00083\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502327\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00061\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502328\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502329\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00020\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502330\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00377\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502331\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00976\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502332\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00977\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502333\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00978\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502334\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00979\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502335\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00980\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502336\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00981\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502337\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00982\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502338\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00983\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502339\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00984\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502340\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00985\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502341\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00986\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502342\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00986\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 100,\n    \"hasMore\": true,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/active/20180101\"\n        },\n        {\n            \"rel\": \"next\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/active/20180101?offsetby=100\"\n        }\n    ]\n}"},{"id":"1feb1532-a784-4943-adae-8bdf06784566","name":"Active Positions","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/active/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Nov 2018 13:17:42 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-001db211"},{"key":"ETag","value":"\"W+TMIkbENEkqD21wYwQcem0AYCpyXfldiK5yYujziZXlU0JGF86PWZWQJE3OPx1t8sl743PO79f6j0BlcuKaDg==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"items\": [\n        {\n            \"postNumber\": \"502240\",\n            \"postType\": \"CT\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"2\",\n            \"postTitle\": \"JXXXXX\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1005\",\n                \"department\": \"6109\",\n                \"costCentre\": \"X999999\",\n                \"division\": \"\",\n                \"location\": \"3100\",\n                \"workGroup\": \"W00240\",\n                \"user1\": \"1105\",\n                \"user2\": \"1205\",\n                \"user3\": \"1505\",\n                \"user4\": \"2026\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502242\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"599\",\n            \"postTitle\": \"J00521\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502243\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502244\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502245\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502246\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1002\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502247\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502248\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00221\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502249\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"0006\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"199\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00930\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"9093\",\n                \"costCentre\": \"TP72243\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"H00094\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"9584\"\n            }\n        },\n        {\n            \"postNumber\": \"502250\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502251\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00203\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502252\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00531\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502253\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00128\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502254\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00937\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502255\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00123\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502256\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00219\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502257\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00938\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502258\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00917\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502259\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00939\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502260\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00940\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502261\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00941\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502262\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00904\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502263\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00336\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502264\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00695\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502265\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00882\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502266\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502267\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00216\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502268\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502269\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502270\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00942\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502271\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00943\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502272\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00944\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502273\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00945\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502274\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00557\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502275\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00946\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502276\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00399\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502277\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00330\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1020\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502278\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00947\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502279\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00948\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502280\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00949\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502281\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00950\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502282\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00951\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502283\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00436\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502284\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00952\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502285\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00953\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502286\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00954\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502287\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00955\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502288\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00956\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502289\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00957\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502290\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00958\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502291\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00098\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502292\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00096\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502293\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00204\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502294\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502295\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502298\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19900101\",\n            \"endDate\": \"\",\n            \"payScale\": \"99\",\n            \"FTE\": \"1\",\n            \"postTitle\": \"J00003\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502299\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00268\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502300\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510901\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00026\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1003\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502301\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00969\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502302\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00035\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1024\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502303\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00970\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502304\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00971\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502305\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00876\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502306\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00973\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502307\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502308\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502309\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00004\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502310\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19500101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00364\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502311\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00156\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1022\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502312\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502313\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00063\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502314\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00107\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502315\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502316\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00972\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502317\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00974\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502318\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00975\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502319\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00129\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502320\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502321\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502322\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502323\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00449\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502324\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00484\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502325\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00197\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502326\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00083\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502327\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00061\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502328\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502329\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00020\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502330\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00377\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502331\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00976\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502332\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00977\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502333\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00978\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502334\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00979\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502335\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00980\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502336\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00981\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502337\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00982\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502338\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00983\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502339\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00984\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502340\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00985\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502341\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00986\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502342\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00986\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 100,\n    \"hasMore\": true,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/active/\"\n        },\n        {\n            \"rel\": \"next\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/active/?offsetby=100\"\n        }\n    ]\n}"}],"_postman_id":"ae4fc778-ccaf-40c9-8e0b-7e7aa923eb64"}],"id":"cce86ed4-a722-4ff7-9a44-99bffaa13a76","_postman_id":"cce86ed4-a722-4ff7-9a44-99bffaa13a76","description":""},{"name":"Future","item":[{"name":"/position/profile/future","id":"c9cc3a8f-4ce2-446f-97d3-7dd5a32407d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/future","description":"<p>This service returns only future position profiles, and is ordered by post number. A future position profile is based on the start of the position profile, and the start must be greater than 'today'.</p>\n<p><strong>Parameters</strong></p>\n<p>None</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li>postNumber</li>\n</ul>\n<p>A unique identifier associated with the position profile.</p>\n<ul>\n<li>postType</li>\n</ul>\n<p> Provides information about the type of post e.g. permanent, part time, trainee, contractor etc. For associated descriptions use the Reference Module with the reference type <code>EMPS</code>. This attribute is available from <strong>CoreHR 26.0.6</strong> and is not available in older versions.</p>\n<ul>\n<li>category</li>\n</ul>\n<p> Categorises the position / post based on an organisations requirements. E.g. Categorising employees who are entitled to additional levels of annual leave. For associated descriptions use the Reference Module with the reference type <code>CATG</code>.</p>\n<ul>\n<li><p>subCategory</p>\n<p>Typically used to further break down the Category. For associated descriptions use the Reference Module with the reference type <code>SUBC</code>.</p>\n</li>\n<li><p>startDate</p>\n</li>\n</ul>\n<p> The date this position / post profile is effective from  </p>\n<ul>\n<li>endDate</li>\n</ul>\n<p> The date this position / post profile is no longer effective</p>\n<ul>\n<li>FTE</li>\n</ul>\n<p> Full Time Eqivalence of the appointment between 0 and 1 (inclusive).</p>\n<ul>\n<li>payScale</li>\n</ul>\n<p> This is the \"scale\" related to salary information which is associated with the appointment. This attribute is also referred to as 'PositionCode' and 'Grade'. Note: if the requirement is to determine an individuals exact Grade use the /person/salary/ web service instead.</p>\n<ul>\n<li>postTileCode</li>\n</ul>\n<p> A code that represents the description of the position / post profile. For associated descriptions use the Reference Module with the reference type <code>POSTTL</code>.</p>\n<ul>\n<li>Hierarchy / Structure Related - explains where the appointment fits within an organisation, not all of these fields will be populated. The number of fields populated depend on the the configuration of the organisation structure. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</li>\n</ul>\n<ul>\n<li><p><code>structureCode</code> - ability to map back to the Organisation Hierarchy end point /organisation</p>\n</li>\n<li><p><code>company</code> - Used to indicate the company / organisation on the structure of where the person's appointment sits. This is usually the highest level of the organisation. For associated descriptions use the Reference Module with the reference type <code>ORGZ</code>.</p>\n</li>\n<li><p><code>managementUnit</code> - Used to indicate the management unit within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>MGTU</code>.</p>\n</li>\n<li><p><code>department</code> - Used to indicate the department within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DEPT</code>.</p>\n</li>\n<li><p><code>costCentre</code> - The cost centre associated with this appointment. For associated descriptions use the Reference Module with the reference type <code>COST</code>.</p>\n</li>\n<li><p><code>division</code> - Used to indicate the division within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DIV</code>.</p>\n</li>\n<li><p><code>location</code> - Used to indicate the location within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>LOC</code>.</p>\n</li>\n<li><p><code>workGroup</code> - Used to indicate the workGroup within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>WRKGRP</code>.</p>\n</li>\n<li><p><code>user1</code> .. <code>user5</code> - Additional customized fields, how these are mapped and defined refer to the web service /organisation, using the provided structure code.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","position","profile","future"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ce0192b1-ea7c-40b5-b618-b2780df26c11","name":"Future Profile","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/future"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS","name":"Access-Control-Allow-Methods-Age","description":"Custom header"},{"key":"Access-Control-Max-Age","value":"600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 13 Sep 2018 16:17:17 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"LXCQMwx6BN3ojpPN+GKOV0EFa8ZGOEZZioQvIyhQFcTY9LwDW2FSe6WWJ0TqFgqBe07mMvsiFBNduuHYTBwXOA==-gzip\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"b0b00ddc-b960-4e37-b4b3-3d5446e9ff5e-00088aa6","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"postNumber\":\"502655\",\"category\":\"ST_P\",\"subCategory\":\"\",\"startDate\":\"20180914\",\"endDate\":\"\",\"payScale\":\"7800\",\"FTE\":\"1\",\"postTitle\":\"DF06\",\"hierarchy\" : {\"structureCode\":\"7800\",\"company\":\"7800\",\"managementUnit\":\"78041\",\"department\":\"KC02\",\"costCentre\":\"AB04\",\"division\":\"7002\",\"location\":\"3007\",\"workGroup\":\"7401\",\"user1\":\"1104\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"\"}}\n,\n{\"postNumber\":\"708415\",\"category\":\"\",\"subCategory\":\"\",\"startDate\":\"20180913\",\"endDate\":\"\",\"payScale\":\"7084\",\"FTE\":\"1\",\"postTitle\":\"708412\",\"hierarchy\" : {\"structureCode\":\"7084\",\"company\":\"7084\",\"managementUnit\":\"8441\",\"department\":\"8403\",\"costCentre\":\"\",\"division\":\"\",\"location\":\"\",\"workGroup\":\"\",\"user1\":\"8414\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"\"}}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/future\"\n      }\n    ]\n}\n"}],"_postman_id":"c9cc3a8f-4ce2-446f-97d3-7dd5a32407d1"}],"id":"c8ea10b7-70b3-4a35-aee9-c2404ab1243d","_postman_id":"c8ea10b7-70b3-4a35-aee9-c2404ab1243d","description":""},{"name":"/position/profile/:postNumber","id":"22f1fbed-6581-42bd-9514-5508d9d414c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/5990-","description":"<p>A post number can be obtained by using the /person/appointment/:personnelNo web service.</p>\n<p><strong>Parameters</strong></p>\n<p>requires personnelNumber, use the /filter/* endpoints to obtain personnelNumbers</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li>postNumber</li>\n</ul>\n<p>A unique identifier associated with the position profile.</p>\n<ul>\n<li>postType</li>\n</ul>\n<p> Provides information about the type of post e.g. permanent, part time, trainee, contractor etc. For associated descriptions use the Reference Module with the reference type <code>EMPS</code>. This attribute is available from <strong>CoreHR 26.0.6</strong> and is not available in older versions.</p>\n<ul>\n<li>category</li>\n</ul>\n<p> Categorises the position / post based on an organisations requirements. E.g. Categorising employees who are entitled to additional levels of annual leave. For associated descriptions use the Reference Module with the reference type <code>CATG</code>.</p>\n<ul>\n<li><p>subCategory</p>\n<p>Typically used to further break down the Category. For associated descriptions use the Reference Module with the reference type <code>SUBC</code>.</p>\n</li>\n<li><p>startDate</p>\n</li>\n</ul>\n<p> The date this position / post profile is effective from    </p>\n<ul>\n<li>endDate</li>\n</ul>\n<p> The date this position / post profile is no longer effective</p>\n<ul>\n<li>FTE</li>\n</ul>\n<p> Full Time Eqivalence of the appointment between 0 and 1 (inclusive).</p>\n<ul>\n<li>payScale</li>\n</ul>\n<p> This is the \"scale\" related to salary information which is associated with the appointment. This attribute is also referred to as 'PositionCode' and 'Grade'. Note: if the requirement is to determine an individuals exact Grade use the /person/salary/ web service instead.</p>\n<ul>\n<li>postTileCode</li>\n</ul>\n<p> A code that represents the description of the position / post profile. For associated descriptions use the Reference Module with the reference type <code>POSTTL</code>.</p>\n<ul>\n<li>Hierarchy / Structure Related - explains where the appointment fits within an organisation, not all of these fields will be populated. The number of fields populated depend on the the configuration of the organisation structure. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</li>\n</ul>\n<ul>\n<li><p><code>structureCode</code> - ability to map back to the Organisation Hierarchy end point /organisation</p>\n</li>\n<li><p><code>company</code> - Used to indicate the company / organisation on the structure of where the person's appointment sits. This is usually the highest level of the organisation. For associated descriptions use the Reference Module with the reference type <code>ORGZ</code>.</p>\n</li>\n<li><p><code>managementUnit</code> - Used to indicate the management unit within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>MGTU</code>.</p>\n</li>\n<li><p><code>department</code> - Used to indicate the department within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DEPT</code>.</p>\n</li>\n<li><p><code>costCentre</code> - The cost centre associated with this appointment. For associated descriptions use the Reference Module with the reference type <code>COST</code>.</p>\n</li>\n<li><p><code>division</code> - Used to indicate the division within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DIV</code>.</p>\n</li>\n<li><p><code>location</code> - Used to indicate the location within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>LOC</code>.</p>\n</li>\n<li><p><code>workGroup</code> - Used to indicate the workGroup within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>WRKGRP</code>.</p>\n</li>\n<li><p><code>user1</code> .. <code>user5</code> - Additional customized fields, how these are mapped and defined refer to the web service /organisation, using the provided structure code.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","position","profile","5990-"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1771736b-dfd2-4784-a10c-21785e847193","name":"Position based on Post Number","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/502240"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Nov 2018 13:16:46 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-001dafef"},{"key":"ETag","value":"\"JB8nmVvPB8sY9824/G/4Z3ofWoOB5O99wWk/Ud4Yg1/f+i5x9hga4zMpqrVv38vJ4CdVMkCbuKV6BmhyEnEOpA==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"items\": [\n        {\n            \"postNumber\": \"502240\",\n            \"postType\": \"CT\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"2\",\n            \"postTitle\": \"JXXXXX\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1005\",\n                \"department\": \"6109\",\n                \"costCentre\": \"X999999\",\n                \"division\": \"\",\n                \"location\": \"3100\",\n                \"workGroup\": \"W00240\",\n                \"user1\": \"1105\",\n                \"user2\": \"1205\",\n                \"user3\": \"1505\",\n                \"user4\": \"2026\",\n                \"user5\": \"\"\n            }\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 1,\n    \"hasMore\": false,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/502240\"\n        }\n    ]\n}"},{"id":"18aa7970-0c1e-4270-b9ff-3061c0953721","name":"Invalid Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/59900000"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 04 May 2018 16:32:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"1Qx3t/UWz3zTKKOdm3LSBjOnLatPFQy7Gnt5gD0G3W5W8oGPsmp8cyKFHANwuCZSKAfHsUFZkc5uObhPEvTmnQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"c56341ae-8040-4020-94cb-a0059cf71b63-00045009","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Post Number has a maximum length of 6\" }}\n"},{"id":"f50375a1-655b-4dab-9e8a-33621c420d41","name":"Invalid Number ","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/5990-"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 04 May 2018 16:31:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"0FoqxLKU/Q+B00fZAzIsL22Bh8+Zs44U0qVCWudFEc81asczNAF9K3AeUwxZmYek20y3sdnxLVFGPq0gKBgJ4w==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"c56341ae-8040-4020-94cb-a0059cf71b63-00044fd3","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"003\",\"errorMessage\" :\"Validation failed. Post Number should be a number\" }}\n"}],"_postman_id":"22f1fbed-6581-42bd-9514-5508d9d414c5"}],"id":"6d565d8a-3e0c-4147-8586-1c1bc9ebbeef","_postman_id":"6d565d8a-3e0c-4147-8586-1c1bc9ebbeef","description":""}],"id":"a19c3aca-feb6-458f-b060-1e94828b5364","description":"<p><strong>Position Module</strong></p>\n<p>The position module will retrieve position (aka post) profile information. This profile information is generally best described as a blueprint providing default information for appointments e.g. sets the cost centre, department, category information etc.</p>\n<p>Several options exist for this module:</p>\n<ul>\n<li><p>/position/profile/:postNumber</p>\n</li>\n<li><p>/position/profile/active</p>\n</li>\n<li><p>/position/profile/inactive</p>\n</li>\n<li><p>/position/profile/all</p>\n</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"0ad616e4-afe6-4023-ae72-bc6db57e66f1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"407d7a14-7639-4d89-8735-2634cd22bf74","type":"text/javascript","exec":[""]}}],"_postman_id":"a19c3aca-feb6-458f-b060-1e94828b5364"},{"name":"Filter","item":[{"name":"Active","item":[{"name":"/filter/active/:date?","id":"77ba096e-1300-4131-bd51-aab32a0a4428","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/active/","description":"<p>Get all active employees, this will include employees who have a future leaving dates. </p>\n<p>By default only 100 active employees will be returned. In cases where you have a large employee base, set the pagesize filter via the URL. The max pagesize is 10,000 i.e it is possible to obtain an employee result set up to 10,000 employees. Setting the pagesize above this max threshold will result in only the default result set.</p>\n<ul>\n<li>Date\nan optional parameter, leaving this parameter blank, will simply return active employees as of 'today'. While providing a value for date (formated as YYYYMMDD) will return employees active for that specific date. Typically used to find employees active based on a specific historical date. It is therefore possible to obtain employees who have ceased employment.</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","active",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"13fa4c00-41f4-4332-afb4-1a0f4acba912","name":"Active Employee's default","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/active/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 13 Mar 2018 13:54:04 GMT","name":"Date","description":""},{"key":"ETag","value":"\"a3jV6vklutu03flmajzx8qS3OWWygg0tIsArMcn8GmM/O05zwDli+czs5I99Gb6pDydjeBpP9eQNJsBH9qIq4A==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-000a7a9e","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"000070\"\n,\n\"000071\"\n,\n\"000072\"\n,\n\"000073\"\n,\n\"000074\"\n,\n\"000075\"\n,\n\"000085\"\n,\n\"0003490\"\n,\n\"000368\"\n,\n\"0006771\"\n,\n\"000881\"\n,\n\"000882\"\n,\n\"000883\"\n,\n\"000885\"\n,\n\"000886\"\n,\n\"0012241\"\n,\n\"001234\"\n,\n\"0013640\"\n,\n\"0014302\"\n,\n\"0014395\"\n,\n\"0014618\"\n,\n\"0015860\"\n,\n\"0016983\"\n,\n\"0020136\"\n,\n\"0022675\"\n,\n\"0023643\"\n,\n\"002488\"\n,\n\"0025846\"\n,\n\"0026047\"\n,\n\"0026512\"\n,\n\"0028524\"\n,\n\"0029922\"\n,\n\"0031794\"\n,\n\"0032061\"\n,\n\"0034934\"\n,\n\"0036755\"\n,\n\"0043130\"\n,\n\"0044941\"\n,\n\"0045780\"\n,\n\"0046457\"\n,\n\"0047664\"\n,\n\"0047681\"\n,\n\"0049534\"\n,\n\"0051140\"\n,\n\"0051979\"\n,\n\"0052853\"\n,\n\"0057845\"\n,\n\"0061351\"\n,\n\"0061813\"\n,\n\"0062746\"\n,\n\"0066995\"\n,\n\"0068421\"\n,\n\"0068674\"\n,\n\"0069559\"\n,\n\"0070741\"\n,\n\"0070866\"\n,\n\"0071150\"\n,\n\"0071612\"\n,\n\"0072944\"\n,\n\"0073960\"\n,\n\"0074880\"\n,\n\"0075046\"\n,\n\"0079056\"\n,\n\"0079965\"\n,\n\"0081043\"\n,\n\"0082008\"\n,\n\"0084707\"\n,\n\"0085976\"\n,\n\"0087686\"\n,\n\"0088814\"\n,\n\"0088859\"\n,\n\"0090624\"\n,\n\"0090669\"\n,\n\"0091081\"\n,\n\"0091560\"\n,\n\"0092955\"\n,\n\"0093219\"\n,\n\"0096743\"\n,\n\"0097038\"\n,\n\"0098467\"\n,\n\"0098707\"\n,\n\"0098977\"\n,\n\"0100521\"\n,\n\"0101600\"\n,\n\"0102390\"\n,\n\"0102707\"\n,\n\"0102901\"\n,\n\"0102915\"\n,\n\"0103310\"\n,\n\"0103710\"\n,\n\"0105180\"\n,\n\"0106480\"\n,\n\"0107351\"\n,\n\"0107396\"\n,\n\"0107508\"\n,\n\"0108080\"\n,\n\"0109714\"\n,\n\"0109922\"\n,\n\"0110029\"\n,\n\"0110844\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/active/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/active/?offsetby=100\"\n      }\n     ]\n}\n"},{"id":"f6800a46-7ff6-4776-8520-d374fc7cd5c9","name":"Active Employees pagesize 5,000","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/active/?pagesize=5000","host":["{{url}}"],"path":["ws","{{tenant}}","{{schema}}","v1","filter","active",""],"query":[{"key":"pagesize","value":"5000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 13 Mar 2018 13:55:22 GMT","name":"Date","description":""},{"key":"ETag","value":"\"i8/UPtbcoA97afGWuKDcfzHWqdmhvpMGMCwEtvzWvYaXKlnw9JJ3tBR31PmWYNv1kcqwt9F26CqVRACmi8nA+w==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-000a7b95","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"000070\"\n,\n\"000071\"\n,\n\"000072\"\n,\n\"000073\"\n,\n\"000074\"\n,\n\"000075\"\n,\n\"000085\"\n,\n\"0003490\"\n,\n\"000368\"\n,\n\"0006771\"\n,\n\"000881\"\n,\n\"000882\"\n,\n\"000883\"\n,\n\"000885\"\n,\n\"000886\"\n,\n\"0012241\"\n,\n\"001234\"\n,\n\"0013640\"\n,\n\"0014302\"\n,\n\"0014395\"\n,\n\"0014618\"\n,\n\"0015860\"\n,\n\"0016983\"\n,\n\"0020136\"\n,\n\"0022675\"\n,\n\"0023643\"\n,\n\"002488\"\n,\n\"0025846\"\n,\n\"0026047\"\n,\n\"0026512\"\n,\n\"0028524\"\n,\n\"0029922\"\n,\n\"0031794\"\n,\n\"0032061\"\n,\n\"0034934\"\n,\n\"0036755\"\n,\n\"0043130\"\n,\n\"0044941\"\n,\n\"0045780\"\n,\n\"0046457\"\n,\n\"0047664\"\n,\n\"0047681\"\n,\n\"0049534\"\n,\n\"0051140\"\n,\n\"0051979\"\n,\n\"0052853\"\n,\n\"0057845\"\n,\n\"0061351\"\n,\n\"0061813\"\n,\n\"0062746\"\n,\n\"0066995\"\n,\n\"0068421\"\n,\n\"0068674\"\n,\n\"0069559\"\n,\n\"0070741\"\n,\n\"0070866\"\n,\n\"0071150\"\n,\n\"0071612\"\n,\n\"0072944\"\n,\n\"0073960\"\n,\n\"0074880\"\n,\n\"0075046\"\n,\n\"0079056\"\n,\n\"0079965\"\n,\n\"0081043\"\n,\n\"0082008\"\n,\n\"0084707\"\n,\n\"0085976\"\n,\n\"0087686\"\n,\n\"0088814\"\n,\n\"0088859\"\n,\n\"0090624\"\n,\n\"0090669\"\n,\n\"0091081\"\n,\n\"0091560\"\n,\n\"0092955\"\n,\n\"0093219\"\n,\n\"0096743\"\n,\n\"0097038\"\n,\n\"0098467\"\n,\n\"0098707\"\n,\n\"0098977\"\n,\n\"0100521\"\n,\n\"0101600\"\n,\n\"0102390\"\n,\n\"0102707\"\n,\n\"0102901\"\n,\n\"0102915\"\n,\n\"0103310\"\n,\n\"0103710\"\n,\n\"0105180\"\n,\n\"0106480\"\n,\n\"0107351\"\n,\n\"0107396\"\n,\n\"0107508\"\n,\n\"0108080\"\n,\n\"0109714\"\n,\n\"0109922\"\n,\n\"0110029\"\n,\n\"0110844\"\n,\n\"0111906\"\n,\n\"0112030\"\n,\n\"0112665\"\n,\n\"0112682\"\n,\n\"0114646\"\n,\n\"0114885\"\n,\n\"0115024\"\n,\n\"0118212\"\n,\n\"0119686\"\n,\n\"0123446\"\n,\n\"0123814\"\n,\n\"0124080\"\n,\n\"0127519\"\n,\n\"0128472\"\n,\n\"0129485\"\n,\n\"0130411\"\n,\n\"0131011\"\n,\n\"0131552\"\n,\n\"0133710\"\n,\n\"0136912\"\n,\n\"0136926\"\n,\n\"0142000\"\n,\n\"0142715\"\n,\n\"0142780\"\n,\n\"0145583\"\n,\n\"0145871\"\n,\n\"0147710\"\n,\n\"0148497\"\n,\n\"0148626\"\n,\n\"0149465\"\n,\n\"0150818\"\n,\n\"0153145\"\n,\n\"0157380\"\n,\n\"0161425\"\n,\n\"0161522\"\n,\n\"0164148\"\n,\n\"0168748\"\n,\n\"0171272\"\n,\n\"0172077\"\n,\n\"0178405\"\n,\n\"0180007\"\n,\n\"0180725\"\n,\n\"0183736\"\n,\n\"0184880\"\n,\n\"0186750\"\n,\n\"0197417\"\n,\n\"0197479\"\n,\n\"0199654\"\n,\n\"0200005\"\n,\n\"0200754\"\n,\n\"0201035\"\n,\n\"0201337\"\n,\n\"0201989\"\n,\n\"0202176\"\n,\n\"0202988\"\n,\n\"0203192\"\n,\n\"0203241\"\n,\n\"0203574\"\n,\n\"0205059\"\n,\n\"0205971\"\n,\n\"0206332\"\n,\n\"0206696\"\n,\n\"0206890\"\n,\n\"0207300\"\n,\n\"0207393\"\n,\n\"0207460\"\n,\n\"0208202\"\n,\n\"0208281\"\n,\n\"0208300\"\n,\n\"0208934\"\n,\n\"0210442\"\n,\n\"0211140\"\n,\n\"0212326\"\n,\n\"0213280\"\n,\n\"0213689\"\n,\n\"0215257\"\n,\n\"0215740\"\n,\n\"0215847\"\n,\n\"0215895\"\n,\n\"0216340\"\n,\n\"0216402\"\n,\n\"0216988\"\n,\n\"0217429\"\n,\n\"0218733\"\n,\n\"0219045\"\n,\n\"0219236\"\n,\n\"0219316\"\n,\n\"0220290\"\n,\n\"0220512\"\n,\n\"0220560\"\n,\n\"0223585\"\n,\n\"0223873\"\n,\n\"0225472\"\n,\n\"0225730\"\n,\n\"0225965\"\n,\n\"0227373\"\n,\n\"0228945\"\n,\n\"0228980\"\n,\n\"0230467\"\n,\n\"0230547\"\n,\n\"0230772\"\n,\n\"0230818\"\n,\n\"0231962\"\n,\n\"0232593\"\n,\n\"0233447\"\n,\n\"0233450\"\n,\n\"0233610\"\n,\n\"0234050\"\n,\n\"0234477\"\n,\n\"0234765\"\n,\n\"0235892\"\n,\n\"0236427\"\n,\n\"0238106\"\n,\n\"0238220\"\n,\n\"0238952\"\n,\n\"0239025\"\n,\n\"0239344\"\n,\n\"0240204\"\n,\n\"0241217\"\n,\n\"0241536\"\n,\n\"0241952\"\n,\n\"0243836\"\n,\n\"0244467\"\n,\n\"0244547\"\n,\n\"0244581\"\n,\n\"0244600\"\n,\n\"0246593\"\n,\n\"0247829\"\n,\n\"0248893\"\n,\n\"0249508\"\n,\n\"0250176\"\n,\n\"0250384\"\n,\n\"0250912\"\n,\n\"0251717\"\n,\n\"0253236\"\n,\n\"0255872\"\n,\n\"0257680\"\n,\n\"0258023\"\n,\n\"0258099\"\n,\n\"0258516\"\n,\n\"0260024\"\n,\n\"0260250\"\n,\n\"0261071\"\n,\n\"0261821\"\n,\n\"0262515\"\n,\n\"0262630\"\n,\n\"0262914\"\n,\n\"0263035\"\n,\n\"0263660\"\n,\n\"0264065\"\n,\n\"0265020\"\n,\n\"0265401\"\n,\n\"0266299\"\n,\n\"0267652\"\n,\n\"0268027\"\n,\n\"0268887\"\n,\n\"0269700\"\n,\n\"0269727\"\n,\n\"0270732\"\n,\n\"0271124\"\n,\n\"0273694\"\n,\n\"0273709\"\n,\n\"0275467\"\n,\n\"0275710\"\n,\n\"0275755\"\n,\n\"0275804\"\n,\n\"0278003\"\n,\n\"0279290\"\n,\n\"0280451\"\n,\n\"0282020\"\n,\n\"0282450\"\n,\n\"0282591\"\n,\n\"0283268\"\n,\n\"0284968\"\n,\n\"0285124\"\n,\n\"0285266\"\n,\n\"0286300\"\n,\n\"0287438\"\n,\n\"0287552\"\n,\n\"0287868\"\n,\n\"0288760\"\n,\n\"0288995\"\n,\n\"0289453\"\n,\n\"0289516\"\n,\n\"0289564\"\n,\n\"0291964\"\n,\n\"0292040\"\n,\n\"0292818\"\n,\n\"0292977\"\n,\n\"0293851\"\n,\n\"0294066\"\n,\n\"0294992\"\n,\n\"0295239\"\n,\n\"0295592\"\n,\n\"0296432\"\n,\n\"0296526\"\n,\n\"0296560\"\n,\n\"0297348\"\n,\n\"0297653\"\n,\n\"0297910\"\n,\n\"0298059\"\n,\n\"0298621\"\n,\n\"0298666\"\n,\n\"0299315\"\n,\n\"0299488\"\n,\n\"0300480\"\n,\n\"0301001\"\n,\n\"0302302\"\n,\n\"0303204\"\n,\n\"0304043\"\n,\n\"0306725\"\n,\n\"0306836\"\n,\n\"0307440\"\n,\n\"0308040\"\n,\n\"0308292\"\n,\n\"0310179\"\n,\n\"0312420\"\n,\n\"0312611\"\n,\n\"0313287\"\n,\n\"0313402\"\n,\n\"0313527\"\n,\n\"0314942\"\n,\n\"0315130\"\n,\n\"0315800\"\n,\n\"0316000\"\n,\n\"0318057\"\n,\n\"0318633\"\n,\n\"0319504\"\n,\n\"0320491\"\n,\n\"0321012\"\n,\n\"0321203\"\n,\n\"0321519\"\n,\n\"0321758\"\n,\n\"0324790\"\n,\n\"0324804\"\n,\n\"0325369\"\n,\n\"0325390\"\n,\n\"0325577\"\n,\n\"0327686\"\n,\n\"0327909\"\n,\n\"0327988\"\n,\n\"0328033\"\n,\n\"0328304\"\n,\n\"0328828\"\n,\n\"0329781\"\n,\n\"0330991\"\n,\n\"0331450\"\n,\n\"0331640\"\n,\n\"0331939\"\n,\n\"0331973\"\n,\n\"0332191\"\n,\n\"0332590\"\n,\n\"0332733\"\n,\n\"0332969\"\n,\n\"0333045\"\n,\n\"0333111\"\n,\n\"0333190\"\n,\n\"0334510\"\n,\n\"0335217\"\n,\n\"0336247\"\n,\n\"0336774\"\n,\n\"0338085\"\n,\n\"0338710\"\n,\n\"0339133\"\n,\n\"0340309\"\n,\n\"0342768\"\n,\n\"0342865\"\n,\n\"0343163\"\n,\n\"0344273\"\n,\n\"0344721\"\n,\n\"0344797\"\n,\n\"0345429\"\n,\n\"0346720\"\n,\n\"0347489\"\n,\n\"0348839\"\n,\n\"0348873\"\n,\n\"0349602\"\n,\n\"0350045\"\n,\n\"0351089\"\n,\n\"0351776\"\n,\n\"0351811\"\n,\n\"0352490\"\n,\n\"0353441\"\n,\n\"0353549\"\n,\n\"0353632\"\n,\n\"0354579\"\n,\n\"0354693\"\n,\n\"0355675\"\n,\n\"0357660\"\n,\n\"0358624\"\n,\n\"0359477\"\n,\n\"0360132\"\n,\n\"0360690\"\n,\n\"0361641\"\n,\n\"0362560\"\n,\n\"0362637\"\n,\n\"0366620\"\n,\n\"0369835\"\n,\n\"0370597\"\n,\n\"0372179\"\n,\n\"0372342\"\n,\n\"0372422\"\n,\n\"0375801\"\n,\n\"0376016\"\n,\n\"0376095\"\n,\n\"0377636\"\n,\n\"0378253\"\n,\n\"0379155\"\n,\n\"0379599\"\n,\n\"0381729\"\n,\n\"0382155\"\n,\n\"0383328\"\n,\n\"0383775\"\n,\n\"0383824\"\n,\n\"0384424\"\n,\n\"0386613\"\n,\n\"0387369\"\n,\n\"0387372\"\n,\n\"0388163\"\n,\n\"0388944\"\n,\n\"0390116\"\n,\n\"0390200\"\n,\n\"0390230\"\n,\n\"0393175\"\n,\n\"0394320\"\n,\n\"0396728\"\n,\n\"0397890\"\n,\n\"0398597\"\n,\n\"0399517\"\n,\n\"0399645\"\n,\n\"0402060\"\n,\n\"0402330\"\n,\n\"0402757\"\n,\n\"0402982\"\n,\n\"0405178\"\n,\n\"0410305\"\n,\n\"0414013\"\n,\n\"0414155\"\n,\n\"0414585\"\n,\n\"0414808\"\n,\n\"0415456\"\n,\n\"0417170\"\n,\n\"0418010\"\n,\n\"0418980\"\n,\n\"0420166\"\n,\n\"0420517\"\n,\n\"0421010\"\n,\n\"0423230\"\n,\n\"0427780\"\n,\n\"0428169\"\n,\n\"0428301\"\n,\n\"0428922\"\n,\n\"0429234\"\n,\n\"0430732\"\n,\n\"0430923\"\n,\n\"0431377\"\n,\n\"0432123\"\n,\n\"0432137\"\n,\n\"0432185\"\n,\n\"0433597\"\n,\n\"0433632\"\n,\n\"0435502\"\n,\n\"0437115\"\n,\n\"0438225\"\n,\n\"0439207\"\n,\n\"0439512\"\n,\n\"0439939\"\n,\n\"0441863\"\n,\n\"0442973\"\n,\n\"0443285\"\n,\n\"0443542\"\n,\n\"0444427\"\n,\n\"0444860\"\n,\n\"0445000\"\n,\n\"0445394\"\n,\n\"0445460\"\n,\n\"0445856\"\n,\n\"0446026\"\n,\n\"0446442\"\n,\n\"0446886\"\n,\n\"0447407\"\n,\n\"0447823\"\n,\n\"0450198\"\n,\n\"0450410\"\n,\n\"0450486\"\n,\n\"0450570\"\n,\n\"0451149\"\n,\n\"0451437\"\n,\n\"0451884\"\n,\n\"0452658\"\n,\n\"0453660\"\n,\n\"0454337\"\n,\n\"0454802\"\n,\n\"0455402\"\n,\n\"0456990\"\n,\n\"0457050\"\n,\n\"0457285\"\n,\n\"0457303\"\n,\n\"0457511\"\n,\n\"0458860\"\n,\n\"0459058\"\n,\n\"0459394\"\n,\n\"0459682\"\n,\n\"0462235\"\n,\n\"0462762\"\n,\n\"0463217\"\n,\n\"0463918\"\n,\n\"0465007\"\n,\n\"0465485\"\n,\n\"0466804\"\n,\n\"0467324\"\n,\n\"0467341\"\n,\n\"0468958\"\n,\n\"0469114\"\n,\n\"0470691\"\n,\n\"0470768\"\n,\n\"0471230\"\n,\n\"0472367\"\n,\n\"0473175\"\n,\n\"0473939\"\n,\n\"0474889\"\n,\n\"0476665\"\n,\n\"0478042\"\n,\n\"0479055\"\n,\n\"0479579\"\n,\n\"0480234\"\n,\n\"0480970\"\n,\n\"0481167\"\n,\n\"0481358\"\n,\n\"0482038\"\n,\n\"0482631\"\n,\n\"0482836\"\n,\n\"0482981\"\n,\n\"0483498\"\n,\n\"0483578\"\n,\n\"0484657\"\n,\n\"0484660\"\n,\n\"0485052\"\n,\n\"0485545\"\n,\n\"0485820\"\n,\n\"0486096\"\n,\n\"0487530\"\n,\n\"0488525\"\n,\n\"0490450\"\n,\n\"0490654\"\n,\n\"0491907\"\n,\n\"0492510\"\n,\n\"0493190\"\n,\n\"0494522\"\n,\n\"0496454\"\n,\n\"0496534\"\n,\n\"0496760\"\n,\n\"0497068\"\n,\n\"0497578\"\n,\n\"0497821\"\n,\n\"0497929\"\n,\n\"0498227\"\n,\n\"0499337\"\n,\n\"0499642\"\n,\n\"0499833\"\n,\n\"0500312\"\n,\n\"0500468\"\n,\n\"0500981\"\n,\n\"0501360\"\n,\n\"0501467\"\n,\n\"0502626\"\n,\n\"0502710\"\n,\n\"0503306\"\n,\n\"0503531\"\n,\n\"0504131\"\n,\n\"0504176\"\n,\n\"0504420\"\n,\n\"0504797\"\n,\n\"0505269\"\n,\n\"0505349\"\n,\n\"0505654\"\n,\n\"0505717\"\n,\n\"0507298\"\n,\n\"0507489\"\n,\n\"0507683\"\n,\n\"0508967\"\n,\n\"0509393\"\n,\n\"0509807\"\n,\n\"0510093\"\n,\n\"0510652\"\n,\n\"0511329\"\n,\n\"0512997\"\n,\n\"0515692\"\n,\n\"0516053\"\n,\n\"0516771\"\n,\n\"0516799\"\n,\n\"0517115\"\n,\n\"0519020\"\n,\n\"0519432\"\n,\n\"0519720\"\n,\n\"0521017\"\n,\n\"0521607\"\n,\n\"0522192\"\n,\n\"0524635\"\n,\n\"0525172\"\n,\n\"0526540\"\n,\n\"0526695\"\n,\n\"0526935\"\n,\n\"0527810\"\n,\n\"0527837\"\n,\n\"0528197\"\n,\n\"0528534\"\n,\n\"0529308\"\n,\n\"0529901\"\n,\n\"0530313\"\n,\n\"0532037\"\n,\n\"0533036\"\n,\n\"0533292\"\n,\n\"0534434\"\n,\n\"0535114\"\n,\n\"0535416\"\n,\n\"0535930\"\n,\n\"0536064\"\n,\n\"0537670\"\n,\n\"0537750\"\n,\n\"0539426\"\n,\n\"0539759\"\n,\n\"0539998\"\n,\n\"0540240\"\n,\n\"0540938\"\n,\n\"0541045\"\n,\n\"0541284\"\n,\n\"0543060\"\n,\n\"0544712\"\n,\n\"0544948\"\n,\n\"0546103\"\n,\n\"0546228\"\n,\n\"0546342\"\n,\n\"0547706\"\n,\n\"0548608\"\n,\n\"0548944\"\n,\n\"0549128\"\n,\n\"0549561\"\n,\n\"0550626\"\n,\n\"0551528\"\n,\n\"0552500\"\n,\n\"0553210\"\n,\n\"0554174\"\n,\n\"0554525\"\n,\n\"0555298\"\n,\n\"0555461\"\n,\n\"0556426\"\n,\n\"0556457\"\n,\n\"0558455\"\n,\n\"0558615\"\n,\n\"0559662\"\n,\n\"0559853\"\n,\n\"0561278\"\n,\n\"0561361\"\n,\n\"0561375\"\n,\n\"0561712\"\n,\n\"0562055\"\n,\n\"0562867\"\n,\n\"0564660\"\n,\n\"0565066\"\n,\n\"0565900\"\n,\n\"0566079\"\n,\n\"0566239\"\n,\n\"0569569\"\n,\n\"0569812\"\n,\n\"0570480\"\n,\n\"0571299\"\n,\n\"0571619\"\n,\n\"0571670\"\n,\n\"0572777\"\n,\n\"0573089\"\n,\n\"0573430\"\n,\n\"0573491\"\n,\n\"0573860\"\n,\n\"0574678\"\n,\n\"0575202\"\n,\n\"0576010\"\n,\n\"0577280\"\n,\n\"0577710\"\n,\n\"0578660\"\n,\n\"0580214\"\n,\n\"0580689\"\n,\n\"0581084\"\n,\n\"0581386\"\n,\n\"0582784\"\n,\n\"0585109\"\n,\n\"0586461\"\n,\n\"0586649\"\n,\n\"0587044\"\n,\n\"0591234\"\n,\n\"0594103\"\n,\n\"0595022\"\n,\n\"0595098\"\n,\n\"0596927\"\n,\n\"0601082\"\n,\n\"0601131\"\n,\n\"0601558\"\n,\n\"0602050\"\n,\n\"0602557\"\n,\n\"0602668\"\n,\n\"0602845\"\n,\n\"0602987\"\n,\n\"0603029\"\n,\n\"0603206\"\n,\n\"0603223\"\n,\n\"0603844\"\n,\n\"0603907\"\n,\n\"0604604\"\n,\n\"0605443\"\n,\n\"0605491\"\n,\n\"0605780\"\n,\n\"0606540\"\n,\n\"0607011\"\n,\n\"0607629\"\n,\n\"0607810\"\n,\n\"0608680\"\n,\n\"0608787\"\n,\n\"0608950\"\n,\n\"0609440\"\n,\n\"0609498\"\n,\n\"0609533\"\n,\n\"0610042\"\n,\n\"0610264\"\n,\n\"0610632\"\n,\n\"0610840\"\n,\n\"0611232\"\n,\n\"0612453\"\n,\n\"0612661\"\n,\n\"0613501\"\n,\n\"0613688\"\n,\n\"0614035\"\n,\n\"0615530\"\n,\n\"0615672\"\n,\n\"0615926\"\n,\n\"0615988\"\n,\n\"0616748\"\n,\n\"0617223\"\n,\n\"0617844\"\n,\n\"0617907\"\n,\n\"0618590\"\n,\n\"0618670\"\n,\n\"0619811\"\n,\n\"0619842\"\n,\n\"0622169\"\n,\n\"0622380\"\n,\n\"0622922\"\n,\n\"0623487\"\n,\n\"0623744\"\n,\n\"0624233\"\n,\n\"0624295\"\n,\n\"0625950\"\n,\n\"0626071\"\n,\n\"0626661\"\n,\n\"0626835\"\n,\n\"0627040\"\n,\n\"0628740\"\n,\n\"0628878\"\n,\n\"0630754\"\n,\n\"0631243\"\n,\n\"0631337\"\n,\n\"0632690\"\n,\n\"0633207\"\n,\n\"0633318\"\n,\n\"0634160\"\n,\n\"0634285\"\n,\n\"0634414\"\n,\n\"0634764\"\n,\n\"0636218\"\n,\n\"0636620\"\n,\n\"0637408\"\n,\n\"0638441\"\n,\n\"0638486\"\n,\n\"0638632\"\n,\n\"0638806\"\n,\n\"0639090\"\n,\n\"0639437\"\n,\n\"0639485\"\n,\n\"0639739\"\n,\n\"0640026\"\n,\n\"0640168\"\n,\n\"0640598\"\n,\n\"0640792\"\n,\n\"0640952\"\n,\n\"0641140\"\n,\n\"0641810\"\n,\n\"0642010\"\n,\n\"0642149\"\n,\n\"0642294\"\n,\n\"0642360\"\n,\n\"0642790\"\n,\n\"0642995\"\n,\n\"0643356\"\n,\n\"0644084\"\n,\n\"0645371\"\n,\n\"0645816\"\n,\n\"0645992\"\n,\n\"0647734\"\n,\n\"0648160\"\n,\n\"0649701\"\n,\n\"0649732\"\n,\n\"0649891\"\n,\n\"0651622\"\n,\n\"0651795\"\n,\n\"0651861\"\n,\n\"0652590\"\n,\n\"0652985\"\n,\n\"0653058\"\n,\n\"0653235\"\n,\n\"0654091\"\n,\n\"0654380\"\n,\n\"0654886\"\n,\n\"0654921\"\n,\n\"0655552\"\n,\n\"0656326\"\n,\n\"0656471\"\n,\n\"0656503\"\n,\n\"0656548\"\n,\n\"0656659\"\n,\n\"0656787\"\n,\n\"0656805\"\n,\n\"0656867\"\n,\n\"0656981\"\n,\n\"0657103\"\n,\n\"0657373\"\n,\n\"0658244\"\n,\n\"0658532\"\n,\n\"0658563\"\n,\n\"0658626\"\n,\n\"0659656\"\n,\n\"0659961\"\n,\n\"0662146\"\n,\n\"0663256\"\n,\n\"0663592\"\n,\n\"0664100\"\n,\n\"0664574\"\n,\n\"0665050\"\n,\n\"0666267\"\n,\n\"0666732\"\n,\n\"0667682\"\n,\n\"0668553\"\n,\n\"0668838\"\n,\n\"0669119\"\n,\n\"0669712\"\n,\n\"0670013\"\n,\n\"0670235\"\n,\n\"0670283\"\n,\n\"0670329\"\n,\n\"0670970\"\n,\n\"0671460\"\n,\n\"0671758\"\n,\n\"0675848\"\n,\n\"0676465\"\n,\n\"0676881\"\n,\n\"0677450\"\n,\n\"0677513\"\n,\n\"0677624\"\n,\n\"0678610\"\n,\n\"0678956\"\n,\n\"0679299\"\n,\n\"0679684\"\n,\n\"0680096\"\n,\n\"0680180\"\n,\n\"0680367\"\n,\n\"0682206\"\n,\n\"0682268\"\n,\n\"0682476\"\n,\n\"0683156\"\n,\n\"0684679\"\n,\n\"0684714\"\n,\n\"0684728\"\n,\n\"0687166\"\n,\n\"0687645\"\n,\n\"0687659\"\n,\n\"0688040\"\n,\n\"0688741\"\n,\n\"0689737\"\n,\n\"0689851\"\n,\n\"0690024\"\n,\n\"0690631\"\n,\n\"0690840\"\n,\n\"0691852\"\n,\n\"0691950\"\n,\n\"0692053\"\n,\n\"0692084\"\n,\n\"0692213\"\n,\n\"0692435\"\n,\n\"0692550\"\n,\n\"0692737\"\n,\n\"0693129\"\n,\n\"0693337\"\n,\n\"0694114\"\n,\n\"0694242\"\n,\n\"0695831\"\n,\n\"0696032\"\n,\n\"0696109\"\n,\n\"0696174\"\n,\n\"0696414\"\n,\n\"0696525\"\n,\n\"0696716\"\n,\n\"0697219\"\n,\n\"0697697\"\n,\n\"0700299\"\n,\n\"0700667\"\n,\n\"0700781\"\n,\n\"0701971\"\n,\n\"0702000\"\n,\n\"0702061\"\n,\n\"0702124\"\n,\n\"0702297\"\n,\n\"0702953\"\n,\n\"0703633\"\n,\n\"0703681\"\n,\n\"0704202\"\n,\n\"0704300\"\n,\n\"0704441\"\n,\n\"0704712\"\n,\n\"0704837\"\n,\n\"0706071\"\n,\n\"0706360\"\n,\n\"0706440\"\n,\n\"0707529\"\n,\n\"0707594\"\n,\n\"0707980\"\n,\n\"0708291\"\n,\n\"0708642\"\n,\n\"0709239\"\n,\n\"0709530\"\n,\n\"0709704\"\n,\n\"0710421\"\n,\n\"0710563\"\n,\n\"0711257\"\n,\n\"0711465\"\n,\n\"0712384\"\n,\n\"0712420\"\n,\n\"0712592\"\n,\n\"0712770\"\n,\n\"0712960\"\n,\n\"0713016\"\n,\n\"0713100\"\n,\n\"0714445\"\n,\n\"0714698\"\n,\n\"0715857\"\n,\n\"0715940\"\n,\n\"0716058\"\n,\n\"0716110\"\n,\n\"0716696\"\n,\n\"0717074\"\n,\n\"0717456\"\n,\n\"0717519\"\n,\n\"0718300\"\n,\n\"0720536\"\n,\n\"0721295\"\n,\n\"0722410\"\n,\n\"0722964\"\n,\n\"0722978\"\n,\n\"0723516\"\n,\n\"0723835\"\n,\n\"0724053\"\n,\n\"0724546\"\n,\n\"0725340\"\n,\n\"0725900\"\n,\n\"0727911\"\n,\n\"0728254\"\n,\n\"0728382\"\n,\n\"0728493\"\n,\n\"0728924\"\n,\n\"0729843\"\n,\n\"0730161\"\n,\n\"0731001\"\n,\n\"0731285\"\n,\n\"0732222\"\n,\n\"0732572\"\n,\n\"0732750\"\n,\n\"0733523\"\n,\n\"0734217\"\n,\n\"0734952\"\n,\n\"0735490\"\n,\n\"0735570\"\n,\n\"0736183\"\n,\n\"0737484\"\n,\n\"0737595\"\n,\n\"0738546\"\n,\n\"0738550\"\n,\n\"0739354\"\n,\n\"0740010\"\n,\n\"0740440\"\n,\n\"0741213\"\n,\n\"0741710\"\n,\n\"0742448\"\n,\n\"0743079\"\n,\n\"0743880\"\n,\n\"0744429\"\n,\n\"0745046\"\n,\n\"0746430\"\n,\n\"0746458\"\n,\n\"0746538\"\n,\n\"0747811\"\n,\n\"0748030\"\n,\n\"0748057\"\n,\n\"0748217\"\n,\n\"0748234\"\n,\n\"0749490\"\n,\n\"0750811\"\n,\n\"0751088\"\n,\n\"0753183\"\n,\n\"0753680\"\n,\n\"0754182\"\n,\n\"0754520\"\n,\n\"0755691\"\n,\n\"0755879\"\n,\n\"0755962\"\n,\n\"0756101\"\n,\n\"0756177\"\n,\n\"0756230\"\n,\n\"0756576\"\n,\n\"0756992\"\n,\n\"0757100\"\n,\n\"0759032\"\n,\n\"0759268\"\n,\n\"0760561\"\n,\n\"0761720\"\n,\n\"0761734\"\n,\n\"0762573\"\n,\n\"0762640\"\n,\n\"0762955\"\n,\n\"0762972\"\n,\n\"0763461\"\n,\n\"0764089\"\n,\n\"0764110\"\n,\n\"0764665\"\n,\n\"0765154\"\n,\n\"0766743\"\n,\n\"0768040\"\n,\n\"0768387\"\n,\n\"0768550\"\n,\n\"0768661\"\n,\n\"0770708\"\n,\n\"0771311\"\n,\n\"0771932\"\n,\n\"0771950\"\n,\n\"0772019\"\n,\n\"0772258\"\n,\n\"0773163\"\n,\n\"0773500\"\n,\n\"0773642\"\n,\n\"0773784\"\n,\n\"0774416\"\n,\n\"0774610\"\n,\n\"0775352\"\n,\n\"0776032\"\n,\n\"0776480\"\n,\n\"0776670\"\n,\n\"0776955\"\n,\n\"0777076\"\n,\n\"0777093\"\n,\n\"0777812\"\n,\n\"0779123\"\n,\n\"0780142\"\n,\n\"0780444\"\n,\n\"0780458\"\n,\n\"0783472\"\n,\n\"0783663\"\n,\n\"0783979\"\n,\n\"0785006\"\n,\n\"0785658\"\n,\n\"0785772\"\n,\n\"0785818\"\n,\n\"0786067\"\n,\n\"0786723\"\n,\n\"0787816\"\n,\n\"0788305\"\n,\n\"0788416\"\n,\n\"0789383\"\n,\n\"0789703\"\n,\n\"0789987\"\n,\n\"0790576\"\n,\n\"0790900\"\n,\n\"0791770\"\n,\n\"0792349\"\n,\n\"0792668\"\n,\n\"0794108\"\n,\n\"0794316\"\n,\n\"0794524\"\n,\n\"0796265\"\n,\n\"0798215\"\n,\n\"0799245\"\n,\n\"0799600\"\n,\n\"0800296\"\n,\n\"0800328\"\n,\n\"0800376\"\n,\n\"0801899\"\n,\n\"0803214\"\n,\n\"0803950\"\n,\n\"0803994\"\n,\n\"0804515\"\n,\n\"0804563\"\n,\n\"0804723\"\n,\n\"0804976\"\n,\n\"0805083\"\n,\n\"0805146\"\n,\n\"0805479\"\n,\n\"0805850\"\n,\n\"0806290\"\n,\n\"0806815\"\n,\n\"0807002\"\n,\n\"0807158\"\n,\n\"0807210\"\n,\n\"0807415\"\n,\n\"0807685\"\n,\n\"0807876\"\n,\n\"0807973\"\n,\n\"0808414\"\n,\n\"0809427\"\n,\n\"0809541\"\n,\n\"0811747\"\n,\n\"0812059\"\n,\n\"0812187\"\n,\n\"0812750\"\n,\n\"0813266\"\n,\n\"0813350\"\n,\n\"0813793\"\n,\n\"0813842\"\n,\n\"0814505\"\n,\n\"0814540\"\n,\n\"0814713\"\n,\n\"0815632\"\n,\n\"0816104\"\n,\n\"0816503\"\n,\n\"0816756\"\n,\n\"0816947\"\n,\n\"0817010\"\n,\n\"0817023\"\n,\n\"0818386\"\n,\n\"0818550\"\n,\n\"0818710\"\n,\n\"0818768\"\n,\n\"0818834\"\n,\n\"0820148\"\n,\n\"0820630\"\n,\n\"0820769\"\n,\n\"0820932\"\n,\n\"0821292\"\n,\n\"0821421\"\n,\n\"0821594\"\n,\n\"0821643\"\n,\n\"0822066\"\n,\n\"0822243\"\n,\n\"0822310\"\n,\n\"0822403\"\n,\n\"0822611\"\n,\n\"0822687\"\n,\n\"0822798\"\n,\n\"0823145\"\n,\n\"0823193\"\n,\n\"0823225\"\n,\n\"0823305\"\n,\n\"0823384\"\n,\n\"0823589\"\n,\n\"0823877\"\n,\n\"0823880\"\n,\n\"0824207\"\n,\n\"0824290\"\n,\n\"0824415\"\n,\n\"0824477\"\n,\n\"0824654\"\n,\n\"0826205\"\n,\n\"0826489\"\n,\n\"0826538\"\n,\n\"0827873\"\n,\n\"0828439\"\n,\n\"0828456\"\n,\n\"0828727\"\n,\n\"0830620\"\n,\n\"0831282\"\n,\n\"0831650\"\n,\n\"0831807\"\n,\n\"0832073\"\n,\n\"0832965\"\n,\n\"0833086\"\n,\n\"0833121\"\n,\n\"0833229\"\n,\n\"0833836\"\n,\n\"0834085\"\n,\n\"0834516\"\n,\n\"0834835\"\n,\n\"0835150\"\n,\n\"0835550\"\n,\n\"0836944\"\n,\n\"0836989\"\n,\n\"0837561\"\n,\n\"0837624\"\n,\n\"0837991\"\n,\n\"0838668\"\n,\n\"0840003\"\n,\n\"0840402\"\n,\n\"0840513\"\n,\n\"0841349\"\n,\n\"0842303\"\n,\n\"0842907\"\n,\n\"0842924\"\n,\n\"0843253\"\n,\n\"0843746\"\n,\n\"0843891\"\n,\n\"0844092\"\n,\n\"0844860\"\n,\n\"0845074\"\n,\n\"0845425\"\n,\n\"0845695\"\n,\n\"0845775\"\n,\n\"0845792\"\n,\n\"0845918\"\n,\n\"0846184\"\n,\n\"0846220\"\n,\n\"0846760\"\n,\n\"0846806\"\n,\n\"0846934\"\n,\n\"0847250\"\n,\n\"0847330\"\n,\n\"0847503\"\n,\n\"0847950\"\n,\n\"0848010\"\n,\n\"0848262\"\n,\n\"0849195\"\n,\n\"0849483\"\n,\n\"0849550\"\n,\n\"0850995\"\n,\n\"0851228\"\n,\n\"0851276\"\n,\n\"0851498\"\n,\n\"0851520\"\n,\n\"0852053\"\n,\n\"0852067\"\n,\n\"0853049\"\n,\n\"0853260\"\n,\n\"0854096\"\n,\n\"0854162\"\n,\n\"0854180\"\n,\n\"0854290\"\n,\n\"0854607\"\n,\n\"0854655\"\n,\n\"0855765\"\n,\n\"0855859\"\n,\n\"0856365\"\n,\n\"0856428\"\n,\n\"0856493\"\n,\n\"0856622\"\n,\n\"0857843\"\n,\n\"0857857\"\n,\n\"0858013\"\n,\n\"0858346\"\n,\n\"0858350\"\n,\n\"0858839\"\n,\n\"0859057\"\n,\n\"0860510\"\n,\n\"0860732\"\n,\n\"0861394\"\n,\n\"0861412\"\n,\n\"0862106\"\n,\n\"0862110\"\n,\n\"0862220\"\n,\n\"0862234\"\n,\n\"0862536\"\n,\n\"0863073\"\n,\n\"0863791\"\n,\n\"0863868\"\n,\n\"0864215\"\n,\n\"0864374\"\n,\n\"0864628\"\n,\n\"0864725\"\n,\n\"0865023\"\n,\n\"0865134\"\n,\n\"0865148\"\n,\n\"0865387\"\n,\n\"0865440\"\n,\n\"0865550\"\n,\n\"0865883\"\n,\n\"0866102\"\n,\n\"0866195\"\n,\n\"0867448\"\n,\n\"0868242\"\n,\n\"0869192\"\n,\n\"0869318\"\n,\n\"0869814\"\n,\n\"0871420\"\n,\n\"0871829\"\n,\n\"0872335\"\n,\n\"0872637\"\n,\n\"0873698\"\n,\n\"0874812\"\n,\n\"0874985\"\n,\n\"0875027\"\n,\n\"0876171\"\n,\n\"0876300\"\n,\n\"0877025\"\n,\n\"0878534\"\n,\n\"0879440\"\n,\n\"0879502\"\n,\n\"0879994\"\n,\n\"0880344\"\n,\n\"0880601\"\n,\n\"0880663\"\n,\n\"0880920\"\n,\n\"0880996\"\n,\n\"0881055\"\n,\n\"0881756\"\n,\n\"0881773\"\n,\n\"0882010\"\n,\n\"0882182\"\n,\n\"0882262\"\n,\n\"0883120\"\n,\n\"0883563\"\n,\n\"0884864\"\n,\n\"0886064\"\n,\n\"0886158\"\n,\n\"0886637\"\n,\n\"0886703\"\n,\n\"0886751\"\n,\n\"0887015\"\n,\n\"0887237\"\n,\n\"0887414\"\n,\n\"0887747\"\n,\n\"0888173\"\n,\n\"0888284\"\n,\n\"0888444\"\n,\n\"0888729\"\n,\n\"0890126\"\n,\n\"0890795\"\n,\n\"0890892\"\n,\n\"0891139\"\n,\n\"0891843\"\n,\n\"0893171\"\n,\n\"0893199\"\n,\n\"0893408\"\n,\n\"0893442\"\n,\n\"0893584\"\n,\n\"0893650\"\n,\n\"0894392\"\n,\n\"0894823\"\n,\n\"0895232\"\n,\n\"0895410\"\n,\n\"0895499\"\n,\n\"0895676\"\n,\n\"0895760\"\n,\n\"0895790\"\n,\n\"0898146\"\n,\n\"0898531\"\n,\n\"0898562\"\n,\n\"0898593\"\n,\n\"0898660\"\n,\n\"0898740\"\n,\n\"0898864\"\n,\n\"0898989\"\n,\n\"0899145\"\n,\n\"0899287\"\n,\n\"0899464\"\n,\n\"0900068\"\n,\n\"0900165\"\n,\n\"0900280\"\n,\n\"0901116\"\n,\n\"0901470\"\n,\n\"0901497\"\n,\n\"0902913\"\n,\n\"0902958\"\n,\n\"0903017\"\n,\n\"0904925\"\n,\n\"0904942\"\n,\n\"0905157\"\n,\n\"0906173\"\n,\n\"0906923\"\n,\n\"0906937\"\n,\n\"0906971\"\n,\n\"0907058\"\n,\n\"0907297\"\n,\n\"0907409\"\n,\n\"0907537\"\n,\n\"0908154\"\n,\n\"0908536\"\n,\n\"0908775\"\n,\n\"0908792\"\n,\n\"0909518\"\n,\n\"0910030\"\n,\n\"0910620\"\n,\n\"0910762\"\n,\n\"0911584\"\n,\n\"0911681\"\n,\n\"0911838\"\n,\n\"0913118\"\n,\n\"0913468\"\n,\n\"0913485\"\n,\n\"0913950\"\n,\n\"0914068\"\n,\n\"0914390\"\n,\n\"0914835\"\n,\n\"0915630\"\n,\n\"0915660\"\n,\n\"0915737\"\n,\n\"0915768\"\n,\n\"0915865\"\n,\n\"0916146\"\n,\n\"0916368\"\n,\n\"0916850\"\n,\n\"0918100\"\n,\n\"0918113\"\n,\n\"0918175\"\n,\n\"0918588\"\n,\n\"0918765\"\n,\n\"0919080\"\n,\n\"0919587\"\n,\n\"0919640\"\n,\n\"0920242\"\n,\n\"0921064\"\n,\n\"0921779\"\n,\n\"0922587\"\n,\n\"0923062\"\n,\n\"0923139\"\n,\n\"0923320\"\n,\n\"0923492\"\n,\n\"0923524\"\n,\n\"0923891\"\n,\n\"0924169\"\n,\n\"0924745\"\n,\n\"0924922\"\n,\n\"0925203\"\n,\n\"0925296\"\n,\n\"0925442\"\n,\n\"0925519\"\n,\n\"0927326\"\n,\n\"0927579\"\n,\n\"0927950\"\n,\n\"0928356\"\n,\n\"0929040\"\n,\n\"0929200\"\n,\n\"0929882\"\n,\n\"0930246\"\n,\n\"0931293\"\n,\n\"0931564\"\n,\n\"0931769\"\n,\n\"0931915\"\n,\n\"0932036\"\n,\n\"0932258\"\n,\n\"0933274\"\n,\n\"0933531\"\n,\n\"0933593\"\n,\n\"0933930\"\n,\n\"0934225\"\n,\n\"0934416\"\n,\n\"0934638\"\n,\n\"0934721\"\n,\n\"0934957\"\n,\n\"0935002\"\n,\n\"0935560\"\n,\n\"0935751\"\n,\n\"0936636\"\n,\n\"0937427\"\n,\n\"0938218\"\n,\n\"0938221\"\n,\n\"0938394\"\n,\n\"0938426\"\n,\n\"0938953\"\n,\n\"0939009\"\n,\n\"0939620\"\n,\n\"0940750\"\n,\n\"0940891\"\n,\n\"0941329\"\n,\n\"0941665\"\n,\n\"0941731\"\n,\n\"0942328\"\n,\n\"0942380\"\n,\n\"0942983\"\n,\n\"0943056\"\n,\n\"0943934\"\n,\n\"0944197\"\n,\n\"0945099\"\n,\n\"0945151\"\n,\n\"0945231\"\n,\n\"0945259\"\n,\n\"0945689\"\n,\n\"0945738\"\n,\n\"0945963\"\n,\n\"0946390\"\n,\n\"0946532\"\n,\n\"0946771\"\n,\n\"0947975\"\n,\n\"0948513\"\n,\n\"0948592\"\n,\n\"0949144\"\n,\n\"0950021\"\n,\n\"0950420\"\n,\n\"0950434\"\n,\n\"0950545\"\n,\n\"0950576\"\n,\n\"0951180\"\n,\n\"0951447\"\n,\n\"0951607\"\n,\n\"0951718\"\n,\n\"0951880\"\n,\n\"0952429\"\n,\n\"0952699\"\n,\n\"0953476\"\n,\n\"0954649\"\n,\n\"0956185\"\n,\n\"0956328\"\n,\n\"0957743\"\n,\n\"0958468\"\n,\n\"0959710\"\n,\n\"0959915\"\n,\n\"0960140\"\n,\n\"0960979\"\n,\n\"0961072\"\n,\n\"0961121\"\n,\n\"0961263\"\n,\n\"0961950\"\n,\n\"0962373\"\n,\n\"0962422\"\n,\n\"0962436\"\n,\n\"0963404\"\n,\n\"0964864\"\n,\n\"0964989\"\n,\n\"0964992\"\n,\n\"0965017\"\n,\n\"0965943\"\n,\n\"0966717\"\n,\n\"0966800\"\n,\n\"0966862\"\n,\n\"0967955\"\n,\n\"0968080\"\n,\n\"0968701\"\n,\n\"0968809\"\n,\n\"0969235\"\n,\n\"0969679\"\n,\n\"0973411\"\n,\n\"0973807\"\n,\n\"0973886\"\n,\n\"0975010\"\n,\n\"0975246\"\n,\n\"0975995\"\n,\n\"0976228\"\n,\n\"0977230\"\n,\n\"0977768\"\n,\n\"0977980\"\n,\n\"0978531\"\n,\n\"0978975\"\n,\n\"0979242\"\n,\n\"0980310\"\n,\n\"0980657\"\n,\n\"0981753\"\n,\n\"0981913\"\n,\n\"0981944\"\n,\n\"0981961\"\n,\n\"0982096\"\n,\n\"0982322\"\n,\n\"0982721\"\n,\n\"0982770\"\n,\n\"0983637\"\n,\n\"0983831\"\n,\n\"0983956\"\n,\n\"0985812\"\n,\n\"0988885\"\n,\n\"0989454\"\n,\n\"0989628\"\n,\n\"0990473\"\n,\n\"0990886\"\n,\n\"0991056\"\n,\n\"0991060\"\n,\n\"0992898\"\n,\n\"0993165\"\n,\n\"0993293\"\n,\n\"0993467\"\n,\n\"0993790\"\n,\n\"0994546\"\n,\n\"0994914\"\n,\n\"0995066\"\n,\n\"0996211\"\n,\n\"0996607\"\n,\n\"0996797\"\n,\n\"0997095\"\n,\n\"0997765\"\n,\n\"0999780\"\n,\n\"0999857\"\n,\n\"100000\"\n,\n\"100001\"\n,\n\"100002\"\n,\n\"100003\"\n,\n\"100004\"\n,\n\"100005\"\n,\n\"100006\"\n,\n\"100007\"\n,\n\"100008\"\n,\n\"100009\"\n,\n\"100010\"\n,\n\"100011\"\n,\n\"100013\"\n,\n\"100014\"\n,\n\"100016\"\n,\n\"100017\"\n,\n\"1000172\"\n,\n\"100018\"\n,\n\"100019\"\n,\n\"100020\"\n,\n\"1000204\"\n,\n\"100021\"\n,\n\"100023\"\n,\n\"100024\"\n,\n\"1000249\"\n,\n\"100025\"\n,\n\"100026\"\n,\n\"100027\"\n,\n\"100028\"\n,\n\"100029\"\n,\n\"1000297\"\n,\n\"100030\"\n,\n\"1000301\"\n,\n\"100031\"\n,\n\"100032\"\n,\n\"100033\"\n,\n\"100034\"\n,\n\"100035\"\n,\n\"100036\"\n,\n\"100037\"\n,\n\"100038\"\n,\n\"100039\"\n,\n\"100040\"\n,\n\"100041\"\n,\n\"100042\"\n,\n\"100043\"\n,\n\"100044\"\n,\n\"100045\"\n,\n\"100046\"\n,\n\"100047\"\n,\n\"100048\"\n,\n\"100049\"\n,\n\"100050\"\n,\n\"100051\"\n,\n\"100052\"\n,\n\"100053\"\n,\n\"100054\"\n,\n\"100055\"\n,\n\"100056\"\n,\n\"100057\"\n,\n\"100058\"\n,\n\"100059\"\n,\n\"1000599\"\n,\n\"100060\"\n,\n\"100061\"\n,\n\"100062\"\n,\n\"100063\"\n,\n\"100064\"\n,\n\"100065\"\n,\n\"100066\"\n,\n\"100067\"\n,\n\"100068\"\n,\n\"100069\"\n,\n\"100070\"\n,\n\"100071\"\n,\n\"100072\"\n,\n\"100073\"\n,\n\"100074\"\n,\n\"1000745\"\n,\n\"100075\"\n,\n\"100076\"\n,\n\"100077\"\n,\n\"100078\"\n,\n\"100079\"\n,\n\"100081\"\n,\n\"100082\"\n,\n\"1000825\"\n,\n\"100083\"\n,\n\"100084\"\n,\n\"1000842\"\n,\n\"100085\"\n,\n\"100086\"\n,\n\"100087\"\n,\n\"100089\"\n,\n\"100090\"\n,\n\"100091\"\n,\n\"100092\"\n,\n\"100093\"\n,\n\"100095\"\n,\n\"100096\"\n,\n\"100097\"\n,\n\"100098\"\n,\n\"100099\"\n,\n\"100100\"\n,\n\"100101\"\n,\n\"100102\"\n,\n\"100103\"\n,\n\"100104\"\n,\n\"100105\"\n,\n\"100106\"\n,\n\"100107\"\n,\n\"100108\"\n,\n\"100109\"\n,\n\"100111\"\n,\n\"100112\"\n,\n\"100113\"\n,\n\"100114\"\n,\n\"100116\"\n,\n\"100117\"\n,\n\"100118\"\n,\n\"100119\"\n,\n\"100122\"\n,\n\"100123\"\n,\n\"100124\"\n,\n\"100125\"\n,\n\"100126\"\n,\n\"100128\"\n,\n\"100129\"\n,\n\"100131\"\n,\n\"100133\"\n,\n\"100134\"\n,\n\"100135\"\n,\n\"100136\"\n,\n\"100137\"\n,\n\"100138\"\n,\n\"100139\"\n,\n\"100140\"\n,\n\"100141\"\n,\n\"100142\"\n,\n\"100143\"\n,\n\"100144\"\n,\n\"100145\"\n,\n\"100146\"\n,\n\"100147\"\n,\n\"100148\"\n,\n\"100149\"\n,\n\"100150\"\n,\n\"100151\"\n,\n\"100152\"\n,\n\"1001522\"\n,\n\"100153\"\n,\n\"100154\"\n,\n\"100155\"\n,\n\"100156\"\n,\n\"100157\"\n,\n\"100158\"\n,\n\"100159\"\n,\n\"100160\"\n,\n\"100161\"\n,\n\"100162\"\n,\n\"100163\"\n,\n\"100164\"\n,\n\"100165\"\n,\n\"100166\"\n,\n\"100167\"\n,\n\"100168\"\n,\n\"100173\"\n,\n\"100174\"\n,\n\"100175\"\n,\n\"100177\"\n,\n\"100178\"\n,\n\"100179\"\n,\n\"100180\"\n,\n\"100181\"\n,\n\"100182\"\n,\n\"100183\"\n,\n\"1001872\"\n,\n\"1002650\"\n,\n\"1002694\"\n,\n\"1002760\"\n,\n\"1004276\"\n,\n\"1004405\"\n,\n\"1004564\"\n,\n\"1004835\"\n,\n\"1004852\"\n,\n\"1005386\"\n,\n\"1005466\"\n,\n\"1006434\"\n,\n\"1006496\"\n,\n\"1006690\"\n,\n\"1006944\"\n,\n\"1006958\"\n,\n\"1007211\"\n,\n\"1007398\"\n,\n\"1007575\"\n,\n\"1007610\"\n,\n\"1007926\"\n,\n\"1008269\"\n,\n\"1008304\"\n,\n\"1008862\"\n,\n\"1008876\"\n,\n\"1009130\"\n,\n\"1009191\"\n,\n\"1009400\"\n,\n\"1009622\"\n,\n\"1009636\"\n,\n\"1009972\"\n,\n\"1010193\"\n,\n\"1010225\"\n,\n\"1010290\"\n,\n\"1010319\"\n,\n\"1010589\"\n,\n\"1010669\"\n,\n\"1010718\"\n,\n\"1010832\"\n,\n\"1010974\"\n,\n\"1011095\"\n,\n\"1011207\"\n,\n\"1011560\"\n,\n\"1011591\"\n,\n\"1011720\"\n,\n\"1011893\"\n,\n\"1011956\"\n,\n\"1011973\"\n,\n\"1012174\"\n,\n\"1012587\"\n,\n\"1012605\"\n,\n\"1012684\"\n,\n\"1013014\"\n,\n\"1013093\"\n,\n\"1013489\"\n,\n\"1013670\"\n,\n\"1014000\"\n,\n\"1014044\"\n,\n\"1014058\"\n,\n\"1014061\"\n,\n\"1014092\"\n,\n\"1014138\"\n,\n\"1014141\"\n,\n\"1014350\"\n,\n\"1015091\"\n,\n\"1015616\"\n,\n\"1015678\"\n,\n\"1015730\"\n,\n\"1015918\"\n,\n\"1016220\"\n,\n\"1016375\"\n,\n\"1016469\"\n,\n\"1016632\"\n,\n\"1016694\"\n,\n\"1016709\"\n,\n\"1016810\"\n,\n\"1016982\"\n,\n\"1016996\"\n,\n\"1017007\"\n,\n\"1017038\"\n,\n\"1017069\"\n,\n\"1017170\"\n,\n\"1017232\"\n,\n\"1017277\"\n,\n\"1017485\"\n,\n\"1017631\"\n,\n\"1017805\"\n,\n\"1017836\"\n,\n\"1017950\"\n,\n\"1017964\"\n,\n\"1017978\"\n,\n\"1018228\"\n,\n\"1018422\"\n,\n\"1018436\"\n,\n\"1018453\"\n,\n\"1018484\"\n,\n\"1018520\"\n,\n\"1018658\"\n,\n\"1018741\"\n,\n\"1018818\"\n,\n\"1018849\"\n,\n\"1018932\"\n,\n\"1019022\"\n,\n\"1019084\"\n,\n\"1019466\"\n,\n\"1019515\"\n,\n\"1019737\"\n,\n\"1019785\"\n,\n\"1020659\"\n,\n\"1022515\"\n,\n\"1023368\"\n,\n\"1024239\"\n,\n\"1024287\"\n,\n\"1024447\"\n,\n\"1026622\"\n,\n\"1027156\"\n,\n\"1027395\"\n,\n\"1029487\"\n,\n\"1029810\"\n,\n\"1030427\"\n,\n\"1030809\"\n,\n\"1031350\"\n,\n\"1031620\"\n,\n\"1031745\"\n,\n\"1032091\"\n,\n\"1032279\"\n,\n\"1032300\"\n,\n\"1032439\"\n,\n\"1033073\"\n,\n\"1033438\"\n,\n\"1033566\"\n,\n\"1034330\"\n,\n\"1034485\"\n,\n\"1034978\"\n,\n\"1035786\"\n,\n\"1035963\"\n,\n\"1036740\"\n,\n\"1036993\"\n,\n\"1037209\"\n,\n\"1037274\"\n,\n\"1037496\"\n,\n\"1038287\"\n,\n\"1039450\"\n,\n\"1039814\"\n,\n\"1040180\"\n,\n\"1040260\"\n,\n\"1040323\"\n,\n\"1040385\"\n,\n\"1041561\"\n,\n\"1041607\"\n,\n\"1042113\"\n,\n\"1042352\"\n,\n\"1043365\"\n,\n\"1043476\"\n,\n\"1043750\"\n,\n\"1043907\"\n,\n\"1044683\"\n,\n\"1044910\"\n,\n\"1045092\"\n,\n\"1045808\"\n,\n\"1046217\"\n,\n\"1046570\"\n,\n\"1047250\"\n,\n\"1048170\"\n,\n\"1048548\"\n,\n\"1048551\"\n,\n\"1049280\"\n,\n\"1049308\"\n,\n\"1049738\"\n,\n\"1049866\"\n,\n\"1049929\"\n,\n\"1050073\"\n,\n\"1051485\"\n,\n\"1052804\"\n,\n\"1054291\"\n,\n\"1054690\"\n,\n\"1056020\"\n,\n\"1056290\"\n,\n\"1056318\"\n,\n\"1057431\"\n,\n\"1057702\"\n,\n\"1058028\"\n,\n\"1058298\"\n,\n\"1058826\"\n,\n\"1059488\"\n,\n\"1059762\"\n,\n\"1059970\"\n,\n\"1060619\"\n,\n\"1060653\"\n,\n\"1060667\"\n,\n\"1061350\"\n,\n\"1061461\"\n,\n\"1062839\"\n,\n\"1064136\"\n,\n\"1064140\"\n,\n\"1064389\"\n,\n\"1064521\"\n,\n\"1064552\"\n,\n\"1064774\"\n,\n\"1066897\"\n,\n\"1067230\"\n,\n\"1067418\"\n,\n\"1067803\"\n,\n\"1068083\"\n,\n\"1068194\"\n,\n\"1068354\"\n,\n\"1068500\"\n,\n\"1069003\"\n,\n\"1069051\"\n,\n\"1069225\"\n,\n\"1070660\"\n,\n\"1070785\"\n,\n\"1070896\"\n,\n\"1070962\"\n,\n\"1071021\"\n,\n\"1071083\"\n,\n\"1071163\"\n,\n\"1071528\"\n,\n\"1072020\"\n,\n\"1072558\"\n,\n\"1072561\"\n,\n\"1072669\"\n,\n\"1073925\"\n,\n\"1074206\"\n,\n\"1074924\"\n,\n\"1075028\"\n,\n\"1075604\"\n,\n\"1076409\"\n,\n\"1076510\"\n,\n\"1077012\"\n,\n\"1077248\"\n,\n\"1077380\"\n,\n\"1077456\"\n,\n\"1077490\"\n,\n\"1078389\"\n,\n\"1079072\"\n,\n\"1080376\"\n,\n\"1081167\"\n,\n\"1081410\"\n,\n\"1081694\"\n,\n\"1081726\"\n,\n\"1082391\"\n,\n\"1082739\"\n,\n\"1082978\"\n,\n\"1083724\"\n,\n\"1083929\"\n,\n\"1084404\"\n,\n\"1085021\"\n,\n\"1086079\"\n,\n\"1086575\"\n,\n\"1086783\"\n,\n\"1087002\"\n,\n\"1087033\"\n,\n\"1087349\"\n,\n\"1088334\"\n,\n\"1088941\"\n,\n\"1089843\"\n,\n\"1090383\"\n,\n\"1090637\"\n,\n\"1090734\"\n,\n\"1091029\"\n,\n\"1091619\"\n,\n\"1091640\"\n,\n\"1092076\"\n,\n\"1092729\"\n,\n\"1092794\"\n,\n\"1093554\"\n,\n\"1093617\"\n,\n\"1094043\"\n,\n\"1094345\"\n,\n\"1094490\"\n,\n\"1094505\"\n,\n\"1095504\"\n,\n\"1096055\"\n,\n\"1096503\"\n,\n\"1097259\"\n,\n\"1097627\"\n,\n\"1097661\"\n,\n\"1098404\"\n,\n\"1098706\"\n,\n\"1099323\"\n,\n\"1099528\"\n,\n\"1099767\"\n,\n\"1099881\"\n,\n\"1100870\"\n,\n\"1100920\"\n,\n\"1101675\"\n,\n\"1101835\"\n,\n\"1101866\"\n,\n\"1102310\"\n,\n\"1103004\"\n,\n\"1103226\"\n,\n\"1103448\"\n,\n\"1103531\"\n,\n\"1103833\"\n,\n\"1103878\"\n,\n\"1103989\"\n,\n\"1104260\"\n,\n\"1104721\"\n,\n\"1105318\"\n,\n\"1106428\"\n,\n\"1107413\"\n,\n\"1107697\"\n,\n\"1108141\"\n,\n\"1108873\"\n,\n\"1108940\"\n,\n\"1109519\"\n,\n\"1110222\"\n,\n\"1110524\"\n,\n\"1110906\"\n,\n\"1112456\"\n,\n\"1112872\"\n,\n\"1113056\"\n,\n\"1113140\"\n,\n\"1113344\"\n,\n\"1113629\"\n,\n\"1114152\"\n,\n\"1114884\"\n,\n\"1115915\"\n,\n\"1116710\"\n,\n\"1116737\"\n,\n\"1118114\"\n,\n\"1118145\"\n,\n\"1118495\"\n,\n\"1118766\"\n,\n\"1119637\"\n,\n\"1119814\"\n,\n\"1120129\"\n,\n\"1120417\"\n,\n\"1120753\"\n,\n\"1120927\"\n,\n\"1121159\"\n,\n\"1122286\"\n,\n\"1122911\"\n,\n\"1123050\"\n,\n\"1123698\"\n,\n\"1123907\"\n,\n\"1123986\"\n,\n\"1124187\"\n,\n\"1124586\"\n,\n\"1125620\"\n,\n\"1125873\"\n,\n\"1125936\"\n,\n\"1126282\"\n,\n\"1126362\"\n,\n\"1126598\"\n,\n\"1127486\"\n,\n\"1128055\"\n,\n\"1128330\"\n,\n\"1128600\"\n,\n\"1129533\"\n,\n\"1129818\"\n,\n\"1130791\"\n,\n\"1131760\"\n,\n\"1132006\"\n,\n\"1132120\"\n,\n\"1132245\"\n,\n\"1132325\"\n,\n\"1132550\"\n,\n\"1132870\"\n,\n\"1133261\"\n,\n\"1134260\"\n,\n\"1134288\"\n,\n\"1134660\"\n,\n\"1134784\"\n,\n\"1134961\"\n,\n\"1137698\"\n,\n\"1138430\"\n,\n\"1138750\"\n,\n\"1139679\"\n,\n\"1139696\"\n,\n\"1139728\"\n,\n\"1139970\"\n,\n\"1140240\"\n,\n\"1140351\"\n,\n\"1140445\"\n,\n\"1141427\"\n,\n\"1141510\"\n,\n\"1142634\"\n,\n\"1142682\"\n,\n\"1142922\"\n,\n\"1144407\"\n,\n\"1146068\"\n,\n\"1146564\"\n,\n\"1147372\"\n,\n\"1147497\"\n,\n\"1147710\"\n,\n\"1148660\"\n,\n\"1149065\"\n,\n\"1149176\"\n,\n\"1149319\"\n,\n\"1150529\"\n,\n\"1150660\"\n,\n\"1151212\"\n,\n\"1151230\"\n,\n\"1151740\"\n,\n\"1152096\"\n,\n\"1152735\"\n,\n\"1153210\"\n,\n\"1153509\"\n,\n\"1153543\"\n,\n\"1153637\"\n,\n\"1154365\"\n,\n\"1154476\"\n,\n\"1154861\"\n,\n\"1155586\"\n,\n\"1155670\"\n,\n\"1156186\"\n,\n\"1157789\"\n,\n\"1158119\"\n,\n\"1158300\"\n,\n\"1158583\"\n,\n\"1159069\"\n,\n\"1160168\"\n,\n\"1160234\"\n,\n\"1161281\"\n,\n\"1162024\"\n,\n\"1162041\"\n,\n\"1163006\"\n,\n\"1163099\"\n,\n\"1163356\"\n,\n\"1163422\"\n,\n\"1164022\"\n,\n\"1164452\"\n,\n\"1165021\"\n,\n\"1165230\"\n,\n\"1165528\"\n,\n\"1165913\"\n,\n\"1166766\"\n,\n\"1166877\"\n,\n\"1167192\"\n,\n\"1167318\"\n,\n\"1168094\"\n,\n\"1168191\"\n,\n\"1168299\"\n,\n\"1168542\"\n,\n\"1172205\"\n,\n\"1172780\"\n,\n\"1173998\"\n,\n\"1174296\"\n,\n\"1175295\"\n,\n\"1176055\"\n,\n\"1176790\"\n,\n\"1177550\"\n,\n\"1178116\"\n,\n\"1178768\"\n,\n\"1179864\"\n,\n\"1180099\"\n,\n\"1180547\"\n,\n\"1181740\"\n,\n\"1182642\"\n,\n\"1183544\"\n,\n\"1183850\"\n,\n\"1184734\"\n,\n\"1185525\"\n,\n\"1187523\"\n,\n\"1189504\"\n,\n\"1189982\"\n,\n\"1191199\"\n,\n\"1191904\"\n,\n\"1192549\"\n,\n\"1193548\"\n,\n\"1196070\"\n,\n\"1196753\"\n,\n\"1196770\"\n,\n\"1196820\"\n,\n\"1197353\"\n,\n\"1197530\"\n,\n\"1197589\"\n,\n\"1197943\"\n,\n\"1197988\"\n,\n\"1198095\"\n,\n\"1198911\"\n,\n\"1200274\"\n,\n\"1200337\"\n,\n\"1200340\"\n,\n\"1200687\"\n,\n\"1203063\"\n,\n\"1203720\"\n,\n\"1203990\"\n,\n\"1204697\"\n,\n\"1204860\"\n,\n\"1204906\"\n,\n\"1205457\"\n,\n\"1205460\"\n,\n\"1205700\"\n,\n\"1205873\"\n,\n\"1205936\"\n,\n\"1206522\"\n,\n\"1207140\"\n,\n\"1207220\"\n,\n\"1207410\"\n,\n\"1208038\"\n,\n\"1208565\"\n,\n\"1209502\"\n,\n\"1209950\"\n,\n\"1210136\"\n,\n\"1210344\"\n,\n\"1210760\"\n,\n\"1210774\"\n,\n\"1211884\"\n,\n\"1212134\"\n,\n\"1212262\"\n,\n\"1212484\"\n,\n\"1212595\"\n,\n\"1213036\"\n,\n\"1213470\"\n,\n\"1213515\"\n,\n\"1214642\"\n,\n\"1215589\"\n,\n\"1215735\"\n,\n\"1215880\"\n,\n\"1215909\"\n,\n\"1216557\"\n,\n\"1216703\"\n,\n\"1217396\"\n,\n\"1217653\"\n,\n\"1217941\"\n,\n\"1218139\"\n,\n\"1218173\"\n,\n\"1218489\"\n,\n\"1218715\"\n,\n\"1218812\"\n,\n\"1219013\"\n,\n\"1219141\"\n,\n\"1219940\"\n,\n\"1220210\"\n,\n\"1220875\"\n,\n\"1220955\"\n,\n\"1221062\"\n,\n\"1221080\"\n,\n\"1221111\"\n,\n\"1222696\"\n,\n\"1222890\"\n,\n\"1222905\"\n,\n\"1223248\"\n,\n\"1223886\"\n,\n\"1223890\"\n,\n\"1224632\"\n,\n\"1224810\"\n,\n\"1224868\"\n,\n\"1225440\"\n,\n\"1226228\"\n,\n\"1226689\"\n,\n\"1227195\"\n,\n\"1227421\"\n,\n\"1227817\"\n,\n\"1228340\"\n,\n\"1228559\"\n,\n\"1228798\"\n,\n\"1228881\"\n,\n\"1229051\"\n,\n\"1229260\"\n,\n\"1229322\"\n,\n\"1229370\"\n,\n\"123 456 \"\n,\n\"1230882\"\n,\n\"1230959\"\n,\n\"1231288\"\n,\n\"1231310\"\n,\n\"1231451\"\n,\n\"1231895\"\n,\n\"1232096\"\n,\n\"1232100\"\n,\n\"1232398\"\n,\n\"1233290\"\n,\n\"1233734\"\n,\n\"1234567\"\n,\n\"12345678\"\n,\n\"1235187\"\n,\n\"1235381\"\n,\n\"1236571\"\n,\n\"1236984\"\n,\n\"1237952\"\n,\n\"1238233\"\n,\n\"1238583\"\n,\n\"1238774\"\n,\n\"1239118\"\n,\n\"1240057\"\n,\n\"1240106\"\n,\n\"1240282\"\n,\n\"1240473\"\n,\n\"1240681\"\n,\n\"1242659\"\n,\n\"1242773\"\n,\n\"1242853\"\n,\n\"1243068\"\n,\n\"1243578\"\n,\n\"1243929\"\n,\n\"1244532\"\n,\n\"1244626\"\n,\n\"1244820\"\n,\n\"1245385\"\n,\n\"1245451\"\n,\n\"1247210\"\n,\n\"1247238\"\n,\n\"1247383\"\n,\n\"1247717\"\n,\n\"1248268\"\n,\n\"1248619\"\n,\n\"1248972\"\n,\n\"1249444\"\n,\n\"1249697\"\n,\n\"1249763\"\n,\n\"1249937\"\n,\n\"1249940\"\n,\n\"1250241\"\n,\n\"1250925\"\n,\n\"1252028\"\n,\n\"1252062\"\n,\n\"1252590\"\n,\n\"1253474\"\n,\n\"1253571\"\n,\n\"1253998\"\n,\n\"1254088\"\n,\n\"1254331\"\n,\n\"1254553\"\n,\n\"1254570\"\n,\n\"1254761\"\n,\n\"1254890\"\n,\n\"1254949\"\n,\n\"1255917\"\n,\n\"1256170\"\n,\n\"1256579\"\n,\n\"1256582\"\n,\n\"1256760\"\n,\n\"1256950\"\n,\n\"1257360\"\n,\n\"1257502\"\n,\n\"1257755\"\n,\n\"1257804\"\n,\n\"1257932\"\n,\n\"1258754\"\n,\n\"1258803\"\n,\n\"1258900\"\n,\n\"1258928\"\n,\n\"1259115\"\n,\n\"1259310\"\n,\n\"1259878\"\n,\n\"1260245\"\n,\n\"1260280\"\n,\n\"1260516\"\n,\n\"1261019\"\n,\n\"1261594\"\n,\n\"1262066\"\n,\n\"1263020\"\n,\n\"1263176\"\n,\n\"1263208\"\n,\n\"1263607\"\n,\n\"1264158\"\n,\n\"1265143\"\n,\n\"1265268\"\n,\n\"1265428\"\n,\n\"1265969\"\n,\n\"1265972\"\n,\n\"1266093\"\n,\n\"1266320\"\n,\n\"1266492\"\n,\n\"1266812\"\n,\n\"1267013\"\n,\n\"1267172\"\n,\n\"1267412\"\n,\n\"1267430\"\n,\n\"1267443\"\n,\n\"1267523\"\n,\n\"1267554\"\n,\n\"1267762\"\n,\n\"1267793\"\n,\n\"1267856\"\n,\n\"1269136\"\n,\n\"1269726\"\n,\n\"1269840\"\n,\n\"1270443\"\n,\n\"1270887\"\n,\n\"1270998\"\n,\n\"1271456\"\n,\n\"1272136\"\n,\n\"1272646\"\n,\n\"1272823\"\n,\n\"1274099\"\n,\n\"1274182\"\n,\n\"1274196\"\n,\n\"1274373\"\n,\n\"1274453\"\n,\n\"1274470\"\n,\n\"1275005\"\n,\n\"1275019\"\n,\n\"1275470\"\n,\n\"1275959\"\n,\n\"1276403\"\n,\n\"1276989\"\n,\n\"1277096\"\n,\n\"1277353\"\n,\n\"1277641\"\n,\n\"1277669\"\n,\n\"1277850\"\n,\n\"1279188\"\n,\n\"1279365\"\n,\n\"1279400\"\n,\n\"1279781\"\n,\n\"1280162\"\n,\n\"1280655\"\n,\n\"1280672\"\n,\n\"1280686\"\n,\n\"1280991\"\n,\n\"1281671\"\n,\n\"1281828\"\n,\n\"1282400\"\n,\n\"1282476\"\n,\n\"1282542\"\n,\n\"1283031\"\n,\n\"1283538\"\n,\n\"1284506\"\n,\n\"1284603\"\n,\n\"1284873\"\n,\n\"1284887\"\n,\n\"1286025\"\n,\n\"1286136\"\n,\n\"1287870\"\n,\n\"1287947\"\n,\n\"1288963\"\n,\n\"1288980\"\n,\n\"1289019\"\n,\n\"1289098\"\n,\n\"1289851\"\n,\n\"1289914\"\n,\n\"1291228\"\n,\n\"1291484\"\n,\n\"1291852\"\n,\n\"1292550\"\n,\n\"1292609\"\n,\n\"1292626\"\n,\n\"1293802\"\n,\n\"1293895\"\n,\n\"1294225\"\n,\n\"1295717\"\n,\n\"1295814\"\n,\n\"1295942\"\n,\n\"1296348\"\n,\n\"1296462\"\n,\n\"1296778\"\n,\n\"1296800\"\n,\n\"1297045\"\n,\n\"1297108\"\n,\n\"1297604\"\n,\n\"1298027\"\n,\n\"1298249\"\n,\n\"1299203\"\n,\n\"1299279\"\n,\n\"1299393\"\n,\n\"1299647\"\n,\n\"1299855\"\n,\n\"1300348\"\n,\n\"1301142\"\n,\n\"1301267\"\n,\n\"1302350\"\n,\n\"1302540\"\n,\n\"1303584\"\n,\n\"1304056\"\n,\n\"1305614\"\n,\n\"1306179\"\n,\n\"1306200\"\n,\n\"1307098\"\n,\n\"1307390\"\n,\n\"1307834\"\n,\n\"1308576\"\n,\n\"1309256\"\n,\n\"1309718\"\n,\n\"1310563\"\n,\n\"1310737\"\n,\n\"1310980\"\n,\n\"1311021\"\n,\n\"1311260\"\n,\n\"1311451\"\n,\n\"1311479\"\n,\n\"1311559\"\n,\n\"1311944\"\n,\n\"1312079\"\n,\n\"1312880\"\n,\n\"1314303\"\n,\n\"1315031\"\n,\n\"1315059\"\n,\n\"1315125\"\n,\n\"1315139\"\n,\n\"1315670\"\n,\n\"1316426\"\n,\n\"1316460\"\n,\n\"1316665\"\n,\n\"1318090\"\n,\n\"1318615\"\n,\n\"1319250\"\n,\n\"1319565\"\n,\n\"1323259\"\n,\n\"1323276\"\n,\n\"1324133\"\n,\n\"1324754\"\n,\n\"1326208\"\n,\n\"1326242\"\n,\n\"1328046\"\n,\n\"1328174\"\n,\n\"1329732\"\n,\n\"1330779\"\n,\n\"1331029\"\n,\n\"1331560\"\n,\n\"1331670\"\n,\n\"1332378\"\n,\n\"1332381\"\n,\n\"1333013\"\n,\n\"1334328\"\n,\n\"1334810\"\n,\n\"1334997\"\n,\n\"1336007\"\n,\n\"1336902\"\n,\n\"1336947\"\n,\n\"1337148\"\n,\n\"1337259\"\n,\n\"1337390\"\n,\n\"1338053\"\n,\n\"1338706\"\n,\n\"1339531\"\n,\n\"1339625\"\n,\n\"1339913\"\n,\n\"1340627\"\n,\n\"1341609\"\n,\n\"1341706\"\n,\n\"1343051\"\n,\n\"1343704\"\n,\n\"1344397\"\n,\n\"1344717\"\n,\n\"1345969\"\n,\n\"1347585\"\n,\n\"1348251\"\n,\n\"1348362\"\n,\n\"1348966\"\n,\n\"1350839\"\n,\n\"1351123\"\n,\n\"1351872\"\n,\n\"1352025\"\n,\n\"1352247\"\n,\n\"1353884\"\n,\n\"1354179\"\n,\n\"1355612\"\n,\n\"1357384\"\n,\n\"1358779\"\n,\n\"1359126\"\n,\n\"1359720\"\n,\n\"1360638\"\n,\n\"1362955\"\n,\n\"1363604\"\n,\n\"1363780\"\n,\n\"1364905\"\n,\n\"1365185\"\n,\n\"1367822\"\n,\n\"1370007\"\n,\n\"1370947\"\n,\n\"1371470\"\n,\n\"1372310\"\n,\n\"1373310\"\n,\n\"1373496\"\n,\n\"1373767\"\n,\n\"1373784\"\n,\n\"1374305\"\n,\n\"1374367\"\n,\n\"1374450\"\n,\n\"1374589\"\n,\n\"1374974\"\n,\n\"1375238\"\n,\n\"1376143\"\n,\n\"1376240\"\n,\n\"1376396\"\n,\n\"1376508\"\n,\n\"1376844\"\n,\n\"1377541\"\n,\n\"1377683\"\n,\n\"1377906\"\n,\n\"1377937\"\n,\n\"1378651\"\n,\n\"1378728\"\n,\n\"1378762\"\n,\n\"1380729\"\n,\n\"1384149\"\n,\n\"1384197\"\n,\n\"1384312\"\n,\n\"1385037\"\n,\n\"1385308\"\n,\n\"1385498\"\n,\n\"1386150\"\n,\n\"1386213\"\n,\n\"1386723\"\n,\n\"1389286\"\n,\n\"1390451\"\n,\n\"1390545\"\n,\n\"1392796\"\n,\n\"1392908\"\n,\n\"1393414\"\n,\n\"1394458\"\n,\n\"1394732\"\n,\n\"1396970\"\n,\n\"1397837\"\n,\n\"1399037\"\n,\n\"1399120\"\n,\n\"1399200\"\n,\n\"1399692\"\n,\n\"1400393\"\n,\n\"1401278\"\n,\n\"1403484\"\n,\n\"1403520\"\n,\n\"1403804\"\n,\n\"1405212\"\n,\n\"1406877\"\n,\n\"1409857\"\n,\n\"1410349\"\n,\n\"1410828\"\n,\n\"1416471\"\n,\n\"1419656\"\n,\n\"1421133\"\n,\n\"1421550\"\n,\n\"1421660\"\n,\n\"1422451\"\n,\n\"1422642\"\n,\n\"1423322\"\n,\n\"1425268\"\n,\n\"1425560\"\n,\n\"1428505\"\n,\n\"1428966\"\n,\n\"1430409\"\n,\n\"1430762\"\n,\n\"1432663\"\n,\n\"1432951\"\n,\n\"1433902\"\n,\n\"1435338\"\n,\n\"1435865\"\n,\n\"1437752\"\n,\n\"1439126\"\n,\n\"1441880\"\n,\n\"1443621\"\n,\n\"1445966\"\n,\n\"1446300\"\n,\n\"1449594\"\n,\n\"1450739\"\n,\n\"1451440\"\n,\n\"1451821\"\n,\n\"1457014\"\n,\n\"1457794\"\n,\n\"1460350\"\n,\n\"1460381\"\n,\n\"1460492\"\n,\n\"1462331\"\n,\n\"1463039\"\n,\n\"1463202\"\n,\n\"1463597\"\n,\n\"1463810\"\n,\n\"1463920\"\n,\n\"1464645\"\n,\n\"1467420\"\n,\n\"1469512\"\n,\n\"1469530\"\n,\n\"1469911\"\n,\n\"1470274\"\n,\n\"1470420\"\n,\n\"1470482\"\n,\n\"1470496\"\n,\n\"1470562\"\n,\n\"1470847\"\n,\n\"1471211\"\n,\n\"1471305\"\n,\n\"1471340\"\n,\n\"1471416\"\n,\n\"1471749\"\n,\n\"1472210\"\n,\n\"1472224\"\n,\n\"1472610\"\n,\n\"1472814\"\n,\n\"1472973\"\n,\n\"1473240\"\n,\n\"1473254\"\n,\n\"1473636\"\n,\n\"1474461\"\n,\n\"1474524\"\n,\n\"1474572\"\n,\n\"1475027\"\n,\n\"1475172\"\n,\n\"1476411\"\n,\n\"1478135\"\n,\n\"1478215\"\n,\n\"1478360\"\n,\n\"1478410\"\n,\n\"1479661\"\n,\n\"1479901\"\n,\n\"1480327\"\n,\n\"1480358\"\n,\n\"1483053\"\n,\n\"1483164\"\n,\n\"1484850\"\n,\n\"1489491\"\n,\n\"1489634\"\n,\n\"1489731\"\n,\n\"1490382\"\n,\n\"1491302\"\n,\n\"1491413\"\n,\n\"1491937\"\n,\n\"1492890\"\n,\n\"1493168\"\n,\n\"1493203\"\n,\n\"1493248\"\n,\n\"1493345\"\n,\n\"1493380\"\n,\n\"1493620\"\n,\n\"1493761\"\n,\n\"1493789\"\n,\n\"1493810\"\n,\n\"1493855\"\n,\n\"1493872\"\n,\n\"1493949\"\n,\n\"1494136\"\n,\n\"1494278\"\n,\n\"1494313\"\n,\n\"1496707\"\n,\n\"1497040\"\n,\n\"1497195\"\n,\n\"1497418\"\n,\n\"1497470\"\n,\n\"1497550\"\n,\n\"1497643\"\n,\n\"1497660\"\n,\n\"1497688\"\n,\n\"1497706\"\n,\n\"1498576\"\n,\n\"1499894\"\n,\n\"1500630\"\n,\n\"1501102\"\n,\n\"1501310\"\n,\n\"1501532\"\n,\n\"1502115\"\n,\n\"1504987\"\n,\n\"1505160\"\n,\n\"1505590\"\n,\n\"1505733\"\n,\n\"1505972\"\n,\n\"1506395\"\n,\n\"1506541\"\n,\n\"1508030\"\n,\n\"1509840\"\n,\n\"1510058\"\n,\n\"1511185\"\n,\n\"1513853\"\n,\n\"1513884\"\n,\n\"1514293\"\n,\n\"1514520\"\n,\n\"1514849\"\n,\n\"1515386\"\n,\n\"1515580\"\n,\n\"1515612\"\n,\n\"1515980\"\n,\n\"1516531\"\n,\n\"1516639\"\n,\n\"1517145\"\n,\n\"1517305\"\n,\n\"1517607\"\n,\n\"1517672\"\n,\n\"1518318\"\n,\n\"1518321\"\n,\n\"1518623\"\n,\n\"1518720\"\n,\n\"1518734\"\n,\n\"1519015\"\n,\n\"1519046\"\n,\n\"1519379\"\n,\n\"1519511\"\n,\n\"1519556\"\n,\n\"1519778\"\n,\n\"1519858\"\n,\n\"1519990\"\n,\n\"1520193\"\n,\n\"1520513\"\n,\n\"1520641\"\n,\n\"1520669\"\n,\n\"1520752\"\n,\n\"1521020\"\n,\n\"1521144\"\n,\n\"1521161\"\n,\n\"1521238\"\n,\n\"1521272\"\n,\n\"1521349\"\n,\n\"1521640\"\n,\n\"1521911\"\n,\n\"1522174\"\n,\n\"1522237\"\n,\n\"1522254\"\n,\n\"1522511\"\n,\n\"1522720\"\n,\n\"1522800\"\n,\n\"1522830\"\n,\n\"1523045\"\n,\n\"1523173\"\n,\n\"1523302\"\n,\n\"1523590\"\n,\n\"1523683\"\n,\n\"1524075\"\n,\n\"1525060\"\n,\n\"1525110\"\n,\n\"1525490\"\n,\n\"1525650\"\n,\n\"1526295\"\n,\n\"1526410\"\n,\n\"1526760\"\n,\n\"1527118\"\n,\n\"1527437\"\n,\n\"1528068\"\n,\n\"1528929\"\n,\n\"1529879\"\n,\n\"1529931\"\n,\n\"1530277\"\n,\n\"1530468\"\n,\n\"1531950\"\n,\n\"1532771\"\n,\n\"1532820\"\n,\n\"1533129\"\n,\n\"1533274\"\n,\n\"1533288\"\n,\n\"1533465\"\n,\n\"1533611\"\n,\n\"1534319\"\n,\n\"1534735\"\n,\n\"1535415\"\n,\n\"1535925\"\n,\n\"1536080\"\n,\n\"1536379\"\n,\n\"1536396\"\n,\n\"1537059\"\n,\n\"1537701\"\n,\n\"1537968\"\n,\n\"1538682\"\n,\n\"1538776\"\n,\n\"1539248\"\n,\n\"1539393\"\n,\n\"1539505\"\n,\n\"1540812\"\n,\n\"1540860\"\n,\n\"1543025\"\n,\n\"1543330\"\n,\n\"1543472\"\n,\n\"1543726\"\n,\n\"1543743\"\n,\n\"1544471\"\n,\n\"1545037\"\n,\n\"1545293\"\n,\n\"1545360\"\n,\n\"1545453\"\n,\n\"1545533\"\n,\n\"1545710\"\n,\n\"1546449\"\n,\n\"1546900\"\n,\n\"1547340\"\n,\n\"1547434\"\n,\n\"1547660\"\n,\n\"1548176\"\n,\n\"1548260\"\n,\n\"1549016\"\n,\n\"1549127\"\n,\n\"1549845\"\n,\n\"1549990\"\n,\n\"1550642\"\n,\n\"1550816\"\n,\n\"1550878\"\n,\n\"1551145\"\n,\n\"1551829\"\n,\n\"1551850\"\n,\n\"1551880\"\n,\n\"1553334\"\n,\n\"1554489\"\n,\n\"1554569\"\n,\n\"1554826\"\n,\n\"1554888\"\n,\n\"1555110\"\n,\n\"1555297\"\n,\n\"1555350\"\n,\n\"1555394\"\n,\n\"1555890\"\n,\n\"1555905\"\n,\n\"1556203\"\n,\n\"1556727\"\n,\n\"1557552\"\n,\n\"1558104\"\n,\n\"1558423\"\n,\n\"1558437\"\n,\n\"1558485\"\n,\n\"1558950\"\n,\n\"1559134\"\n,\n\"1559245\"\n,\n\"1559325\"\n,\n\"1559772\"\n,\n\"1560119\"\n,\n\"1560570\"\n,\n\"1560760\"\n,\n\"1561041\"\n,\n\"1561055\"\n,\n\"1561170\"\n,\n\"1561229\"\n,\n\"1561263\"\n,\n\"1561790\"\n,\n\"1561853\"\n,\n\"1562120\"\n,\n\"1562419\"\n,\n\"1562578\"\n,\n\"1563292\"\n,\n\"1563497\"\n,\n\"1563546\"\n,\n\"1564070\"\n,\n\"1564288\"\n,\n\"1564306\"\n,\n\"1564420\"\n,\n\"1564500\"\n,\n\"1564545\"\n,\n\"1564611\"\n,\n\"1564798\"\n,\n\"1564900\"\n,\n\"1565145\"\n,\n\"1565336\"\n,\n\"1565770\"\n,\n\"1566224\"\n,\n\"1566272\"\n,\n\"1566446\"\n,\n\"1566828\"\n,\n\"1566845\"\n,\n\"1566939\"\n,\n\"1567015\"\n,\n\"1567050\"\n,\n\"1567334\"\n,\n\"1567365\"\n,\n\"1567764\"\n,\n\"1568031\"\n,\n\"1568298\"\n,\n\"1568492\"\n,\n\"1568555\"\n,\n\"1568701\"\n,\n\"1568860\"\n,\n\"1569679\"\n,\n\"1569811\"\n,\n\"1570094\"\n,\n\"1570684\"\n,\n\"1571173\"\n,\n\"1571621\"\n,\n\"1571746\"\n,\n\"1572061\"\n,\n\"1572266\"\n,\n\"1572430\"\n,\n\"1573983\"\n,\n\"1574726\"\n,\n\"1575343\"\n,\n\"1575499\"\n,\n\"1575503\"\n,\n\"1576419\"\n,\n\"1576689\"\n,\n\"1576883\"\n,\n\"1576963\"\n,\n\"1577529\"\n,\n\"1577851\"\n,\n\"1578115\"\n,\n\"1578337\"\n,\n\"1578371\"\n,\n\"1578385\"\n,\n\"1578927\"\n,\n\"1579051\"\n,\n\"1579319\"\n,\n\"1579336\"\n,\n\"1579402\"\n,\n\"1579686\"\n,\n\"1580164\"\n,\n\"1580372\"\n,\n\"1581323\"\n,\n\"1581673\"\n,\n\"1582048\"\n,\n\"1582193\"\n,\n\"1582273\"\n,\n\"1582290\"\n,\n\"1583828\"\n,\n\"1584400\"\n,\n\"1584539\"\n,\n\"1585111\"\n,\n\"1585971\"\n,\n\"1586190\"\n,\n\"1586270\"\n,\n\"1586332\"\n,\n\"1586651\"\n,\n\"1587074\"\n,\n\"1587168\"\n,\n\"1587536\"\n,\n\"1587620\"\n,\n\"1587966\"\n,\n\"1588264\"\n,\n\"1588615\"\n,\n\"1590140\"\n,\n\"1590584\"\n,\n\"1590620\"\n,\n\"1590918\"\n,\n\"1591677\"\n,\n\"1592197\"\n,\n\"1592468\"\n,\n\"1593179\"\n,\n\"1593786\"\n,\n\"1593835\"\n,\n\"1593852\"\n,\n\"1594563\"\n,\n\"1594580\"\n,\n\"1595243\"\n,\n\"1596079\"\n,\n\"1596082\"\n,\n\"1596096\"\n,\n\"1596433\"\n,\n\"1596610\"\n,\n\"1597064\"\n,\n\"1598077\"\n,\n\"1598365\"\n,\n\"1598396\"\n,\n\"1598636\"\n,\n\"1598795\"\n,\n\"1599028\"\n,\n\"1599298\"\n,\n\"1599302\"\n,\n\"1599427\"\n,\n\"1599590\"\n,\n\"1599906\"\n,\n\"1600322\"\n,\n\"1600669\"\n,\n\"1600718\"\n,\n\"1600721\"\n,\n\"1600829\"\n,\n\"1602365\"\n,\n\"1603891\"\n,\n\"1604523\"\n,\n\"1605009\"\n,\n\"1605185\"\n,\n\"1606264\"\n,\n\"1607201\"\n,\n\"1607374\"\n,\n\"1607534\"\n,\n\"1607711\"\n,\n\"1609435\"\n,\n\"1610534\"\n,\n\"1611214\"\n,\n\"1611293\"\n,\n\"1611390\"\n,\n\"1611502\"\n,\n\"1611578\"\n,\n\"1611804\"\n,\n\"1611977\"\n,\n\"1612626\"\n,\n\"1612674\"\n,\n\"1612834\"\n,\n\"1612879\"\n,\n\"1613209\"\n,\n\"1613545\"\n,\n\"1613639\"\n,\n\"1613673\"\n,\n\"1614225\"\n,\n\"1614464\"\n,\n\"1614478\"\n,\n\"1614513\"\n,\n\"1615161\"\n,\n\"1615366\"\n,\n\"1615480\"\n,\n\"1615862\"\n,\n\"1615908\"\n,\n\"1615956\"\n,\n\"1616508\"\n,\n\"1616733\"\n,\n\"1616795\"\n,\n\"1617302\"\n,\n\"1617316\"\n,\n\"1617444\"\n,\n\"1617541\"\n,\n\"1618728\"\n,\n\"1619030\"\n,\n\"1619171\"\n,\n\"1619296\"\n,\n\"1619633\"\n,\n\"1619647\"\n,\n\"1620076\"\n,\n\"1620413\"\n,\n\"1620586\"\n,\n\"1621204\"\n,\n\"1622110\"\n,\n\"1622203\"\n,\n\"1622393\"\n,\n\"1623264\"\n,\n\"1624628\"\n,\n\"1624680\"\n,\n\"1626147\"\n,\n\"1626164\"\n,\n\"1626200\"\n,\n\"1626386\"\n,\n\"1626563\"\n,\n\"1626710\"\n,\n\"1626834\"\n,\n\"1627035\"\n,\n\"1627194\"\n,\n\"1627403\"\n,\n\"1627625\"\n,\n\"1627740\"\n,\n\"1628003\"\n,\n\"1628176\"\n,\n\"1628527\"\n,\n\"1628797\"\n,\n\"1629033\"\n,\n\"1629717\"\n,\n\"1631561\"\n,\n\"1631957\"\n,\n\"1632530\"\n,\n\"1632574\"\n,\n\"1632800\"\n,\n\"1633525\"\n,\n\"1633924\"\n,\n\"1634604\"\n,\n\"1634809\"\n,\n\"1635138\"\n,\n\"1635380\"\n,\n\"1636935\"\n,\n\"1636952\"\n,\n\"1637650\"\n,\n\"1638950\"\n,\n\"1639165\"\n,\n\"1639373\"\n,\n\"1639613\"\n,\n\"1639661\"\n,\n\"1641600\"\n,\n\"1641853\"\n,\n\"1642165\"\n,\n\"1645544\"\n,\n\"1648302\"\n,\n\"1648320\"\n,\n\"1648750\"\n,\n\"1651236\"\n,\n\"1651937\"\n,\n\"1653380\"\n,\n\"1653761\"\n,\n\"1654757\"\n,\n\"1654774\"\n,\n\"1654951\"\n,\n\"1655277\"\n,\n\"1655388\"\n,\n\"1655790\"\n,\n\"1655822\"\n,\n\"1655836\"\n,\n\"1656120\"\n,\n\"1657147\"\n,\n\"1657404\"\n,\n\"1657577\"\n,\n\"1657626\"\n,\n\"1658018\"\n,\n\"1658212\"\n,\n\"1658323\"\n,\n\"1658385\"\n,\n\"1658642\"\n,\n\"1658958\"\n,\n\"1659128\"\n,\n\"1660133\"\n,\n\"1660390\"\n,\n\"1660928\"\n,\n\"1661066\"\n,\n\"1661368\"\n,\n\"1661496\"\n,\n\"1661660\"\n,\n\"1661798\"\n,\n\"1662020\"\n,\n\"1662051\"\n,\n\"1662128\"\n,\n\"1662180\"\n,\n\"1662336\"\n,\n\"1662815\"\n,\n\"1663047\"\n,\n\"1663800\"\n,\n\"1663911\"\n,\n\"1664029\"\n,\n\"1664050\"\n,\n\"1664285\"\n,\n\"1664990\"\n,\n\"1665475\"\n,\n\"1665524\"\n,\n\"1665538\"\n,\n\"1665666\"\n,\n\"1665777\"\n,\n\"1666000\"\n,\n\"1666075\"\n,\n\"1666332\"\n,\n\"1666762\"\n,\n\"1666919\"\n,\n\"1667137\"\n,\n\"1667140\"\n,\n\"1667154\"\n,\n\"1667345\"\n,\n\"1667393\"\n,\n\"1667490\"\n,\n\"1667519\"\n,\n\"1667584\"\n,\n\"1667647\"\n,\n\"1667807\"\n,\n\"1668025\"\n,\n\"1669978\"\n,\n\"1670380\"\n,\n\"1670439\"\n,\n\"1670540\"\n,\n\"1670647\"\n,\n\"1671566\"\n,\n\"1671601\"\n,\n\"1671788\"\n,\n\"1672072\"\n,\n\"1672326\"\n,\n\"1672388\"\n,\n\"1672503\"\n,\n\"1672805\"\n,\n\"1673040\"\n,\n\"1673068\"\n,\n\"1673308\"\n,\n\"1673484\"\n,\n\"1673644\"\n,\n\"1674372\"\n,\n\"1674532\"\n,\n\"1674768\"\n,\n\"1674771\"\n,\n\"1675528\"\n,\n\"1675611\"\n,\n\"1675820\"\n,\n\"1675881\"\n,\n\"1676416\"\n,\n\"1676783\"\n,\n\"1676797\"\n,\n\"1676832\"\n,\n\"1676846\"\n,\n\"1676930\"\n,\n\"1676960\"\n,\n\"1677286\"\n,\n\"1677876\"\n,\n\"1678670\"\n,\n\"1679139\"\n,\n\"1679381\"\n,\n\"1679746\"\n,\n\"1679906\"\n,\n\"1679937\"\n,\n\"1680637\"\n,\n\"1680654\"\n,\n\"1680828\"\n,\n\"1681379\"\n,\n\"1681400\"\n,\n\"1681556\"\n,\n\"1681733\"\n,\n\"1681813\"\n,\n\"1682777\"\n,\n\"1683107\"\n,\n\"1683266\"\n,\n\"1683329\"\n,\n\"1683460\"\n,\n\"1684251\"\n,\n\"1684872\"\n,\n\"1685220\"\n,\n\"1685486\"\n,\n\"1685730\"\n,\n\"1686010\"\n,\n\"1686440\"\n,\n\"1687099\"\n,\n\"1687196\"\n,\n\"1687630\"\n,\n\"1687707\"\n,\n\"1687741\"\n,\n\"1687772\"\n,\n\"1687980\"\n,\n\"1688546\"\n,\n\"1688691\"\n,\n\"1688882\"\n,\n\"1689004\"\n,\n\"1689129\"\n,\n\"1689576\"\n,\n\"1690134\"\n,\n\"1690627\"\n,\n\"1690658\"\n,\n\"1690835\"\n,\n\"1690870\"\n,\n\"1691070\"\n,\n\"1691133\"\n,\n\"1691310\"\n,\n\"1691515\"\n,\n\"1691834\"\n,\n\"1692146\"\n,\n\"1692257\"\n,\n\"1692306\"\n,\n\"1693930\"\n,\n\"1694255\"\n,\n\"1694290\"\n,\n\"1694366\"\n,\n\"1694383\"\n,\n\"1694415\"\n,\n\"1694509\"\n,\n\"1694588\"\n,\n\"1694717\"\n,\n\"1694973\"\n,\n\"1695109\"\n,\n\"1695400\"\n,\n\"1695431\"\n,\n\"1695476\"\n,\n\"1696156\"\n,\n\"1696489\"\n,\n\"1696524\"\n,\n\"1696541\"\n,\n\"1696780\"\n,\n\"1696830\"\n,\n\"1696888\"\n,\n\"1696910\"\n,\n\"1697270\"\n,\n\"1697460\"\n,\n\"1697474\"\n,\n\"1697634\"\n,\n\"1697887\"\n,\n\"1697940\"\n,\n\"1698331\"\n,\n\"1698584\"\n,\n\"1698970\"\n,\n\"1699011\"\n,\n\"1699025\"\n,\n\"1699167\"\n,\n\"1699361\"\n,\n\"1699455\"\n,\n\"1699486\"\n,\n\"1699615\"\n,\n\"1699760\"\n,\n\"1699979\"\n,\n\"1700080\"\n,\n\"1700108\"\n,\n\"1700715\"\n,\n\"1700860\"\n,\n\"1701266\"\n,\n\"1701270\"\n,\n\"1701350\"\n,\n\"1701488\"\n,\n\"1701568\"\n,\n\"1701599\"\n,\n\"1701665\"\n,\n\"1701780\"\n,\n\"1702110\"\n,\n\"1702282\"\n,\n\"1702700\"\n,\n\"1703056\"\n,\n\"1703198\"\n,\n\"1703264\"\n,\n\"1703791\"\n,\n\"1703837\"\n,\n\"1704360\"\n,\n\"1704499\"\n,\n\"1704548\"\n,\n\"1704756\"\n,\n\"1705440\"\n,\n\"1705600\"\n,\n\"1705630\"\n,\n\"1705852\"\n,\n\"1705977\"\n,\n\"1706147\"\n,\n\"1706258\"\n,\n\"1706550\"\n,\n\"1706626\"\n,\n\"1706723\"\n,\n\"1706993\"\n,\n\"1707194\"\n,\n\"1707209\"\n,\n\"1707260\"\n,\n\"1707593\"\n,\n\"1707642\"\n,\n\"1707992\"\n,\n\"1708384\"\n,\n\"1708544\"\n,\n\"1708669\"\n,\n\"1708909\"\n,\n\"1709591\"\n,\n\"1709925\"\n,\n\"1710018\"\n,\n\"1710066\"\n,\n\"1710608\"\n,\n\"1710625\"\n,\n\"1711079\"\n,\n\"1711287\"\n,\n\"1711655\"\n,\n\"1711690\"\n,\n\"1711766\"\n,\n\"1712654\"\n,\n\"1712703\"\n,\n\"1713001\"\n,\n\"1713240\"\n,\n\"1713764\"\n,\n\"1713795\"\n,\n\"1713830\"\n,\n\"1713910\"\n,\n\"1714489\"\n,\n\"1714715\"\n,\n\"1714985\"\n,\n\"1715460\"\n,\n\"1715967\"\n,\n\"1715984\"\n,\n\"1716009\"\n,\n\"1716057\"\n,\n\"1716265\"\n,\n\"1716376\"\n,\n\"1716890\"\n,\n\"1716997\"\n,\n\"1717119\"\n,\n\"1717136\"\n,\n\"1717327\"\n,\n\"1717344\"\n,\n\"1717518\"\n,\n\"1717680\"\n,\n\"1717791\"\n,\n\"1718197\"\n,\n\"1718263\"\n,\n\"1718517\"\n,\n\"1718628\"\n,\n\"1718631\"\n,\n\"1718884\"\n,\n\"1718898\"\n,\n\"1719502\"\n,\n\"1719564\"\n,\n\"1719595\"\n,\n\"1719818\"\n,\n\"1720504\"\n,\n\"1720663\"\n,\n\"1720677\"\n,\n\"1720979\"\n,\n\"1721565\"\n,\n\"1721693\"\n,\n\"1722010\"\n,\n\"1722120\"\n,\n\"1723098\"\n,\n\"1723307\"\n,\n\"1723501\"\n,\n\"1723865\"\n,\n\"1723882\"\n,\n\"1723976\"\n,\n\"1724209\"\n,\n\"1724212\"\n,\n\"1724385\"\n,\n\"1724465\"\n,\n\"1724479\"\n,\n\"1724531\"\n,\n\"1724864\"\n,\n\"1725145\"\n,\n\"1725353\"\n,\n\"1725495\"\n,\n\"1725863\"\n,\n\"1726113\"\n,\n\"1726290\"\n,\n\"1726304\"\n,\n\"1726668\"\n,\n\"1727268\"\n,\n\"1727271\"\n,\n\"1727379\"\n,\n\"1727431\"\n,\n\"1727667\"\n,\n\"1727733\"\n,\n\"1728045\"\n,\n\"1728187\"\n,\n\"1728524\"\n,\n\"1728715\"\n,\n\"1728843\"\n,\n\"1729155\"\n,\n\"1729218\"\n,\n\"1729221\"\n,\n\"1729235\"\n,\n\"1729554\"\n,\n\"1729651\"\n,\n\"1730112\"\n,\n\"1730157\"\n,\n\"1730268\"\n,\n\"1730285\"\n,\n\"1730334\"\n,\n\"1730573\"\n,\n\"1731809\"\n,\n\"1731860\"\n,\n\"1732092\"\n,\n\"1732603\"\n,\n\"1732617\"\n,\n\"1732651\"\n,\n\"1732856\"\n,\n\"1733012\"\n,\n\"1733251\"\n,\n\"1733570\"\n,\n\"1734042\"\n,\n\"1734170\"\n,\n\"1734313\"\n,\n\"1734570\"\n,\n\"1734920\"\n,\n\"1735055\"\n,\n\"1735135\"\n,\n\"1736120\"\n,\n\"1736339\"\n,\n\"1736467\"\n,\n\"1736932\"\n,\n\"1737258\"\n,\n\"1737275\"\n,\n\"1738129\"\n,\n\"1738690\"\n,\n\"1738719\"\n,\n\"1738722\"\n,\n\"1738958\"\n,\n\"1739290\"\n,\n\"1739416\"\n,\n\"1739530\"\n,\n\"1739575\"\n,\n\"1739610\"\n,\n\"1739669\"\n,\n\"1740181\"\n,\n\"1740195\"\n,\n\"1740213\"\n,\n\"1740803\"\n,\n\"1741066\"\n,\n\"1741900\"\n,\n\"1744112\"\n,\n\"1744813\"\n,\n\"1744830\"\n,\n\"1745666\"\n,\n\"1745812\"\n,\n\"1745891\"\n,\n\"1746297\"\n,\n\"1746412\"\n,\n\"1746679\"\n,\n\"1746682\"\n,\n\"1747030\"\n,\n\"1748344\"\n,\n\"1748410\"\n,\n\"1749072\"\n,\n\"1751615\"\n,\n\"1751632\"\n,\n\"1751726\"\n,\n\"1751760\"\n,\n\"1751840\"\n,\n\"1754470\"\n,\n\"1754691\"\n,\n\"1754879\"\n,\n\"1755816\"\n,\n\"1756530\"\n,\n\"1756766\"\n,\n\"1757113\"\n,\n\"1757130\"\n,\n\"1757158\"\n,\n\"1757401\"\n,\n\"1757720\"\n,\n\"1757779\"\n,\n\"1758223\"\n,\n\"1761493\"\n,\n\"1762538\"\n,\n\"1762572\"\n,\n\"1762763\"\n,\n\"1762985\"\n,\n\"1765490\"\n,\n\"1768150\"\n,\n\"1768418\"\n,\n\"1769740\"\n,\n\"1769850\"\n,\n\"1770581\"\n,\n\"1772465\"\n,\n\"1772611\"\n,\n\"1772642\"\n,\n\"1773863\"\n,\n\"1773877\"\n,\n\"1774100\"\n,\n\"1774175\"\n,\n\"1774782\"\n,\n\"1775160\"\n,\n\"1775210\"\n,\n\"1775223\"\n,\n\"1775972\"\n,\n\"1775990\"\n,\n\"1776059\"\n,\n\"1776350\"\n,\n\"1776618\"\n,\n\"1778009\"\n,\n\"1778140\"\n,\n\"1778775\"\n,\n\"1779220\"\n,\n\"1779920\"\n,\n\"1780599\"\n,\n\"1780808\"\n,\n\"1781598\"\n,\n\"1781904\"\n,\n\"1782597\"\n,\n\"1783437\"\n,\n\"1783756\"\n,\n\"1784613\"\n,\n\"1784901\"\n,\n\"1784994\"\n,\n\"1785550\"\n,\n\"1785577\"\n,\n\"1785580\"\n,\n\"1786243\"\n,\n\"1786417\"\n,\n\"1786958\"\n,\n\"1786975\"\n,\n\"1787641\"\n,\n\"1789188\"\n,\n\"1789320\"\n,\n\"1789972\"\n,\n\"1790131\"\n,\n\"1791530\"\n,\n\"1791543\"\n,\n\"1791893\"\n,\n\"1793400\"\n,\n\"1794665\"\n,\n\"1794842\"\n,\n\"1795584\"\n,\n\"1796060\"\n,\n\"1796250\"\n,\n\"1796840\"\n,\n\"1797468\"\n,\n\"1799067\"\n,\n\"1799421\"\n,\n\"1799737\"\n,\n\"1800281\"\n,\n\"1800726\"\n,\n\"1800774\"\n,\n\"1800788\"\n,\n\"1801229\"\n,\n\"1801406\"\n,\n\"1802915\"\n,\n\"1803914\"\n,\n\"1804097\"\n,\n\"1805960\"\n,\n\"1806127\"\n,\n\"1806304\"\n,\n\"1806321\"\n,\n\"1806446\"\n,\n\"1806751\"\n,\n\"1808205\"\n,\n\"1808320\"\n,\n\"1808395\"\n,\n\"1808621\"\n,\n\"1809235\"\n,\n\"1809759\"\n,\n\"1810046\"\n,\n\"1810109\"\n,\n\"1811572\"\n,\n\"1811891\"\n,\n\"1812460\"\n,\n\"1814441\"\n,\n\"1815950\"\n,\n\"1815981\"\n,\n\"1816010\"\n,\n\"1816311\"\n,\n\"1816405\"\n,\n\"1816453\"\n,\n\"1816498\"\n,\n\"1816520\"\n,\n\"1816600\"\n,\n\"1816790\"\n,\n\"1816821\"\n,\n\"1817195\"\n,\n\"1817213\"\n,\n\"1817227\"\n,\n\"1817310\"\n,\n\"1817497\"\n,\n\"1817515\"\n,\n\"1817529\"\n,\n\"1817546\"\n,\n\"1817550\"\n,\n\"1817563\"\n,\n\"1817577\"\n,\n\"1817609\"\n,\n\"1817612\"\n,\n\"1817674\"\n,\n\"1817785\"\n,\n\"1817799\"\n,\n\"1818132\"\n,\n\"1818150\"\n,\n\"1818288\"\n,\n\"1818354\"\n,\n\"1818465\"\n,\n\"1818559\"\n,\n\"1818593\"\n,\n\"1818753\"\n,\n\"1818802\"\n,\n\"1818927\"\n,\n\"1818958\"\n,\n\"1819034\"\n,\n\"1819065\"\n,\n\"1819100\"\n,\n\"1819145\"\n,\n\"1819176\"\n,\n\"1819211\"\n,\n\"1819242\"\n,\n\"1819256\"\n,\n\"1819260\"\n,\n\"1819305\"\n,\n\"1819340\"\n,\n\"1819433\"\n,\n\"1819669\"\n,\n\"1819690\"\n,\n\"1819783\"\n,\n\"1819926\"\n,\n\"1819957\"\n,\n\"1819974\"\n,\n\"1820040\"\n,\n\"1820070\"\n,\n\"1820084\"\n,\n\"1820181\"\n,\n\"1820421\"\n,\n\"1820435\"\n,\n\"1820550\"\n,\n\"1820660\"\n,\n\"1820674\"\n,\n\"1820691\"\n,\n\"1820706\"\n,\n\"1820723\"\n,\n\"1820737\"\n,\n\"1820740\"\n,\n\"1820754\"\n,\n\"1820799\"\n,\n\"1820882\"\n,\n\"1820959\"\n,\n\"1820962\"\n,\n\"1821146\"\n,\n\"1821434\"\n,\n\"1821465\"\n,\n\"1821528\"\n,\n\"1821559\"\n,\n\"1821608\"\n,\n\"1821705\"\n,\n\"1821719\"\n,\n\"1821798\"\n,\n\"1821847\"\n,\n\"1822145\"\n,\n\"1822162\"\n,\n\"1822225\"\n,\n\"1822273\"\n,\n\"1822290\"\n,\n\"1822481\"\n,\n\"1822592\"\n,\n\"1822641\"\n,\n\"1822721\"\n,\n\"1822749\"\n,\n\"1822770\"\n,\n\"1822801\"\n,\n\"1822943\"\n,\n\"1822988\"\n,\n\"1823033\"\n,\n\"1823047\"\n,\n\"1823064\"\n,\n\"1823130\"\n,\n\"1823349\"\n,\n\"1823450\"\n,\n\"1823509\"\n,\n\"1823640\"\n,\n\"1823925\"\n,\n\"1824094\"\n,\n\"1824210\"\n,\n\"1824237\"\n,\n\"1824271\"\n,\n\"1824365\"\n,\n\"1824382\"\n,\n\"1824938\"\n,\n\"1825267\"\n,\n\"1825427\"\n,\n\"1825670\"\n,\n\"1825732\"\n,\n\"1826092\"\n,\n\"1826301\"\n,\n\"1826412\"\n,\n\"1826648\"\n,\n\"1826696\"\n,\n\"1827123\"\n,\n\"1827171\"\n,\n\"1827248\"\n,\n\"1827328\"\n,\n\"1827456\"\n,\n\"1827522\"\n,\n\"1827553\"\n,\n\"1827921\"\n,\n\"1828220\"\n,\n\"1828344\"\n,\n\"1828441\"\n,\n\"1828854\"\n,\n\"1829551\"\n,\n\"1829600\"\n,\n\"1829933\"\n,\n\"1830009\"\n,\n\"1830123\"\n,\n\"1830540\"\n,\n\"1830602\"\n,\n\"1830713\"\n,\n\"1831965\"\n,\n\"1832294\"\n,\n\"1832357\"\n,\n\"1832596\"\n,\n\"1832628\"\n,\n\"1832645\"\n,\n\"1832805\"\n,\n\"1832840\"\n,\n\"1833006\"\n,\n\"1833068\"\n,\n\"1833405\"\n,\n\"1833804\"\n,\n\"1834227\"\n,\n\"1834230\"\n,\n\"1834341\"\n,\n\"1834418\"\n,\n\"1834452\"\n,\n\"1834529\"\n,\n\"1834771\"\n,\n\"1835323\"\n,\n\"1835479\"\n,\n\"1835545\"\n,\n\"1836672\"\n,\n\"1836894\"\n,\n\"1836974\"\n,\n\"1837207\"\n,\n\"1837318\"\n,\n\"1837429\"\n,\n\"1837862\"\n,\n\"1837880\"\n,\n\"1837973\"\n,\n\"1838015\"\n,\n\"1838046\"\n,\n\"1838191\"\n,\n\"1838764\"\n,\n\"1839125\"\n,\n\"1839381\"\n,\n\"1840130\"\n,\n\"1840494\"\n,\n\"1840703\"\n,\n\"1840908\"\n,\n\"1840956\"\n,\n\"1841077\"\n,\n\"1841160\"\n,\n\"1841556\"\n,\n\"1841587\"\n,\n\"1842142\"\n,\n\"1842430\"\n,\n\"1842461\"\n,\n\"1843155\"\n,\n\"1843297\"\n,\n\"1843460\"\n,\n\"1843491\"\n,\n\"1844012\"\n,\n\"1844057\"\n,\n\"1844248\"\n,\n\"1844279\"\n,\n\"1844376\"\n,\n\"1844584\"\n,\n\"1844620\"\n,\n\"1844664\"\n,\n\"1844713\"\n,\n\"1844838\"\n,\n\"1845136\"\n,\n\"1845264\"\n,\n\"1845389\"\n,\n\"1846250\"\n,\n\"1846676\"\n,\n\"1846693\"\n,\n\"1847010\"\n,\n\"1847151\"\n,\n\"1847520\"\n,\n\"1847547\"\n,\n\"1847581\"\n,\n\"1848213\"\n,\n\"1848227\"\n,\n\"1848230\"\n,\n\"1848275\"\n,\n\"1848289\"\n,\n\"1848609\"\n,\n\"1848820\"\n,\n\"1849066\"\n,\n\"1849500\"\n,\n\"1849593\"\n,\n\"1850453\"\n,\n\"1850484\"\n,\n\"1850502\"\n,\n\"1850644\"\n,\n\"1850769\"\n,\n\"1851053\"\n,\n\"1851164\"\n,\n\"1851227\"\n,\n\"1851386\"\n,\n\"1851688\"\n,\n\"1851931\"\n,\n\"1852434\"\n,\n\"1852690\"\n,\n\"1852736\"\n,\n\"1853003\"\n,\n\"1853930\"\n,\n\"1854113\"\n,\n\"1854161\"\n,\n\"1854290\"\n,\n\"1854304\"\n,\n\"1854321\"\n,\n\"1854480\"\n,\n\"1854623\"\n,\n\"1854685\"\n,\n\"1854751\"\n,\n\"1854796\"\n,\n\"1855001\"\n,\n\"1855210\"\n,\n\"1855396\"\n,\n\"1855459\"\n,\n\"1855716\"\n,\n\"1855750\"\n,\n\"1855972\"\n,\n\"1856427\"\n,\n\"1856732\"\n,\n\"1857044\"\n,\n\"1857603\"\n,\n\"1857745\"\n,\n\"1857776\"\n,\n\"1857936\"\n,\n\"1858009\"\n,\n\"1858185\"\n,\n\"1858203\"\n,\n\"1858505\"\n,\n\"1858536\"\n,\n\"1858602\"\n,\n\"1858681\"\n,\n\"1858997\"\n,\n\"1859122\"\n,\n\"1859170\"\n,\n\"1859472\"\n,\n\"1860092\"\n,\n\"1860218\"\n,\n\"1860249\"\n,\n\"1860266\"\n,\n\"1860332\"\n,\n\"1860394\"\n,\n\"1860620\"\n,\n\"1860825\"\n,\n\"1861442\"\n,\n\"1861473\"\n,\n\"1861567\"\n,\n\"1861664\"\n,\n\"1861904\"\n,\n\"1861935\"\n,\n\"1862042\"\n,\n\"1862056\"\n,\n\"1862090\"\n,\n\"1862632\"\n,\n\"1862760\"\n,\n\"1862788\"\n,\n\"1862791\"\n,\n\"1863038\"\n,\n\"1864259\"\n,\n\"1864308\"\n,\n\"1864339\"\n,\n\"1865150\"\n,\n\"1865178\"\n,\n\"1865244\"\n,\n\"1865452\"\n,\n\"1865609\"\n,\n\"1866288\"\n,\n\"1866580\"\n,\n\"1866642\"\n,\n\"1866736\"\n,\n\"1867319\"\n,\n\"1867450\"\n,\n\"1868064\"\n,\n\"1868144\"\n,\n\"1868734\"\n,\n\"1868973\"\n,\n\"1869029\"\n,\n\"1869317\"\n,\n\"1869365\"\n,\n\"1869493\"\n,\n\"1870100\"\n,\n\"1870176\"\n,\n\"1870500\"\n,\n\"1870530\"\n,\n\"1871189\"\n,\n\"1871463\"\n,\n\"1871591\"\n,\n\"1871610\"\n,\n\"1871782\"\n,\n\"1871796\"\n,\n\"1871990\"\n,\n\"1872130\"\n,\n\"1872605\"\n,\n\"1872640\"\n,\n\"1872716\"\n,\n\"1872969\"\n,\n\"1873173\"\n,\n\"1873236\"\n,\n\"1873364\"\n,\n\"1873538\"\n,\n\"1873572\"\n,\n\"1874235\"\n,\n\"1874301\"\n,\n\"1874315\"\n,\n\"1874714\"\n,\n\"1874842\"\n,\n\"1874953\"\n,\n\"1875137\"\n,\n\"1875570\"\n,\n\"1875727\"\n,\n\"1875761\"\n,\n\"1876087\"\n,\n\"1876090\"\n,\n\"1876583\"\n,\n\"1876743\"\n,\n\"1876791\"\n,\n\"1877007\"\n,\n\"1877121\"\n,\n\"1877330\"\n,\n\"1877357\"\n,\n\"1878054\"\n,\n\"1878196\"\n,\n\"1878356\"\n,\n\"1878373\"\n,\n\"1878390\"\n,\n\"1878564\"\n,\n\"1878710\"\n,\n\"1878769\"\n,\n\"1879150\"\n,\n\"1879740\"\n,\n\"1879980\"\n,\n\"1880135\"\n,\n\"1880388\"\n,\n\"1880410\"\n,\n\"1880423\"\n,\n\"1880787\"\n,\n\"1880840\"\n,\n\"1881308\"\n,\n\"1881547\"\n,\n\"1881600\"\n,\n\"1881772\"\n,\n\"1881883\"\n,\n\"1882404\"\n,\n\"1882418\"\n,\n\"1882740\"\n,\n\"1882834\"\n,\n\"1882851\"\n,\n\"1883576\"\n,\n\"1883722\"\n,\n\"1883847\"\n,\n\"1883958\"\n,\n\"1883961\"\n,\n\"1884079\"\n,\n\"1884239\"\n,\n\"1884398\"\n,\n\"1884495\"\n,\n\"1884589\"\n,\n\"1884638\"\n,\n\"1884655\"\n,\n\"1884690\"\n,\n\"1884880\"\n,\n\"1884894\"\n,\n\"1884926\"\n,\n\"1884974\"\n,\n\"1886334\"\n,\n\"1886348\"\n,\n\"1886351\"\n,\n\"1886382\"\n,\n\"1886445\"\n,\n\"1886480\"\n,\n\"1886493\"\n,\n\"1886508\"\n,\n\"1887190\"\n,\n\"1887812\"\n,\n\"1887843\"\n,\n\"1887910\"\n,\n\"1887923\"\n,\n\"1888443\"\n,\n\"1888474\"\n,\n\"1888793\"\n,\n\"1888856\"\n,\n\"1888873\"\n,\n\"1888887\"\n,\n\"1888953\"\n,\n\"1889921\"\n,\n\"1889935\"\n,\n\"1890031\"\n,\n\"1890683\"\n,\n\"1890826\"\n,\n\"1890843\"\n,\n\"1890940\"\n,\n\"1891107\"\n,\n\"1891110\"\n,\n\"1891283\"\n,\n\"1891301\"\n,\n\"1891825\"\n,\n\"1891953\"\n,\n\"1892171\"\n,\n\"1892952\"\n,\n\"1893566\"\n,\n\"1893663\"\n,\n\"1893726\"\n,\n\"1893730\"\n,\n\"1893837\"\n,\n\"1893840\"\n,\n\"1894229\"\n,\n\"1894343\"\n,\n\"1894360\"\n,\n\"1894374\"\n,\n\"1894659\"\n,\n\"1896449\"\n,\n\"1897049\"\n,\n\"1897163\"\n,\n\"1897310\"\n,\n\"1897323\"\n,\n\"1898128\"\n,\n\"1898162\"\n,\n\"1898832\"\n,\n\"1898880\"\n,\n\"1898974\"\n,\n\"1898991\"\n,\n\"1900084\"\n,\n\"1901323\"\n,\n\"1901722\"\n,\n\"1905569\"\n,\n\"1905860\"\n,\n\"1905971\"\n,\n\"1906092\"\n,\n\"1906793\"\n,\n\"1907217\"\n,\n\"1908552\"\n,\n\"1909600\"\n,\n\"1909773\"\n,\n\"1909822\"\n,\n\"1909836\"\n,\n\"1910137\"\n,\n\"1910234\"\n,\n\"1911951\"\n,\n\"1912149\"\n,\n\"1912343\"\n,\n\"1913627\"\n,\n\"1913883\"\n,\n\"1914053\"\n,\n\"1914070\"\n,\n\"1914289\"\n,\n\"1914307\"\n,\n\"1915399\"\n,\n\"1916100\"\n,\n\"1916114\"\n,\n\"1916145\"\n,\n\"1918334\"\n,\n\"1919111\"\n,\n\"1919333\"\n,\n\"1919395\"\n,\n\"1921459\"\n,\n\"1921542\"\n,\n\"1922777\"\n,\n\"1922906\"\n,\n\"1923412\"\n,\n\"1923457\"\n,\n\"1925264\"\n,\n\"1925278\"\n,\n\"1925330\"\n,\n\"1925490\"\n,\n\"1925504\"\n,\n\"1925677\"\n,\n\"1926819\"\n,\n\"1930151\"\n,\n\"1930498\"\n,\n\"1930502\"\n,\n\"1931928\"\n,\n\"1931959\"\n,\n\"1932070\"\n,\n\"1932097\"\n,\n\"1934335\"\n,\n\"1934352\"\n,\n\"1934397\"\n,\n\"1934432\"\n,\n\"1935636\"\n,\n\"1938855\"\n,\n\"1942198\"\n,\n\"1943517\"\n,\n\"1944010\"\n,\n\"1944148\"\n,\n\"1944245\"\n,\n\"1944564\"\n,\n\"1945275\"\n,\n\"1945289\"\n,\n\"1945660\"\n,\n\"1945706\"\n,\n\"1945945\"\n,\n\"1950957\"\n,\n\"1951020\"\n,\n\"1952800\"\n,\n\"1953586\"\n,\n\"1953701\"\n,\n\"1957739\"\n,\n\"1957916\"\n,\n\"1965960\"\n,\n\"1968092\"\n,\n\"1968936\"\n,\n\"1969376\"\n,\n\"1970173\"\n,\n\"1970732\"\n,\n\"1971297\"\n,\n\"1972137\"\n,\n\"1972171\"\n,\n\"1972553\"\n,\n\"1972570\"\n,\n\"1972761\"\n,\n\"1972810\"\n,\n\"1973184\"\n,\n\"1973198\"\n,\n\"1973216\"\n,\n\"1973791\"\n,\n\"1974201\"\n,\n\"1974250\"\n,\n\"1974902\"\n,\n\"1974916\"\n,\n\"1974920\"\n,\n\"1975006\"\n,\n\"1975422\"\n,\n\"1975453\"\n,\n\"1975550\"\n,\n\"1975738\"\n,\n\"1975852\"\n,\n\"1975866\"\n,\n\"1976067\"\n,\n\"1976133\"\n,\n\"1976768\"\n,\n\"1976803\"\n,\n\"1976945\"\n,\n\"1977049\"\n,\n\"1978051\"\n,\n\"1978575\"\n,\n\"1978638\"\n,\n\"1978894\"\n,\n\"1979033\"\n,\n\"1979100\"\n,\n\"1979127\"\n,\n\"1979397\"\n,\n\"1979429\"\n,\n\"1979717\"\n,\n\"1979876\"\n,\n\"1979990\"\n,\n\"1980101\"\n,\n\"1980115\"\n,\n\"1980371\"\n,\n\"1980403\"\n,\n\"1980673\"\n,\n\"1980687\"\n,\n\"1980784\"\n,\n\"1980816\"\n,\n\"1980833\"\n,\n\"1980930\"\n,\n\"1980992\"\n,\n\"1981020\"\n,\n\"1981114\"\n,\n\"1981159\"\n,\n\"1981176\"\n,\n\"1981420\"\n,\n\"1981669\"\n,\n\"1981672\"\n,\n\"1982238\"\n,\n\"1982370\"\n,\n\"1982494\"\n,\n\"1982717\"\n,\n\"1983191\"\n,\n\"1983605\"\n,\n\"1984378\"\n,\n\"1984381\"\n,\n\"1984492\"\n,\n\"1984538\"\n,\n\"1984604\"\n,\n\"1984618\"\n,\n\"1984729\"\n,\n\"1985346\"\n,\n\"1985377\"\n,\n\"1985457\"\n,\n\"1985474\"\n,\n\"1985491\"\n,\n\"1985510\"\n,\n\"1985887\"\n,\n\"1985970\"\n,\n\"1985984\"\n,\n\"1986473\"\n,\n\"1986487\"\n,\n\"1986789\"\n,\n\"1986810\"\n,\n\"1987615\"\n,\n\"1987726\"\n,\n\"1988149\"\n,\n\"1988201\"\n,\n\"1988246\"\n,\n\"1988485\"\n,\n\"1988499\"\n,\n\"1989994\"\n,\n\"1990438\"\n,\n\"1990566\"\n,\n\"1990791\"\n,\n\"1990810\"\n,\n\"1991596\"\n,\n\"1991659\"\n,\n\"1991867\"\n,\n\"1992117\"\n,\n\"1992228\"\n,\n\"1992231\"\n,\n\"1992325\"\n,\n\"1992342\"\n,\n\"1994833\"\n,\n\"1994864\"\n,\n\"1994895\"\n,\n\"1996668\"\n,\n\"1998076\"\n,\n\"1998940\"\n,\n\"1999762\"\n,\n\"1999905\"\n,\n\"2000154\"\n,\n\"2000602\"\n,\n\"2001469\"\n,\n\"2001646\"\n,\n\"2001650\"\n,\n\"2001694\"\n,\n\"2003006\"\n,\n\"2003360\"\n,\n\"2003373\"\n,\n\"2003387\"\n,\n\"2003516\"\n,\n\"2003741\"\n,\n\"2003755\"\n,\n\"2003849\"\n,\n\"2003870\"\n,\n\"2003977\"\n,\n\"2004019\"\n,\n\"2004230\"\n,\n\"2004289\"\n,\n\"2004341\"\n,\n\"2004355\"\n,\n\"2006447\"\n,\n\"2008653\"\n,\n\"2008667\"\n,\n\"2008702\"\n,\n\"2008716\"\n,\n\"2009780\"\n,\n\"2009985\"\n,\n\"2013728\"\n,\n\"2016790\"\n,\n\"2019306\"\n,\n\"2020738\"\n,\n\"2020741\"\n,\n\"2021928\"\n,\n\"2022066\"\n,\n\"2022070\"\n,\n\"2023287\"\n,\n\"2023319\"\n,\n\"2024016\"\n,\n\"2024130\"\n,\n\"2025206\"\n,\n\"2025237\"\n,\n\"2029601\"\n,\n\"2032629\"\n,\n\"2033069\"\n,\n\"2036354\"\n,\n\"2036608\"\n,\n\"2040655\"\n,\n\"2041269\"\n,\n\"2041973\"\n,\n\"2043333\"\n,\n\"2043510\"\n,\n\"2044887\"\n,\n\"2045970\"\n,\n\"2046233\"\n,\n\"2046570\"\n,\n\"2046583\"\n,\n\"2048738\"\n,\n\"2048755\"\n,\n\"2049550\"\n,\n\"2049710\"\n,\n\"2050867\"\n,\n\"2050870\"\n,\n\"2050898\"\n,\n\"2051484\"\n,\n\"2051502\"\n,\n\"2051516\"\n,\n\"2051835\"\n,\n\"2052230\"\n,\n\"2052289\"\n,\n\"2052404\"\n,\n\"2053194\"\n,\n\"2053257\"\n,\n\"2053274\"\n,\n\"2053288\"\n,\n\"2054336\"\n,\n\"2054960\"\n,\n\"2055050\"\n,\n\"2055078\"\n,\n\"2055189\"\n,\n\"2055450\"\n,\n\"2055990\"\n,\n\"2058426\"\n,\n\"2058460\"\n,\n\"2058936\"\n,\n\"2058970\"\n,\n\"2059408\"\n,\n\"2059838\"\n,\n\"2059872\"\n,\n\"2060014\"\n,\n\"2060028\"\n,\n\"2060059\"\n,\n\"2060111\"\n,\n\"2060142\"\n,\n\"2066785\"\n,\n\"2067881\"\n,\n\"2067958\"\n,\n\"2068003\"\n,\n\"2068340\"\n,\n\"2068370\"\n,\n\"2068384\"\n,\n\"2073351\"\n,\n\"2077264\"\n,\n\"2078246\"\n,\n\"2080837\"\n,\n\"2086158\"\n,\n\"2086512\"\n,\n\"2087830\"\n,\n\"2089762\"\n,\n\"2090015\"\n,\n\"2090605\"\n,\n\"2094837\"\n,\n\"2094899\"\n,\n\"2094951\"\n,\n\"2098021\"\n,\n\"2102833\"\n,\n\"2105317\"\n,\n\"2108442\"\n,\n\"2109823\"\n,\n\"2110540\"\n,\n\"2111872\"\n,\n\"2111983\"\n,\n\"2112982\"\n,\n\"2113312\"\n,\n\"2113410\"\n,\n\"2114390\"\n,\n\"2114804\"\n,\n\"2119750\"\n,\n\"2121699\"\n,\n\"2121765\"\n,\n\"2125540\"\n,\n\"2125678\"\n,\n\"2125761\"\n,\n\"2125970\"\n,\n\"2126646\"\n,\n\"2127104\"\n,\n\"2127933\"\n,\n\"2135654\"\n,\n\"2136493\"\n,\n\"2136619\"\n,\n\"2137031\"\n,\n\"2139439\"\n,\n\"2142279\"\n,\n\"2143948\"\n,\n\"2143979\"\n,\n\"2151638\"\n,\n\"2156203\"\n,\n\"2156220\"\n,\n\"2156265\"\n,\n\"2156282\"\n,\n\"2156296\"\n,\n\"2156345\"\n,\n\"2157712\"\n,\n\"2161534\"\n,\n\"2162231\"\n,\n\"2163244\"\n,\n\"2164465\"\n,\n\"2165096\"\n,\n\"2165159\"\n,\n\"2165974\"\n,\n\"2166189\"\n,\n\"2169537\"\n,\n\"2170320\"\n,\n\"2174011\"\n,\n\"2175121\"\n,\n\"2175197\"\n,\n\"2175357\"\n,\n\"2175596\"\n,\n\"2177785\"\n,\n\"2180386\"\n,\n\"2180959\"\n,\n\"2182020\"\n,\n\"2183144\"\n,\n\"2185652\"\n,\n\"2185794\"\n,\n\"2186474\"\n,\n\"2187359\"\n,\n\"2188281\"\n,\n\"2189582\"\n,\n\"2189600\"\n,\n\"2190376\"\n,\n\"2190380\"\n,\n\"2190408\"\n,\n\"2190439\"\n,\n\"2190442\"\n,\n\"2190553\"\n,\n\"2190598\"\n,\n\"2191011\"\n,\n\"2191042\"\n,\n\"2191198\"\n,\n\"2191490\"\n,\n\"2191518\"\n,\n\"2191521\"\n,\n\"2191712\"\n,\n\"2191774\"\n,\n\"2191810\"\n,\n\"2191823\"\n,\n\"2191840\"\n,\n\"2192007\"\n,\n\"2192118\"\n,\n\"2192294\"\n,\n\"2192309\"\n,\n\"2192312\"\n,\n\"2192410\"\n,\n\"2192423\"\n,\n\"2192565\"\n,\n\"2192614\"\n,\n\"2192853\"\n,\n\"2192978\"\n,\n\"2193023\"\n,\n\"2193103\"\n,\n\"2193200\"\n,\n\"2193214\"\n,\n\"2193308\"\n,\n\"2193564\"\n,\n\"2193595\"\n,\n\"2193613\"\n,\n\"2193627\"\n,\n\"2193707\"\n,\n\"2193741\"\n,\n\"2193769\"\n,\n\"2194036\"\n,\n\"2194164\"\n,\n\"2194244\"\n,\n\"2194483\"\n,\n\"2194501\"\n,\n\"2194803\"\n,\n\"2194900\"\n,\n\"2196880\"\n,\n\"2198493\"\n,\n\"2199444\"\n,\n\"2199701\"\n,\n\"2199954\"\n,\n\"2201304\"\n,\n\"2201591\"\n,\n\"2201637\"\n,\n\"2201703\"\n,\n\"2201717\"\n,\n\"2202206\"\n,\n\"2202590\"\n,\n\"2203732\"\n,\n\"2203746\"\n,\n\"2204221\"\n,\n\"2204634\"\n,\n\"2204665\"\n,\n\"2204856\"\n,\n\"2204922\"\n,\n\"2204940\"\n,\n\"2204970\"\n,\n\"2205220\"\n,\n\"2205331\"\n,\n\"2205473\"\n,\n\"2205681\"\n,\n\"2209369\"\n,\n\"2209657\"\n,\n\"2209865\"\n,\n\"2210410\"\n,\n\"2210423\"\n,\n\"2210520\"\n,\n\"2210565\"\n,\n\"2210582\"\n,\n\"2210600\"\n,\n\"2211325\"\n,\n\"2211453\"\n,\n\"2211467\"\n,\n\"2211980\"\n,\n\"2212098\"\n,\n\"2212577\"\n,\n\"2212594\"\n,\n\"2212609\"\n,\n\"2212740\"\n,\n\"2212817\"\n,\n\"2212851\"\n,\n\"2213018\"\n,\n\"2213021\"\n,\n\"2213115\"\n,\n\"2213260\"\n,\n\"2213288\"\n,\n\"2213465\"\n,\n\"2213479\"\n,\n\"2213820\"\n,\n\"2213833\"\n,\n\"2213961\"\n,\n\"2214290\"\n,\n\"2214433\"\n,\n\"2214592\"\n,\n\"2214957\"\n,\n\"2215161\"\n,\n\"2215321\"\n,\n\"2215366\"\n,\n\"2215415\"\n,\n\"2215429\"\n,\n\"2215450\"\n,\n\"2216001\"\n,\n\"2216063\"\n,\n\"2216237\"\n,\n\"2216379\"\n,\n\"2216459\"\n,\n\"2216670\"\n,\n\"2216861\"\n,\n\"2216907\"\n,\n\"2217031\"\n,\n\"2217045\"\n,\n\"2217059\"\n,\n\"2217236\"\n,\n\"2217240\"\n,\n\"2217320\"\n,\n\"2217333\"\n,\n\"2217489\"\n,\n\"2217572\"\n,\n\"2217590\"\n,\n\"2217729\"\n,\n\"2217732\"\n,\n\"2217809\"\n,\n\"2218315\"\n,\n\"2218350\"\n,\n\"2218363\"\n,\n\"2218585\"\n,\n\"2218682\"\n,\n\"2218696\"\n,\n\"2218762\"\n,\n\"2218825\"\n,\n\"2218887\"\n,\n\"2218890\"\n,\n\"2218919\"\n,\n\"2218936\"\n,\n\"2218998\"\n,\n\"2219043\"\n,\n\"2219140\"\n,\n\"2219300\"\n,\n\"2220729\"\n,\n\"2220809\"\n,\n\"2220826\"\n,\n\"2220830\"\n,\n\"2221270\"\n,\n\"2221430\"\n,\n\"2221617\"\n,\n\"2221651\"\n,\n\"2221679\"\n,\n\"2221984\"\n,\n\"2222234\"\n,\n\"2222425\"\n,\n\"2222855\"\n,\n\"2223008\"\n,\n\"2223011\"\n,\n\"2223087\"\n,\n\"2223105\"\n,\n\"2223170\"\n,\n\"2223184\"\n,\n\"2223198\"\n,\n\"2223202\"\n,\n\"2223504\"\n,\n\"2223518\"\n,\n\"2223535\"\n,\n\"2223566\"\n,\n\"2223663\"\n,\n\"2223868\"\n,\n\"2223885\"\n,\n\"2223951\"\n,\n\"2224454\"\n,\n\"2224534\"\n,\n\"2224628\"\n,\n\"2224920\"\n,\n\"2224933\"\n,\n\"2224950\"\n,\n\"2225120\"\n,\n\"2225436\"\n,\n\"2225502\"\n,\n\"2225533\"\n,\n\"2225550\"\n,\n\"2225578\"\n,\n\"2226213\"\n,\n\"2226258\"\n,\n\"2226261\"\n,\n\"2226307\"\n,\n\"2226324\"\n,\n\"2226338\"\n,\n\"2226435\"\n,\n\"2226688\"\n,\n\"2226691\"\n,\n\"2227150\"\n,\n\"2227177\"\n,\n\"2227291\"\n,\n\"2227340\"\n,\n\"2227354\"\n,\n\"2227403\"\n,\n\"2227417\"\n,\n\"2227434\"\n,\n\"2227802\"\n,\n\"2227958\"\n,\n\"2227992\"\n,\n\"2228020\"\n,\n\"2228048\"\n,\n\"2228079\"\n,\n\"2228420\"\n,\n\"2228464\"\n,\n\"2228481\"\n,\n\"2228850\"\n,\n\"2228943\"\n,\n\"2229512\"\n,\n\"2229956\"\n,\n\"2230115\"\n,\n\"2230129\"\n,\n\"2230132\"\n,\n\"2230163\"\n,\n\"2230177\"\n,\n\"2230194\"\n,\n\"2230403\"\n,\n\"2230420\"\n,\n\"2230465\"\n,\n\"2230736\"\n,\n\"2230740\"\n,\n\"2231020\"\n,\n\"2231079\"\n,\n\"2231544\"\n,\n\"2231575\"\n,\n\"2231624\"\n,\n\"2231641\"\n,\n\"2231752\"\n,\n\"2231815\"\n,\n\"2231832\"\n,\n\"2231877\"\n,\n\"2232078\"\n,\n\"2232144\"\n,\n\"2232210\"\n,\n\"2232241\"\n,\n\"2232255\"\n,\n\"2232269\"\n,\n\"2232352\"\n,\n\"2232366\"\n,\n\"2232401\"\n,\n\"2232429\"\n,\n\"2232779\"\n,\n\"2232862\"\n,\n\"2232908\"\n,\n\"2232911\"\n,\n\"2232942\"\n,\n\"2233046\"\n,\n\"2233126\"\n,\n\"2233191\"\n,\n\"2233320\"\n,\n\"2234333\"\n,\n\"2234347\"\n,\n\"2234400\"\n,\n\"2234507\"\n,\n\"2234524\"\n,\n\"2234937\"\n,\n\"2234940\"\n,\n\"2234971\"\n,\n\"2235061\"\n,\n\"2235089\"\n,\n\"2235221\"\n,\n\"2235235\"\n,\n\"2235252\"\n,\n\"2235283\"\n,\n\"2235412\"\n,\n\"2235426\"\n,\n\"2236300\"\n,\n\"2236314\"\n,\n\"2236855\"\n,\n\"2236918\"\n,\n\"2236921\"\n,\n\"2236935\"\n,\n\"2236952\"\n,\n\"2236966\"\n,\n\"2236970\"\n,\n\"2237153\"\n,\n\"2237247\"\n,\n\"2238343\"\n,\n\"2238406\"\n,\n\"2238410\"\n,\n\"2238468\"\n,\n\"2238503\"\n,\n\"2238579\"\n,\n\"2238725\"\n,\n\"2238739\"\n,\n\"2238760\"\n,\n\"2238773\"\n,\n\"2238819\"\n,\n\"2239946\"\n,\n\"2239977\"\n,\n\"2240042\"\n,\n\"2240056\"\n,\n\"2240060\"\n,\n\"2240087\"\n,\n\"2240216\"\n,\n\"2240694\"\n,\n\"2240730\"\n,\n\"2240743\"\n,\n\"2241517\"\n,\n\"2241840\"\n,\n\"2244420\"\n,\n\"2244434\"\n,\n\"2244448\"\n,\n\"2244608\"\n,\n\"2244625\"\n,\n\"2245367\"\n,\n\"2246432\"\n,\n\"2247109\"\n,\n\"2247334\"\n,\n\"2247351\"\n,\n\"2248923\"\n,\n\"2249443\"\n,\n\"2249491\"\n,\n\"2249506\"\n,\n\"2249537\"\n,\n\"2249759\"\n,\n\"2249776\"\n,\n\"2249780\"\n,\n\"2249808\"\n,\n\"2249811\"\n,\n\"2250590\"\n,\n\"2250684\"\n,\n\"2250698\"\n,\n\"2250702\"\n,\n\"2250733\"\n,\n\"2250750\"\n,\n\"2250795\"\n,\n\"2252252\"\n,\n\"2252283\"\n,\n\"2253616\"\n,\n\"2253713\"\n,\n\"2255933\"\n,\n\"2257227\"\n,\n\"2257261\"\n,\n\"2257292\"\n,\n\"2257310\"\n,\n\"2262957\"\n,\n\"2262960\"\n,\n\"2263685\"\n,\n\"2263720\"\n,\n\"2264240\"\n,\n\"2264511\"\n,\n\"2265125\"\n,\n\"2265205\"\n,\n\"2265219\"\n,\n\"2265236\"\n,\n\"2265253\"\n,\n\"2265267\"\n,\n\"2265635\"\n,\n\"2265701\"\n,\n\"2265729\"\n,\n\"2265809\"\n,\n\"2265812\"\n,\n\"2265843\"\n,\n\"2265860\"\n,\n\"2265910\"\n,\n\"2267570\"\n,\n\"2267584\"\n,\n\"2267713\"\n,\n\"2267789\"\n,\n\"2268140\"\n,\n\"2268216\"\n,\n\"2268220\"\n,\n\"2269739\"\n,\n\"2269756\"\n,\n\"2269870\"\n,\n\"2270043\"\n,\n\"2270057\"\n,\n\"2270060\"\n,\n\"2270074\"\n,\n\"2270088\"\n,\n\"2270359\"\n,\n\"2270442\"\n,\n\"2270487\"\n,\n\"2271073\"\n,\n\"2271105\"\n,\n\"2271264\"\n,\n\"2271281\"\n,\n\"2271313\"\n,\n\"2271327\"\n,\n\"2271570\"\n,\n\"2271583\"\n,\n\"2271597\"\n,\n\"2271601\"\n,\n\"2271646\"\n,\n\"2271650\"\n,\n\"2271663\"\n,\n\"2271730\"\n,\n\"2271760\"\n,\n\"2271837\"\n,\n\"2272166\"\n,\n\"2272246\"\n,\n\"2272357\"\n,\n\"2272503\"\n,\n\"2272582\"\n,\n\"2272676\"\n,\n\"2272756\"\n,\n\"2272787\"\n,\n\"2272819\"\n,\n\"2272822\"\n,\n\"2272902\"\n,\n\"2272933\"\n,\n\"2272964\"\n,\n\"2273259\"\n,\n\"2273262\"\n,\n\"2273293\"\n,\n\"2273308\"\n,\n\"2273311\"\n,\n\"2273356\"\n,\n\"2273467\"\n,\n\"2273484\"\n,\n\"2273502\"\n,\n\"2273520\"\n,\n\"2273550\"\n,\n\"2273595\"\n,\n\"2273897\"\n,\n\"2273901\"\n,\n\"2274120\"\n,\n\"2274404\"\n,\n\"2274452\"\n,\n\"2274466\"\n,\n\"2274501\"\n,\n\"2274550\"\n,\n\"2274879\"\n,\n\"2274896\"\n,\n\"2274931\"\n,\n\"2274945\"\n,\n\"2275083\"\n,\n\"2275399\"\n,\n\"2275403\"\n,\n\"2275465\"\n,\n\"2275479\"\n,\n\"2275482\"\n,\n\"2275496\"\n,\n\"2275593\"\n,\n\"2275625\"\n,\n\"2275992\"\n,\n\"2276159\"\n,\n\"2276162\"\n,\n\"2276193\"\n,\n\"2276447\"\n,\n\"2276464\"\n,\n\"2276686\"\n,\n\"2276749\"\n,\n\"2276766\"\n,\n\"2276770\"\n,\n\"2276930\"\n,\n\"2276943\"\n,\n\"2276957\"\n,\n\"2276960\"\n,\n\"2277002\"\n,\n\"2277047\"\n,\n\"2277050\"\n,\n\"2277207\"\n,\n\"2277210\"\n,\n\"2277241\"\n]\n,\"limit\":5000,\"offsetby\" : 0,\"count\" : 5000,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/active/?pagesize=5000\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/active/?offsetby=5000&pagesize=5000\"\n      }\n     ]\n}\n"}],"_postman_id":"77ba096e-1300-4131-bd51-aab32a0a4428"}],"id":"08bec42b-22d4-4a16-8e83-6001b1b7b09b","description":"<p>This module relates to active employees, and will always only deal with active employees. The objective is to return an employee result set matching certain use cases, common use cases:</p>\n<ul>\n<li>Determine active employees</li>\n<li>Active employees on a particular date</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"5eae8353-fe86-4246-ab86-507e3ea52900","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"068e6bf8-e5c8-4d67-9968-af956e3aba81","type":"text/javascript","exec":[""]}}],"_postman_id":"08bec42b-22d4-4a16-8e83-6001b1b7b09b"},{"name":"JML","item":[{"name":"Leaver","item":[{"name":"Day","item":[{"name":"/filter/leaver/day/:days?","id":"a9dfd7db-00ba-47a9-a04c-3232fea9261d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/day/30","description":"<p>Use this service to query employees leaving within the next X number of days, use the parameter <code>:days</code> to set the X value. These employees are currently active, however, they are set to leave within X number of days. The parameter must be positive.</p>\n<p>The service will assume today when supplied with no value for <code>:days</code> or a value of 0, this returns employees leaving today.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","jml","leaver","day","30"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"97689a17-a034-4e5e-b9a6-e85a951d4ebb","name":"Leavers within next 30 days","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/day/30"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 12 Mar 2018 21:13:46 GMT","name":"Date","description":""},{"key":"ETag","value":"\"HEmGvE00e93eT+klCWd8Ob/KpCot3jqSpNBJbI8FS/W1wjXw504P+jl2lZNfxb1b4tAsDakTu8BGMrWulMvw5Q==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-00095ca4","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"1265972\"\n,\n\"1266093\"\n,\n\"1266320\"\n,\n\"1266812\"\n,\n\"1267013\"\n,\n\"1267172\"\n,\n\"1267412\"\n,\n\"1267430\"\n,\n\"1267443\"\n,\n\"1316426\"\n,\n\"1316460\"\n,\n\"1316665\"\n,\n\"1318090\"\n,\n\"1318615\"\n,\n\"1319250\"\n,\n\"1409000\"\n,\n\"1410828\"\n,\n\"1416471\"\n,\n\"1419656\"\n,\n\"1421133\"\n,\n\"1421660\"\n,\n\"1422451\"\n,\n\"1422642\"\n,\n\"1423322\"\n,\n\"1425268\"\n,\n\"1425560\"\n,\n\"1428505\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 27,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/leaver/day/30\"\n      }\n    ]\n}\n"},{"id":"f0fcd43c-699f-4dfa-81a6-6873c5b0d8b0","name":"Leaving Today","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/day/0"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 13 Mar 2018 12:02:25 GMT","name":"Date","description":""},{"key":"ETag","value":"\"iZE5eFKbFKnZ6UAvakY4osy9aKOhoxFEJdMkYK4pzpYTNPPR0dXUvREJQBZzVjsJG0aJSEmrlhGp/cp9ECeAIg==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-000a2b97","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"1409000\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/leaver/day/0\"\n      }\n    ]\n}\n"}],"_postman_id":"a9dfd7db-00ba-47a9-a04c-3232fea9261d"}],"id":"093cab68-76f1-413b-a473-5a1b550f880a","description":"<p>Use this service to query employees leaving within the next X number of days.</p>\n","event":[{"listen":"prerequest","script":{"id":"6ab750ec-a3e5-49b0-9a55-efcc0c5bd908","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7a78e469-5d58-4d2b-8e04-24c635f04e18","type":"text/javascript","exec":[""]}}],"_postman_id":"093cab68-76f1-413b-a473-5a1b550f880a"},{"name":"Date","item":[{"name":"/filter/jml/leaver/date/:date?","id":"9e84881b-1942-425f-bbbe-8bb7789adf4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/date/20190101","description":"<p>Use this service to query employees leaving based on a supplied date. By providing a future date the service will check employees who are due to leave between \"now\" and the future date. These employees are currently active, but are set to leave by the date provided.</p>\n<p>Date format is YYYYMMDD and the date should be in the future, and the service treats date inclusive.</p>\n<p>If no date is supplied, by default the service will assume today as the date, i.e. find employees leaving today.</p>\n<p>Providing a date less than \"today\" will always return 0 returns, no error will be provided, simply a response of 0 employees i.e. you must provide a future date.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","jml","leaver","date","20190101"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bca1532a-1bfa-45d0-803d-ba055d0dae64","name":"Leavers by 10th July 2017","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/date/20180710"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 12 Mar 2018 21:20:49 GMT","name":"Date","description":""},{"key":"ETag","value":"\"n64ZqihwRTaSnvtuJO8evqgaU7E41l1sQh6dvCZ2iJaA88DDSmbv8C/ph/M5S3l9M+IJJjYZ/KhVZTpDuEtdXQ==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-00095dc9","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"1265972\"\n,\n\"1266093\"\n,\n\"1266320\"\n,\n\"1266812\"\n,\n\"1267013\"\n,\n\"1267172\"\n,\n\"1267412\"\n,\n\"1409000\"\n,\n\"1410828\"\n,\n\"1416471\"\n,\n\"1419656\"\n,\n\"1421133\"\n,\n\"1421660\"\n,\n\"1422451\"\n,\n\"1422642\"\n,\n\"1423322\"\n,\n\"1425268\"\n,\n\"1425560\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 18,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/leaver/date/20180324\"\n      }\n    ]\n}\n"}],"_postman_id":"9e84881b-1942-425f-bbbe-8bb7789adf4b"}],"id":"c2d08e37-6221-4839-b594-421bef63119b","description":"<p>Use this service to query employees leaving based on a supplied date.</p>\n","event":[{"listen":"prerequest","script":{"id":"ce0a46bf-2b11-4855-a836-7021e75541fd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0d5711ed-e393-4736-8afc-94aad723e43e","type":"text/javascript","exec":[""]}}],"_postman_id":"c2d08e37-6221-4839-b594-421bef63119b"},{"name":"Left","item":[{"name":"/filter/jml/leaver/left/:days?","id":"f27510ed-2fa2-43cb-8360-61125d51570d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/left/1","description":"<p>Use this service to query individuals who have left within the previous X number of days, use the parameter <code>:days</code> to set the X value. With this service it is possible to determine historical employees.</p>\n<p>These employees are no longer considered active. The parameter must be positive.</p>\n<p>The service will assume yesterday when supplied with no value for <code>:days</code>.</p>\n<p>Individuals leaving <em>today</em> will not appear in this result set. Those leaving today remain active until <em>tomorrow</em>.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","jml","leaver","left","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f27510ed-2fa2-43cb-8360-61125d51570d"}],"id":"32767c0d-43f1-49a4-b21d-311361971e60","description":"<p>Use this service to query individuals who have previously left i.e. left within the previous X number of days. These individuals are considered inactive and no longer <em>employeed</em>. The service simply querys the date an individual has left. The date queried is the individuals most recent leaving date (catering for the cases where an individual has re-joined and subsequently left).</p>\n","event":[{"listen":"prerequest","script":{"id":"9327b2ae-edd9-4243-a691-ae1cda6eec99","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4d71e9b7-5d81-4640-9674-7d96e8c2d2c7","type":"text/javascript","exec":[""]}}],"_postman_id":"32767c0d-43f1-49a4-b21d-311361971e60"}],"id":"9d9db2f4-9258-414f-b4bc-fe69c9b12c28","description":"<p>This module relates to employees leaving, the service will query an individuals leaving date, even though the employee may currently be active.</p>\n<p>Common use cases are:</p>\n<ul>\n<li>Determine individuals leaving within the next X number of days i.e. they are currently active, but have a leave date within the next 10 days.</li>\n<li>Determine individuals who are currently active but will have left by a certain future date i.e. provide a future date and the service will return individuals leaving between now and this future date.</li>\n<li>Determine individuals previously left.</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"078b45c7-eb37-4fe7-a421-b5e7aaec9df7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a2588619-9be6-482b-a9f6-5a15c94dc3ec","type":"text/javascript","exec":[""]}}],"_postman_id":"9d9db2f4-9258-414f-b4bc-fe69c9b12c28"},{"name":"Joiner","item":[{"name":"recent","item":[{"name":"/filter/jml/joiner/recent/:days","id":"e120a95d-0b05-4e06-9950-b61bd90afe65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/joiner/recent/30","description":"<p>This service is focused on recent starters i.e. active individuals who recently joined. With this service you can determine individuals who started within the previous X number of days, i.e. this is a between NOW and - X days.</p>\n<p>in cases where no <code>days</code> parameter has been provided, the service assumes <em>0</em> i.e. who has started <em>today</em>. In most cases it is expected to provide 30 / 60 or 90 days. A max of 36500 is set for the upper limit.</p>\n<p>In all cases employees starting <em>today</em> are included.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","jml","joiner","recent","30"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"91f81bf0-4b8c-4b68-af87-dde3e23109f3","name":"Previous 30 Days","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/joiner/recent/30"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 15 Mar 2018 11:53:56 GMT","name":"Date","description":""},{"key":"ETag","value":"\"140VlUC1D3FC3GEyZ2rH9bAWqVN9hnlxbHzATll48Aj8fNKuVg9wYkKSP/n3RUXZ+h9hRJFOjMHr+CTw2P3fgQ==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-000df1b3","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"5990404\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/joiner/recent/\"\n      }\n    ]\n}\n"},{"id":"b4e4a150-c21c-45b0-857d-f4cac5685000","name":"Exceeding the Max Threshold","originalRequest":{"method":"GET","header":[],"url":"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/joiner/recent/36501"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 15 Mar 2018 12:12:36 GMT","name":"Date","description":""},{"key":"ETag","value":"\"nN2x9d3E41tTPKzxvz7dKw0hP6y+uPBjgI4mv2+zdxx8IXg8lojzVWg23GzD4VkZycVmFyVr/KOQvZWKurl0kA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-000dfe97","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"004\",\"errorMessage\" :\"Validation failed. Max of 36500 (~100 years)\" }}\n"}],"_postman_id":"e120a95d-0b05-4e06-9950-b61bd90afe65"}],"id":"946ef874-753d-4a94-936a-01a739f83784","description":"<p>This service is focused on recent starters i.e. active individuals who recently joined. With this service you can determine individuals you started within the previous X number of days.</p>\n<p>in cases where no <code>days</code> parameter has been provided, the service assumes <em>0</em> i.e. who has started <em>today</em>. In most cases it is expected to provide 30 / 60 or 90 days. A max of 36500 is set for the upper limit.</p>\n","event":[{"listen":"prerequest","script":{"id":"26f2732c-100d-4f3a-a47b-3a70592ab87b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1741e67d-ec3d-418c-9d45-e3266a304b1b","type":"text/javascript","exec":[""]}}],"_postman_id":"946ef874-753d-4a94-936a-01a739f83784"},{"name":"future","item":[{"name":"/filter/jml/joiner/future/:days","id":"05078afc-28c9-4767-bfc8-1bfab0593b70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/joiner/future/5","description":"<p>Determine individuals due to start within the next X number of days.</p>\n<p>In cases where no <code>days</code> parameter has been provided, the service assumes <em>0</em> i.e. who has started <em>today</em>. In most cases it is expected to provide 30 / 60 or 90 days. A max of 36500 is set for the upper limit.</p>\n<p>In all cases employees starting <em>today</em> are included.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","jml","joiner","future","5"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7cf60d52-98ce-4230-bf1b-3d566a7a6269","name":"Starting Next 5 Days.","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/joiner/future/5"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 16 Mar 2018 09:06:02 GMT","name":"Date","description":""},{"key":"ETag","value":"\"a57aOwmxwydB4kqrVe87nAzw9DQGCbwJ+w+BGb7ygM2NEY37h+ymWOeSbINkBYdsAjKEEV+GpYdRIyszNKFUXg==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"cb89685b-0a33-4e88-9829-ed0bf23cf3fc-0000597a","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"1409000\"\n,\n\"1410828\"\n,\n\"1416471\"\n,\n\"1419656\"\n,\n\"1421133\"\n,\n\"5990404\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 6,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/joiner/future/5\"\n      }\n    ]\n}\n"},{"id":"e50ca0c5-b4e6-4045-bc82-5ac8a3029d2b","name":"Starting Today","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/joiner/future/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 16 Mar 2018 09:14:11 GMT","name":"Date","description":""},{"key":"ETag","value":"\"uvizmfzh9HbIvg+bU9Db97yB/zZdZHUPZKquXaeGXMz25ZoDudfkO6lH/nfFZrEDkA99VtHMaWK9iAGZnxcWtw==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"cb89685b-0a33-4e88-9829-ed0bf23cf3fc-00005eff","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"1265972\"\n,\n\"1266093\"\n,\n\"1266267\"\n,\n\"1266320\"\n,\n\"1425560\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 5,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/joiner/future/\"\n      }\n    ]\n}\n"}],"_postman_id":"05078afc-28c9-4767-bfc8-1bfab0593b70"}],"id":"1e08ec5e-252e-49ac-af93-dc3449d9d38a","description":"<p>This service is focused on individuals starting in the future i.e. individuals who are due to start, but are not currently active. With this service you can determine individuals due to commence <em>within</em> the next X number of days i.e. this is a between NOW and + X days.</p>\n","event":[{"listen":"prerequest","script":{"id":"a83c89ce-f1d2-47f1-bdab-f43cf55ed75b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d6d81bc0-a5b4-4926-99d3-1c5190677d94","type":"text/javascript","exec":[""]}}],"_postman_id":"1e08ec5e-252e-49ac-af93-dc3449d9d38a"}],"id":"fdda5684-e4f6-435a-a60b-5efe451aa6c5","description":"<p>This module relates to employees joining, the service will query individuals starting date, even though the employee may currently be active. An individuals start date is their most recent start date, in cases where an employee has left and rejoined, their current start date is the most recent date, this service only queries the most recent start date. The service will not look at original start dates aka <code>day Zero</code>.</p>\n<p>Common use cases are:</p>\n<ul>\n<li>Determine individual's recently joined, i.e. started in last 30 days.</li>\n<li>Determine individual's joining at a future date, i.e. starting in the next 30 days.</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"94b03748-6b39-4068-ad6d-02e22c07bec8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7bbe5200-d15e-4f3d-aaee-b7b31c6aeb8b","type":"text/javascript","exec":[""]}}],"_postman_id":"fdda5684-e4f6-435a-a60b-5efe451aa6c5"}],"id":"aa12a8f6-22a2-493e-bb9f-afdcc07c233f","description":"<p>This modules refers to Joiners, Movers and Leavers hence /JML/. Various use cases exist, for example, use this module to determine:</p>\n<ul>\n<li>recently joined employees</li>\n<li>employee's joining within next X number of days</li>\n<li>employee's due to leave based on dates / date</li>\n</ul>\n<p>In general this module will provide filters for employees joining, moving and leaving. The objective is to return an employee result set matching certain use cases.</p>\n","event":[{"listen":"prerequest","script":{"id":"5d907c00-e3a5-4a79-9c7c-f3166d3d0664","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"81437677-c2b3-4395-9642-9711d9a7cc60","type":"text/javascript","exec":[""]}}],"_postman_id":"aa12a8f6-22a2-493e-bb9f-afdcc07c233f"}],"id":"06f9f219-d97f-4d20-8abe-e48a6cca46b3","description":"<p>The filter's module objective, is to decouple common query requests. Instead of each service supporting the common queries, these queries are decoupled in this filter module.</p>\n<p>Common Queries include get a list (i.e. a result set) of:</p>\n<ul>\n<li>active employees</li>\n<li>employee's due to leave</li>\n<li>employee's recently joined</li>\n<li>employee's due to join in the near future</li>\n<li>employee's appointments (typically the employees Job)</li>\n</ul>\n<p>Use these filers to query for employees under above headings, and then use the result set to feed other services.</p>\n<p><strong>Pagination and Limits</strong></p>\n<p>These filters allow for larger than normal pagesizes. For example, typically the pagesize (i.e. the result set) is 100 results, however you can now set the pagesize to 10,000 (this is a max value). Therefore if you have 10,000 employees you can make one request, if you have more than 10,000 active employees, the filter will provide the first 10,000 and provide a reference link for the next 10,000. </p>\n<p>Do not set the pagesize above 10,000, if you do, only 100 results will be returned. The web services framework will always revert back to the default (i.e. 100) if the max value has been breached.</p>\n<p>Any instances where more than pagesize exist, e.g. (a pagesize of 100 is used, and 1,000 records exist) the response body will include a link array with additonal links for pagination.</p>\n<p>Each GET request includes following </p>\n<ul>\n<li>limit</li>\n</ul>\n<p>represents the maximum number of records returned in one request e.g. 100 (or whatever the pagesize is)</p>\n<ul>\n<li>offsetby</li>\n</ul>\n<p>represents pagination, the first request will always have an offsetby 0 i.e. the start. Where more than the limit exists offsetby controls the starting position, typically in batches of 100. Each GET request can accept the offsetby parameter.</p>\n<ul>\n<li>count</li>\n</ul>\n<p>the number of records for this reponse, the maximum count will equal the limit parameter i.e. 100.</p>\n<ul>\n<li>hasMore</li>\n</ul>\n<p>a boolean representation indicating if more records exist.</p>\n<ul>\n<li>links</li>\n</ul>\n<p>includes links to first and next. The next link is used when pagination is discovered i.e. more than the limit per request.</p>\n","event":[{"listen":"prerequest","script":{"id":"16a8ddce-40c8-435d-a553-0be640de542a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ca8b0414-33e6-4d44-add0-34121b2af4fc","type":"text/javascript","exec":[""]}}],"_postman_id":"06f9f219-d97f-4d20-8abe-e48a6cca46b3"},{"name":"Person","item":[{"name":"address","item":[{"name":"home","item":[{"name":"/person/address/home/:personnelNo","id":"b6ef6167-ae65-46f3-9337-0a99ee8dcf82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/home/5990404","description":"<p>This service simply returns the home address for an individual.</p>\n<p>Home address's have effective dates and have the concept of being active, the current effective and active home address is returned.  </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","address","home","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"88eaa242-da14-42d8-bd25-137c287f9ddd","name":"Home Address","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/home/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 26 Jun 2018 17:46:29 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"LHgoPsSqJ5Zp8UqBgh5MgVJG1HOKKCBfPREAx0YMiAa1XGYZQFGCugkHcVG78YpKDshSr27rdW7q+8qo0Xaa1Q==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-0000c169","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"line1\":\"01 Sherringham Avenue\",\"line2\":\"Westmore\",\"line3\":\"Windsor\",\"line4\":\"Tottenham\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N17\",\"postCodeSuffix\":\"9XJ\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/address/home/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"b6ef6167-ae65-46f3-9337-0a99ee8dcf82"}],"id":"acbf4261-0fba-49e5-86d3-e009eceaa6b3","description":"<p>This service simply returns the home address for an individual.</p>\n","event":[{"listen":"prerequest","script":{"id":"1ad0b0dc-d812-4905-a8eb-baed9dc7462b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"31a94f89-563f-423e-b398-370ec87edaa5","type":"text/javascript","exec":[""]}}],"_postman_id":"acbf4261-0fba-49e5-86d3-e009eceaa6b3"},{"name":"nextOfKin","item":[{"name":"/person/address/nextofkin/:personnelNo","id":"326f7e04-ca9e-41a7-9130-878f9dc7da9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/nextofkin/5990404","description":"<p>This service simply returns the next of kin address for an individual.</p>\n<p>Next of Kin address's have effective dates and have the concept of being active, the current effective and active Next of Kin address is returned.  </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","address","nextofkin","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"98c9ea9f-2438-479f-accc-610554e42fae","name":"Next Of Kin Address","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/nextofkin/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 26 Jun 2018 17:47:03 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"GH0Ws6A72ZRA9hGnM/hkQzulABHsxNo+6L4wYBM7/01GxS47hp98GWrAUk1Z3T0UyQgnPFcoFtJlDKvttTJzwQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=99","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-0000c1be","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"line1\":\"01 Windsor Street\",\"line2\":\"East Bridge\",\"line3\":\"Kings Avenue\",\"line4\":\"Windsor\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N18\",\"postCodeSuffix\":\"8ZJ\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/address/nextofkin/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"326f7e04-ca9e-41a7-9130-878f9dc7da9a"}],"id":"87dd8f0f-c301-4891-83c5-d98b38baf208","description":"<p>This service simply returns the next of kin address for an individual.</p>\n","event":[{"listen":"prerequest","script":{"id":"200a3a50-6c5b-47a5-bf74-f41381852beb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6411c89a-56f3-46d1-b8e9-510f1b907ab1","type":"text/javascript","exec":[""]}}],"_postman_id":"87dd8f0f-c301-4891-83c5-d98b38baf208"},{"name":"work ","item":[{"name":"/person/address/work/:personnelNo","id":"1f957bfc-b8d7-4170-b40f-bdaf89d816e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/work/5990404","description":"<p>This service simply returns the work address for an individual.</p>\n<p>Work address's have effective dates and have the concept of being active, the current effective and active work address is returned.  </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","address","work","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5b596601-b2bf-4f3a-ad48-454786ee7c6a","name":"Work Address","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/work/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 26 Jun 2018 17:50:18 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"BfvMfrRK99guHS+1Cxo2GDYQj7LsqayBrWRnoH+84jV80kgOOa38STTJaL7oNDTYQNuu9qlKrJPfMDqZZfKWeg==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-0000c393","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"line1\":\"100 Fleetmore Street\",\"line2\":\"West Kings State\",\"line3\":\"Queens Avenue\",\"line4\":\"Windsor\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N17\",\"postCodeSuffix\":\"9SD\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/address/work/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"1f957bfc-b8d7-4170-b40f-bdaf89d816e7"}],"id":"3a0ea542-c90b-4ba2-a69c-378b4940437d","description":"<p>This service simply returns the work address for an individual. The address type of 'work' is not deafult address type as part of CoreHR. However, this address type is often created by system Administrators. For this web service to return an Address, the address type must be 'WORK'. </p>\n","event":[{"listen":"prerequest","script":{"id":"09200ccc-be1c-44c6-8e8f-421e82b85ec9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"38e07840-8126-42f7-b51f-e18085e1b7f5","type":"text/javascript","exec":[""]}}],"_postman_id":"3a0ea542-c90b-4ba2-a69c-378b4940437d"},{"name":"all","item":[{"name":"/person/address/all/:personnelNo","id":"120b5591-fd03-4a54-ad69-5a6fae2320d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/all/5990404","description":"<p>This service returns all active addresses for an individual currently ineffective. This includes home, next of kin and <em>other</em> address. </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","address","all","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8a947441-76a0-4e26-9b8e-d75e090ce53d","name":"All Addresses","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/all/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 26 Jun 2018 17:54:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"whBYl/hO41707uWg37s7brO+oRGWKVUVCArWwHkfSzyVWhRscn+I6GNpgMHTDembglIL4AUg8sl4ShdOw6gEhQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-0000c5f8","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"WORK\",\"line1\":\"100 Fleetmore Street\",\"line2\":\"West Kings State\",\"line3\":\"Queens Avenue\",\"line4\":\"Windsor\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N17\",\"postCodeSuffix\":\"9SD\"}\n,\n{\"type\":\"home\",\"line1\":\"01 Sherringham Avenue\",\"line2\":\"Westmore\",\"line3\":\"Windsor\",\"line4\":\"Tottenham\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N17\",\"postCodeSuffix\":\"9XJ\"}\n,\n{\"type\":\"nextOfKin\",\"line1\":\"01 Windsor Street\",\"line2\":\"East Bridge\",\"line3\":\"Kings Avenue\",\"line4\":\"Windsor\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N18\",\"postCodeSuffix\":\"8ZJ\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 3,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/address/all/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"120b5591-fd03-4a54-ad69-5a6fae2320d3"}],"id":"90457752-1aa5-4087-8bf7-76ac4cc192e7","description":"<p>Use this service for all addresses associated with an individual. A tenant has the ability to create several additional address types. This service will return a result set of additional addresses i.e. all addresses associated with the individual including Home and NextOfKin.</p>\n<p>To determine descriptions for these additional address type, one can use the reference module. </p>\n<p>If a web service app has access to the reference module, and your administrator has whitelisted the reference type <code>ADDTYP</code> the app can query the reference module using the type <code>ADDTYP</code>. These additional <em>other</em> address types are best explained by the HR administrators of the CoreHR application.</p>\n","event":[{"listen":"prerequest","script":{"id":"e45a3e96-77fe-4d98-a1f9-474d50d6151f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f03f0692-51cd-4f17-b54f-5775d26d4257","type":"text/javascript","exec":[""]}}],"_postman_id":"90457752-1aa5-4087-8bf7-76ac4cc192e7"}],"id":"9f183d18-0798-437d-8381-62b26f219521","description":"<p>The address module's objective is to determine individual's addresses. PeopleXD provides a complete and detailed module for defining different types of addresses. Individual's may have several different addresses, typically referred to as <em>address types</em> e.g. home, business, next of kin, overseas etc. Not all personnel will have each of these address types. Assigning addresses to each person is a matter for each tenant. The PeopleXD app also faciliates tenants adding various additional addresses.</p>\n<p>In general, use cases for these services include obtaining:</p>\n<ol>\n<li>an individual's home address</li>\n<li>an individual's next of kin address</li>\n<li>an individual's work address</li>\n<li>other address types associated with an individual</li>\n</ol>\n<p>This module has been split into different easy to use scenarios:</p>\n<p>*   Home Address\n*   Next of Kin\n*   Work\n*   All</p>\n<p>Home and Next of Kin addresses are simple and explicit. While <em>others</em> are slightly more completex. If the requirement is home address simply use the home address service, and for next of kin use next of kin service. For <em>Other</em> address types refer to the <em>all</em> address service below. Work address has been added as it's a typical use case, however, work address may or may not be in use.</p>\n<p><strong>Address Templating</strong></p>\n<p>This service does <strong>not</strong> implement address templating. Address type templating is a higher level display facility, providing options around the order of how to display an address e.g. display address line 3 before address line 1. Instead, the address is displayed in order 1 through 5.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<p>Each of the address web services use the following parameters:</p>\n<p>*   personnelNo</p>\n<p>Manadatory</p>\n<p>Type: AlphaNumeric</p>\n<p>Max Length : 12</p>\n","event":[{"listen":"prerequest","script":{"id":"64a0a0f0-d943-4452-9591-59067af6d73d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bd322577-e279-4eef-8d8e-1f1c82362d35","type":"text/javascript","exec":[""]}}],"_postman_id":"9f183d18-0798-437d-8381-62b26f219521"},{"name":"allowances","item":[{"name":"/person/allowances/paid/currentperiod/:personnelNo","id":"6ecf151c-17aa-4d1e-a1b1-728cde24ab0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/allowances/paid/currentperiod/4956040","description":"<p>The specific end point will provide allowances that have been processed for the employee's most recent period that has been completed i.e. from the employees most recent payslip that has been completed for the employees pay group.</p>\n<p><strong>Parameters</strong></p>\n<p>requires personnelNumber, use the /filter/* endpoints to obtain personnelNumbers</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li><p>appointmenId </p>\n<p>A unique reference identifier for the appointment, this is a system generated identifier.</p>\n</li>\n<li><p>payCode</p>\n</li>\n</ul>\n<p>Represents the actual payCode used to process this item.</p>\n<ul>\n<li>payCodeDescription</li>\n</ul>\n<p>This attribute represents a free text description associated with the paycode.</p>\n<ul>\n<li>analysisCode</li>\n</ul>\n<p>Represents the associated anylsis code associated with the paycode. Analysis codes are used to represent a distinction or grouping of payCodes and are typically used for reporting and grouping purposes.</p>\n<ul>\n<li>analysisCodeDescription</li>\n</ul>\n<p>This attribute represents a free text description associated with the analysisCode.</p>\n<ul>\n<li>value</li>\n</ul>\n<p>This represents the amount on the employee's payslip, in most cases the allowances will be a positive amount, but there can be cases where this amount will be negative.</p>\n<ul>\n<li>payrollPeriod</li>\n</ul>\n<p>This attribute represents the payroll period that the allowance included. This should represent the payroll period associated with the employees pay group that is marked as 'Completed Update'.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","allowances","paid","currentperiod","4956040"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"73b5bc54-dbde-410c-9155-153818d8a5b2","name":"success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/allowances/paid/currentperiod/4956040"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Nov 2018 15:37:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-00171402"},{"key":"ETag","value":"\"CzWVSoBAGGzx6TAhnBF94Nn1BjnGS+22nCwEWwo0RBzizYGZmXu8kL2iCZVsL8TsMa63EWIkj4bHVKIOfuE7XQ==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"items\": [\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"2001\",\n            \"payCodeDescription\": \"OVERTIME @ 1.00\",\n            \"analysisCode\": \"2000\",\n            \"analysisCodeDescription\": \"OVERTIME\",\n            \"value\": \"147.2\"\n        },\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"6017\",\n            \"payCodeDescription\": \"USC\",\n            \"analysisCode\": \"6000\",\n            \"analysisCodeDescription\": \"STATUTORY DEDUCTIONS\",\n            \"value\": \"-327.4\"\n        },\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"9500\",\n            \"payCodeDescription\": \"EMPLOYER PRSI\",\n            \"analysisCode\": \"9000\",\n            \"analysisCodeDescription\": \"EMPLOYER NI\",\n            \"value\": \"-.74\"\n        },\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"6500\",\n            \"payCodeDescription\": \"EMPLOYEE PRSI\",\n            \"analysisCode\": \"6000\",\n            \"analysisCodeDescription\": \"STATUTORY DEDUCTIONS\",\n            \"value\": \"0\"\n        },\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"6000\",\n            \"payCodeDescription\": \"PAYE\",\n            \"analysisCode\": \"6000\",\n            \"analysisCodeDescription\": \"STATUTORY DEDUCTIONS\",\n            \"value\": \"-1862.48\"\n        },\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"625\",\n            \"payCodeDescription\": \"ADVANCE MISC\",\n            \"analysisCode\": \"7000\",\n            \"analysisCodeDescription\": \"VOLUNTARY DEDUCTIONS\",\n            \"value\": \"-74.34\"\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 6,\n    \"hasMore\": false,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/allowances/paid/currentperiod/4956040\"\n        }\n    ]\n}"}],"_postman_id":"6ecf151c-17aa-4d1e-a1b1-728cde24ab0d"}],"id":"f71c02cf-297d-4849-9896-14c7d56cda00","description":"<p>The allowance module deals with providing allowance information associated with an employee. At this time the module only deals with allowances that have been paid, and is not aware of future allowances.</p>\n","event":[{"listen":"prerequest","script":{"id":"bb936281-bfa8-49c3-a7e8-58941f5e9843","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"16566b77-6e2f-48df-b288-f783e71a17df","type":"text/javascript","exec":[""]}}],"_postman_id":"f71c02cf-297d-4849-9896-14c7d56cda00"},{"name":"appointment","item":[{"name":"/person/appointment/:personnelNo","id":"c78a8900-6fb5-4f4c-ab73-8d2327b42fc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}]},"isInherited":false},"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/appointment/7202000006","description":"<p>This service returns an individuals appointment related information. An appointment has various different descriptions including Contract, Post, Job, Position etc. Individuals may have more than one appointment at any given moment, though typically an individual will hold one appointment at any one time.</p>\n<p><strong>Parameters</strong></p>\n<p>requires personnelNumber, use the /filter/* endpoints to obtain personnelNumbers</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li><p>appointmenId </p>\n<p>A unique reference identifier for the appointment, this is a system generated identifier.</p>\n</li>\n<li><p>appointmentStatus - following explains the details:</p>\n</li>\n</ul>\n<ul>\n<li><p><code>PL</code> (Planned) - When a new appointment is created it will have the status of PL. This is like a placeholder appointment. You can enter planned details like the planned contract dates. <strong>No person</strong> is linked to the appointment at this stage. As such for this service you should never see this status.</p>\n</li>\n<li><p><code>AU</code> (Authorised) - When the post administrator authorises a planned appointment, the appointment status changes to AU. This is a placeholder appointment that has been authorised. <strong>No person</strong> is linked to the appointment at this stage. As such for this service you should never see this status.</p>\n</li>\n<li><p><code>RE</code> (Recruitment in Progress) - If the recruitment module is in use, you can optionally link an authorised appointment to an open vacancy. The appointment status changes to RE. A person gets linked to the appointment via the recruitment module when they are offered and accept a vacancy offer.</p>\n</li>\n<li><p><code>AP</code> (Appointed) - The appointment status changes to AP when an employee new or existing is appointed to the appointment. Further contract details can be entered at this stage. It is usually indicative of a person accepting the contract but has not yet started it. The post can be configured that when you link an employee to the appointment that this stage is bypassed and the status goes straight to commenced. </p>\n</li>\n<li><p><code>CO</code> Commenced - The person has started on the appointment. A salary record is generated. For new starters they cannot be brought on to payroll until they are commenced. This should be the most common status encountered.</p>\n</li>\n<li><p><code>CF</code> Commenced Future - The person is commencing the appointment at a future date. The status reverts to CO when the start date of the appointment becomes effective.</p>\n</li>\n<li><p><code>EN</code> Ended - The appointment has been ended because the person has left the organisation or has started in a new appointment.</p>\n</li>\n</ul>\n<ul>\n<li>category</li>\n</ul>\n<p> Categorises appointments based on an organisations requirements. E.g. Categorising employees who are entitled to additional levels of annual leave. For associated descriptions use the Reference Module with the reference type <code>CATG</code>.</p>\n<ul>\n<li><p>subCategory</p>\n<p>Typically used to further break down the Category. For associated descriptions use the Reference Module with the reference type <code>SUBC</code>.</p>\n</li>\n<li><p>startDate</p>\n</li>\n</ul>\n<p> The appointment start date.</p>\n<ul>\n<li>endDate</li>\n</ul>\n<p> The appointment start date.</p>\n<ul>\n<li>lastAmendedDate</li>\n</ul>\n<p>(requires v27.0.3)</p>\n<p> This date indicated a changed has been made to the appointment.</p>\n<ul>\n<li>targetEndDate</li>\n</ul>\n<p> The appointment target end date.</p>\n<ul>\n<li>FTE</li>\n</ul>\n<p> Full Time Eqivalence of the appointment between 0 and 1 (inclusive).</p>\n<ul>\n<li><p>contractId</p>\n<p>provides ability to set a contract identifier and associate with the appiointment.</p>\n</li>\n<li><p>jobTitle</p>\n</li>\n</ul>\n<p> The title of the apponitment ad used to describe the name of the position.</p>\n<ul>\n<li>jobCategory</li>\n</ul>\n<p> This is an appointment level field used to categorise job titles into groups of similar job titles. For associated descriptions use the Reference Module with the reference type <code>JOBCAT</code>.</p>\n<ul>\n<li>postNumber</li>\n</ul>\n<p> the is the post profile number from which the appointmnet is based on. A post is essentially a blue print for the appointments.</p>\n<ul>\n<li>primaryFlag</li>\n</ul>\n<p> this attribute will simply indicate if the appointment is the \"Substantive\" appointment as of today, this is an employees primary appointment.</p>\n<ul>\n<li>project</li>\n</ul>\n<p> this attribute is populated when the appointment is associated with a project</p>\n<ul>\n<li>Hierarchy / Structure Related - explains where the appointment fits within an organisation, not all of these fields will be populated. The number of fields populated depend on the the configuration of the organisation structure. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</li>\n</ul>\n<ul>\n<li><p><code>structureCode</code> - ability to map back to the Organisation Hierarchy end point /organisation</p>\n</li>\n<li><p><code>company</code> - Used to indicate the company / organisation on the structure of where the person's appointment sits. This is usually the highest level of the organisation. For associated descriptions use the Reference Module with the reference type <code>ORGZ</code>.</p>\n</li>\n<li><p><code>managementUnit</code> - Used to indicate the management unit within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>MGTU</code>.</p>\n</li>\n<li><p><code>department</code> - Used to indicate the department within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DEPT</code>.</p>\n</li>\n<li><p><code>costCentre</code> - The cost centre associated with this appointment. For associated descriptions use the Reference Module with the reference type <code>COST</code>.</p>\n</li>\n<li><p><code>division</code> - Used to indicate the division within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DIV</code>.</p>\n</li>\n<li><p><code>location</code> - Used to indicate the location within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>LOC</code>.</p>\n</li>\n<li><p><code>workGroup</code> - Used to indicate the workGroup within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>WRKGRP</code>.</p>\n</li>\n<li><p><code>user1</code> .. <code>user5</code> - Additional customized fields, how these are mapped and defined refer to the web service /organisation, using the provided structure code.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","appointment","7202000006"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f50d29e6-d52c-41d8-b7bf-08a2ec718971","name":"Appointments","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/appointment/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS","name":"Access-Control-Allow-Methods-Age","description":"Custom header"},{"key":"Access-Control-Max-Age","value":"600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 13 Sep 2018 16:53:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"6uEzXT1L1a7EIjGqPALAQgc9J/ltVCH+5VWSSPcILmIbcvZSnpH8IsU7NQnEpM2ryVKA3gvPMQcMIw2sgvZILA==-gzip\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"b0b00ddc-b960-4e37-b4b3-3d5446e9ff5e-0008a914","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"appointmentId\":\"SS0151-2004\",\"appointmentStatus\":\"CO\",\"employeeStatus\":\"UF\",\"jobDescription\":\"\",\"primaryFlag\":\"N\",\"category\":\"ST_P\",\"subCategory\":\"0006\",\"startDate\":\"20170901\",\"endDate\":\"\",\"lastAmendedDate\":\"20160102\",\"targetEndDate\":\"20200102\",\"FTE\":\"1\",\"contractId\":\"SS0151-2004\",\"jobTitle\":\"J00151\",\"jobCategory\":\"PT\",\"project\":\"\",\"postNumber\":\"SS0151\",\"reasonCode\":\"IHRS\",\"action\":\"\",\"hierarchy\" : {\"structureCode\":\"5\",\"company\":\"1\",\"managementUnit\":\"1024\",\"department\":\"9054\",\"costCentre\":\"OU73523\",\"division\":\"\",\"location\":\"4661\",\"workGroup\":\"H00055\",\"user1\":\"\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"9439\"}}\n,\n{\"appointmentId\":\"502630-2\",\"appointmentStatus\":\"AP\",\"employeeStatus\":\"UF\",\"jobDescription\":\"\",\"primaryFlag\":\"N\",\"category\":\"ST_P\",\"subCategory\":\"0006\",\"startDate\":\"20170717\",\"endDate\":\"\",\"lastAmendedDate\":\"20160102\",\"targetEndDate\":\"20200102\",\"FTE\":\"1\",\"contractId\":\"502630-2\",\"jobTitle\":\"J01018\",\"jobCategory\":\"PT\",\"project\":\"\",\"postNumber\":\"502630\",\"reasonCode\":\"ST_JT\",\"action\":\"\",\"hierarchy\" : {\"structureCode\":\"5050\",\"company\":\"5050\",\"managementUnit\":\"50543\",\"department\":\"SC10\",\"costCentre\":\"BM40031\",\"division\":\"5401\",\"location\":\"3065\",\"workGroup\":\"H00029\",\"user1\":\"SD01\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"\"}}\n,\n{\"appointmentId\":\"599014-25\",\"appointmentStatus\":\"CO\",\"employeeStatus\":\"UF\",\"jobDescription\":\"\",\"primaryFlag\":\"Y\",\"category\":\"ST_P\",\"subCategory\":\"0006\",\"startDate\":\"20170102\",\"endDate\":\"\",\"lastAmendedDate\":\"20160102\",\"targetEndDate\":\"20200102\",\"FTE\":\"1\",\"contractId\":\"599014-25\",\"jobTitle\":\"NC13\",\"jobCategory\":\"PT\",\"project\":\"\",\"postNumber\":\"599014\",\"reasonCode\":\"\",\"action\":\"\",\"hierarchy\" : {\"structureCode\":\"5990\",\"company\":\"5990\",\"managementUnit\":\"59941\",\"department\":\"NC01\",\"costCentre\":\"NC01\",\"division\":\"5991\",\"location\":\"5991\",\"workGroup\":\"NC02\",\"user1\":\"NC26\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"\"}}\n,\n{\"appointmentId\":\"SS0093-2093\",\"appointmentStatus\":\"EN\",\"employeeStatus\":\"UF\",\"jobDescription\":\"\",\"primaryFlag\":\"N\",\"category\":\"ST_P\",\"subCategory\":\"0006\",\"startDate\":\"20170101\",\"endDate\":\"20170714\",\"lastAmendedDate\":\"20160102\",\"targetEndDate\":\"20200102\",\"FTE\":\"1\",\"contractId\":\"SS0093-2093\",\"jobTitle\":\"J00093\",\"jobCategory\":\"PT\",\"project\":\"5\",\"postNumber\":\"SS0093\",\"reasonCode\":\"SR\",\"action\":\"AC\",\"hierarchy\" : {\"structureCode\":\"5\",\"company\":\"1\",\"managementUnit\":\"1023\",\"department\":\"9043\",\"costCentre\":\"MS71120\",\"division\":\"\",\"location\":\"3079\",\"workGroup\":\"H00044\",\"user1\":\"\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"9408\"}}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 4,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/appointment/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"c78a8900-6fb5-4f4c-ab73-8d2327b42fc8"}],"id":"b7649c05-e6f2-4392-aa94-b58dd8c8c788","description":"<p>This service provides the ability to obtain an employees list of appointments, an employee can have more than one appointment. All appointments are returned, however each individual movement is <strong>not</strong> returned. The most recent detail associated with the appointment is returned. </p>\n<p>An appointment has various different descriptions including Contract, Post, Job, Position etc. Individuals may have more than one appointment at any given moment, though typically an individual will hold one appointment at any one time.</p>\n<p><strong>Example</strong></p>\n<p>On 1st Jan 2018, employee Marco is a software engineer and his appoointment has a cost centre 100.</p>\n<p>Appointment - 001</p>\n<p>Title - Software Engineer</p>\n<p>Cost Centre - 100</p>\n<p>All requests for Marcos appointment will return one appointmnet for Marco with a cost of <strong>100</strong>.</p>\n<p>On 10th July 2018, management decide to move all engineering to a new cost centre 200, this is called a movement i.e. some change of attribute associated with Marco's appointment. In this case the change relates to a cost centre.</p>\n<p>Appointment - 001</p>\n<p>Title - Software Engineer</p>\n<p>Cost Centre - 200</p>\n<p>All requests (from 10th July 2018) for Marcos appointment will return one appointment for Marco with a cost of <strong>200</strong>.</p>\n","event":[{"listen":"prerequest","script":{"id":"7ccf45ac-b025-466a-a285-9e42150bf421","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"040f5fad-cfde-423d-9430-7cb4c6cb3f10","type":"text/javascript","exec":[""]}}],"_postman_id":"b7649c05-e6f2-4392-aa94-b58dd8c8c788"},{"name":"bank","item":[{"name":"/person/bank/:personnelNo","id":"22a412ad-a1ae-4d97-bfa6-fbbf4770fc53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/bank/5990404","description":"<p>Provides an employees bank account details both Salary and Expense. In addition the building society number is also available form this web service.</p>\n<p>NB - relates to tenants implementing HR, no special consideration has been provided to <em>Payroll Only Special tenants</em>.</p>\n<p>Tenant's implement different approaches to storing an individual's bank account detail. This service provides both traditional sort code / bank account code's and the newer BIC and IBAN. </p>\n<p>No conversion process takes place, instead the information held in CoreHR is displayed i.e. if the tenant has not provided BIC and IBAN for an individual, the expectation for this service is not to display same.</p>\n<ul>\n<li>personnelNo</li>\n</ul>\n<p>this is manadatory, at a minimum this parameter must be provided.</p>\n<p>Returns following information for both Salary and Expense:</p>\n<ul>\n<li>Sort Code</li>\n</ul>\n<p>An individual's traditional Bank Branch identification. This is left padded with 0's for values less than 6 characters. (requires v27.0.8 for the left padding).</p>\n<ul>\n<li>Bank Account Number</li>\n</ul>\n<p>An individual's traditional Bank Account Number. This is left padded with 0's for values less than 8 characters (requires v27.0.8 for the left padding).</p>\n<ul>\n<li>BIC</li>\n</ul>\n<p>An individual's Bank Identification code</p>\n<ul>\n<li>IBAN</li>\n</ul>\n<p>An individual's International Bank Account Number</p>\n<ul>\n<li>Building Society Reference</li>\n</ul>\n<p>An individual's building society reference number </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","bank","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b94164fb-5e77-41ce-90b9-705426cc7146","name":"Salary and Expense","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/bank/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 05 Apr 2018 14:24:56 GMT","name":"Date","description":""},{"key":"ETag","value":"\"kPah9YnLuQejW3/UQrmaws6hdxEb5O4JN3azU8xWPt3TOpcq+1RDvvJdvW8ILk19RiBm3x/Ypr/sHf/UhfyiiQ==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"d99bff8e-c042-4720-8fb9-2dea429dc7ce-0001db16","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"accounts\" : [\n{\"type\":\"salary\",\"bankSortCode\":\"902813\",\"bankAccountNumber\":\"12345678\",\"bic\":\"AIBKIE2DXXX\",\"iBan\":\"IE49AIBK93015612345678\"}\n,\n{\"type\":\"expense\",\"bankSortCode\":\"912314\",\"bankAccountNumber\":\"87235622\",\"bic\":\"AIBKIE2DXXX\",\"iBan\":\"IE49AIBK93015612345678\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/bank/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"22a412ad-a1ae-4d97-bfa6-fbbf4770fc53"}],"id":"4f8fb50e-234e-4255-b82f-2be8bfd60268","description":"<p>A simply service to retrieve an individuals bank account details. </p>\n<p>An individual may have more than one bank account, e.g. one for Salary payments and another for Expense. These account details maybe the same or different. </p>\n<p>This service caters for both Salary and Expense bank accounts.</p>\n","event":[{"listen":"prerequest","script":{"id":"2c11a085-89b3-4635-bd19-6c71e4a1e4b6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b43ddcd4-071d-4d28-919f-cf1456997d89","type":"text/javascript","exec":[""]}}],"_postman_id":"4f8fb50e-234e-4255-b82f-2be8bfd60268"},{"name":"basicAttributes","item":[{"name":"/person/basicattributes/:personnelNo","id":"42d80b5f-6c95-4245-bc8d-30828c33d221","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/basicattributes/","description":"<p>This module returns some of the employee's most basic attributes, however, certain basic attributes are not include in this service for privacy reasons e.g. Social Security Number (SSN). To obtain SSN a separate service is available. The person module typically accepts only <code>personnelNo</code>. Use the filter module to obtain a result sets for various employees status e.g. recently joined, left , active etc.</p>\n<p>Most of these attributes are provied by the tenant, the descriptions may not exactly match with the value provided. For example: A field exists known as \"Home Telephone Number\" a tenant may use this for a Landline Number, a personal business number, a mobile number etc.  </p>\n<p>NB No confirmation takes place on the personnelNo, if an incorrect personnelNo is presented the service will simply respond with no data.</p>\n<p>Following attributes are returned:</p>\n<h2 id=\"general\">General</h2>\n<ul>\n<li>First Name</li>\n</ul>\n<p>Indicates a persons first name.</p>\n<ul>\n<li>Middle Name</li>\n</ul>\n<p>Indicates a persons middle name.</p>\n<ul>\n<li>Last Name</li>\n</ul>\n<p>Indicates a persons middle name.</p>\n<ul>\n<li>Previous Surname</li>\n</ul>\n<p>Indicates a persons previous surname.</p>\n<ul>\n<li>Known As</li>\n</ul>\n<p>Sometimes a person is known as a slightly different name that first, last or middle name. This field represents such sceanrios.</p>\n<ul>\n<li>Title</li>\n</ul>\n<p>Indicates the persons full title description.</p>\n<ul>\n<li>Active</li>\n</ul>\n<p>Simply indicates Y or N, answering the question at this point in time ( i.e. when the serice is called) \"Is Person Currently active?\". In cases where an individual has a leaving date on the same date the service is executed i.e. <em>today</em> the individual is considered active and will have a value of 'Y'.</p>\n<ul>\n<li>OnBoarding Completed</li>\n</ul>\n<p>This attribute will be flagged as 'Y' indicating individual has completed their onboarding process, otherwise this will be flagged as 'N'. </p>\n<ul>\n<li>Next of Kin Name</li>\n</ul>\n<p>The name in CoreHR provided for the individual's next of kin.</p>\n<ul>\n<li>Next of Kin Relationship</li>\n</ul>\n<p>The name in CoreHR provided for the individual's next of kin relationship.</p>\n<ul>\n<li>Next of Kin Contact Number</li>\n</ul>\n<p>The contact number associated with the next of kin.</p>\n<ul>\n<li>Home Telephone Number</li>\n</ul>\n<p>An individuals home telephone number, the area code is included in this field.</p>\n<ul>\n<li>salaryPayMethod</li>\n</ul>\n<p>Represents the method of payment for one's salary. This is a code e.g 'PP', to obtain the description use the reference module web service using a <code>type</code> of <code>PAYM</code>. Your system administrator will have to ensure this reference type is whitelisted.</p>\n<p><strong>NB</strong> To obtain Next of Kin Address use the address module.</p>\n<ul>\n<li>loginId</li>\n</ul>\n<p>An individuals login identifier for self service and mobile applications. NB for SAML enabled sites this attribute will display N/A (SAML enabled site).</p>\n<h2 id=\"dates\">Dates</h2>\n<p>All dates are represented as : YYYYMMDD</p>\n<ul>\n<li>Date of Birth</li>\n</ul>\n<p>An individuals date of birth formated</p>\n<ul>\n<li>Termination Date</li>\n</ul>\n<p>Indicates an individuals most recent date for leaving. In cases where a person has left and rejoined and is flag to leave again this date will alsways be the most recent date for leaving. This may not be populated, this date can be in the futrue.</p>\n<ul>\n<li>Current start Date</li>\n</ul>\n<p>An individuals most recent date started. This will cater for sceanrios where an individual has left and rejoined. It will always represent the current start date.</p>\n<ul>\n<li>Original Start Date</li>\n</ul>\n<p>An individuals first time starting with an organisation. This can cater for scnearioes where an employee has left and rejoined. This date never changes, if an individual is currently active and has never left, this is the same date as Current Start Date. If this date is differnt to current start date, this typically means an individual has rejoined.</p>\n<ul>\n<li>Continuous Service Date</li>\n</ul>\n<p>This date is used for calculating an individual length of service. Within the CorEHR engine this can be a complex process. This field represents the correct continuous service date, there should be no need to attempt to derive this date from the various other dates supplied.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","basicattributes",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1f97da7f-16cd-43bf-b0c7-b5a2417bdd8b","name":"Validation Failed Wrong Field Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/basicattributes/1234567890123"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 22 Jun 2018 11:07:28 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"T2L98k5uY4oOIYGERPhm/fRFFPlBFj5IYfwnRplcyTaCuRCN5aZXRLqBxQjdHdbnstHQbumRWP7agQ3j8kc0FA==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-00143c86","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"The maximum length of this field is 12\",\n                    \"code\": \"9011\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"36bed440-18e5-44c4-a7e8-ea7a73aa5911","name":"Mandatory Field Missing","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/basicattributes/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 22 Jun 2018 11:05:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"Xv9lRXYEJ7eVD2nC2gIUqerGRIFOD81+JnHtfOxPQgWOYt9i+LRFxXCLUSr7Xr8sssp6vyRHeKI0cUBgSxjMyg==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001439db","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"This field is mandatory.\",\n                    \"code\": \"9001\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"c159e15d-cfaa-4cd7-a38a-04f4798767b4","name":"Validation Failed AlphaNumeric ","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/basicattributes/123!!"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 22 Jun 2018 11:06:40 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"RmAmWESpjPx1HQcC4yM3LakCm1+pazrdxEpor92H2/Bbgfn5+PkfVrR1SNs1fnfVhP7f+MscIk1F07yw1loGjw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-00143b6d","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Alphanumeric characters only.\",\n                    \"code\": \"9002\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"dcc9089f-840e-4781-ad49-bc21cc6a58f1","name":"Working Example","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/basicattributes/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 26 Jun 2018 16:16:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"QozGpjQ/pokQfFuXCrLby9Kfov86tifSFSwitSSyqwRrHSB0VIhvBagWvIthkxz1i96lihX/dAAhFAsj+KzgJQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-000062cb","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"firstName\":\"Marco\",\"middleName\":\"Rufus\",\"lastName\":\"Donnini\",\"previousSurname\":\"Radinski\",\"knownAs\":\"Marco\",\"title\":\"Professor\",\"active\":\"Y\",\"onboardingCompleted\":\"N\",\"dateOfBirth\":\"19700101\",\"currentStartDate\":\"20180315\",\"terminationDate\":\"\",\"originalStartDate\":\"20170102\",\"continuousServiceDate\":\"20180315\",\"nextOfKinName\":\"Rufus Stravous\",\"nextOfKinContactNumber\":\"+44 765892350\",\"nextOfKinRelationship\":\"Partner\",\"salaryPayMethod\":\"PP\",\"homeTelehoneNumber\":\"4401892350\",\"loginId\":\"N/A (SAML enabled site)\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/basicattributes/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"42d80b5f-6c95-4245-bc8d-30828c33d221"}],"id":"e7c923ab-962f-461b-9919-181d929ee498","description":"<p>This section deals with an individuals most basic attributes e.g. name, title, date of birth etc. As PeopleXD is a HR system, every field within the app could be argued to be included. Our objective is to provide services for use cases and not expose all fields in one monolithic web service. We also have to consider privacy and security e.g. not every third party service app requires Social Security Number or Bank Account Details etc. Hence, such fields are not included in the basicAttributes service, instead they are available via specific services.</p>\n<p>You might ask <em>where are email, mobile numbers etc and why are they not provided here?</em></p>\n<p>Instead they are provided via the <code>Contact</code> module (<em>such detail is highly configurable</em>)</p>\n<p>Following attributes are provided as part of this basicAttribute module:</p>\n<h2 id=\"general\">General</h2>\n<p>*   First Name</p>\n<p>Indicates an individuals first name.</p>\n<p>*   Middle Name</p>\n<p>Indicates an individuals middle name.</p>\n<p>*   Last Name</p>\n<p>Indicates an individuals middle name.</p>\n<p>*   Known As</p>\n<p>Sometimes a person is known as a slightly different name thatn their first, last or middle name. This field represents such scenarios.</p>\n<p>*   Title</p>\n<p>Indicates an individuals full title description.</p>\n<p>*   Active</p>\n<p>Simply indicates Y or N, answering the question at this point in time ( i.e. when the serice is called) <em>Is Person Currently active?</em></p>\n<p>*   Onabording Completed</p>\n<p>Simply indicates Y or N, representing if the individual has completed their onboarding.</p>\n<p>*   Next Of Kin</p>\n<p>Information regarding the individuals next of kin.</p>\n<h2 id=\"dates\">Dates</h2>\n<p>All dates are represented as : YYYYMMDD</p>\n<p>*   Date of Birth</p>\n<p>An individuals date of birth.</p>\n<p>*   Termination Date</p>\n<p>Indicates an individuals most recent date for leaving. In cases where a person has left, and rejoined, and is flagged to leave again, this date will always represent the most recent date for leaving. This date field may not be populated, this date can be in the futrue.</p>\n<p>*   Current start Date</p>\n<p>An individuals most recent date started. This will cater for scenarios where an individual has left and rejoined. It will always represent the current start date.</p>\n<p>*   Original Start Date</p>\n<p>Represents an individuals first date, when they started <em>Day Zero</em> with an organisation. This can cater for scenarios where an employee has left and rejoined. This date never changes, if an individual is currently active and has never left, this is the same date as Current Start Date. If this date is different to current start date, typically suggests an individual has rejoined.</p>\n<p>*   Continuous Service Date</p>\n<p>This date is used for calculating an individual length of service. Within the PeopleXD engine this can be a complex process. This field represents the correct continuous service date, there should be no need to attempt to derive this date from the various other dates supplied.</p>\n","event":[{"listen":"prerequest","script":{"id":"1fdd5a50-4eae-4ab7-a6d0-54f1404d15aa","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1646b227-4021-4e1c-94cc-1785b56e17c1","type":"text/javascript","exec":[""]}}],"_postman_id":"e7c923ab-962f-461b-9919-181d929ee498"},{"name":"costAllocation","item":[{"name":"/person/costallocation/:personnelNo","id":"7c93d78d-6cfa-449c-ba6d-bde01c27a512","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/costallocation/5990404","description":"<p>This service provides the ability to obtain an employees cost allocations, all cost allocations are returned both current and historic (dates are provided to distinguish open / closed allocations). Generally this service not return 100's of cost allocations, and therefore no special filters are created. </p>\n<p>Cost Alloactions can be defined at the employee or appointment level.This service is defined at the employee level, but will return appointment ID's where appropriate.</p>\n<p><strong>Parameters</strong></p>\n<p>requires personnelNumber, use the /filter/* endpoints to obtain personnelNumbers</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li>costCentre</li>\n</ul>\n<p>the cost centre, this code can be mapped to the reference module, using <code>COST</code>. This attribute should always be populated.</p>\n<ul>\n<li>percent</li>\n</ul>\n<p>the percentage applied to this cost allocation. This attribute should always be populated.</p>\n<ul>\n<li>location</li>\n</ul>\n<p>the location applied to this cost allocation, this code can be mapped to the reference module, using <code>LOC</code></p>\n<ul>\n<li>project</li>\n</ul>\n<p>the project applied to this cost allocation, this code can be mapped to the reference module, using <code>PROJ</code></p>\n<ul>\n<li>expense</li>\n</ul>\n<p>the expense applied to this cost allocation, this code can be mapped to the reference module, using <code>EXPS</code></p>\n<ul>\n<li>allocationId</li>\n</ul>\n<p>unique identifier for a cost allocation. Provides an ability to link directly back to the cost allocation. This attribute should always be populated.</p>\n<p>  Example:</p>\n<p>  An employees salary is calculated and associated with three different cost centres, and query where the value at cost centre   X comes from, the allocation ID (if present) can link back to the exact cost allocation that triggered it, e.g. 25% of costs to cost centre X.</p>\n<ul>\n<li>appointmentId</li>\n</ul>\n<p> The appointment associated with this cost allocation</p>\n<ul>\n<li>startDate</li>\n</ul>\n<p>the date this cost allocation comes into affect, format YYYYMMDD</p>\n<ul>\n<li>endDate</li>\n</ul>\n<p>the date this cost allocation is no longer in effect, format YYYYMMDD</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","costallocation","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"857d84ab-9292-434f-a3dc-06b3377afeb3","name":"Success Cost Allocations","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/costallocation/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 02 May 2018 11:00:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"6XCcIUTnTS/FuB7jjB/DDFRD/fz8jTWUTGZDWvK6rZuE8/isin3lnJogmwcCAHD4IuCST8s+6cRPWCA2FDMbCw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"d99bff8e-c042-4720-8fb9-2dea429dc7ce-003c1ddc","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"attributes\" : [\n{\"costCentre\":\"BM40008\",\"startDate\":\"20170715\",\"endDate\":\"20170831\",\"percent\":\"100\",\"location\":\"\",\"allocationId\":2017071974748241,\"appointmentId\":\"502629-3\",\"expense\":\"40290\",\"project\":\"7\"}\n,\n{\"costCentre\":\"BM40008\",\"startDate\":\"20170711\",\"endDate\":\"20170714\",\"percent\":\"100\",\"location\":\"\",\"allocationId\":2017071974745300,\"appointmentId\":\"502629-1\",\"expense\":\"40290\",\"project\":\"7\"}\n,\n{\"costCentre\":\"BM40014\",\"startDate\":\"20170704\",\"endDate\":\"20170710\",\"percent\":\"50\",\"location\":\"\",\"allocationId\":2017071974745296,\"appointmentId\":\"502629-1\",\"expense\":\"40560\",\"project\":\"5\"}\n,\n{\"costCentre\":\"BM00000\",\"startDate\":\"20170704\",\"endDate\":\"20170710\",\"percent\":\"50\",\"location\":\"1\",\"allocationId\":2017071974745298,\"appointmentId\":\"502629-1\",\"expense\":\"40290\",\"project\":\"7\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 4,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/costallocation/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"7c93d78d-6cfa-449c-ba6d-bde01c27a512"}],"id":"6e2ffb84-e2db-4418-a5b4-5f903a5cb1b1","description":"<p>This service provides the ability to obtain an employees cost allocations, all cost allocations are returned both current and historic (dates are provided to distinguish open / closed allocations). Generally this service not return 100's of cost allocations, and therefore no special filters are created. </p>\n<p>Cost Alloactions can be defined at the employee or appointment level.This service is defined at the employee level, but will return appointment ID's where appropriate.</p>\n","event":[{"listen":"prerequest","script":{"id":"763c3fcd-c965-4645-b2ca-62cb7ae91c00","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"13275fe7-2366-4376-afec-15cac7430864","type":"text/javascript","exec":[""]}}],"_postman_id":"6e2ffb84-e2db-4418-a5b4-5f903a5cb1b1"},{"name":"genderIdentity","item":[{"name":"/person/genderidentity/:personnelNo","id":"7a0bf036-56e3-423d-be71-59b0805028e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/genderidentity/5990404","description":"<p>Provides an individuals legal sex and gender identification detail. </p>\n<ul>\n<li>personnelNo</li>\n</ul>\n<p>this is manadatory, at a minimum this parameter must be provided.</p>\n<p>Returns following attributes:</p>\n<ul>\n<li><p>Legal Sex</p>\n</li>\n<li><p>Gender Identity</p>\n</li>\n</ul>\n<p>This is a gender identification code, for associated descriptions use the Reference Module with the reference type <code>GNDRID</code>.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","genderidentity","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a4243ee4-2943-40c8-a445-21b85701ad3c","name":"Success Gender Identification","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/genderidentity/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 05 Apr 2018 16:34:48 GMT","name":"Date","description":""},{"key":"ETag","value":"\"V20dpEGbShAmexMXpHDLO2Wsz4XNGFYA3rmIn8tc+dkrLG1ZvUMnMenBkRzynWnOxsex8AhDqrvLl+g1IlS8vg==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"d99bff8e-c042-4720-8fb9-2dea429dc7ce-0002537e","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"genderIdentity\" : [\n{\"legalSex\":\"M\",\"genderIdentity\":\"ANDR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/genderidentity/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"7a0bf036-56e3-423d-be71-59b0805028e7"}],"id":"a6b6caeb-37a4-49a8-bb6a-dfa1e4dd922d","description":"<p>This service provides information relating to an individual's gender identification.</p>\n","_postman_id":"a6b6caeb-37a4-49a8-bb6a-dfa1e4dd922d"},{"name":"maritalstatus","item":[{"name":"/person/maritalstatus/:personnelNo","id":"880749d7-66d3-443f-9179-ed71fbde67d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"headerPrefix","value":"<header-prefix>"}]},"isInherited":false},"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/maritalstatus/7202000006","description":"<p>Provides an individuals Marital Status information.</p>\n<ul>\n<li>Marital Status Code</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","maritalstatus","7202000006"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c2b086a0-18b6-484a-aaea-c42c84a47aa8","name":"MaritalStatus","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/maritalstatus/7202000006"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 20 Mar 2018 12:22:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"QWb+46LohvrS7+AouGLdijCxrGl+3X3XqEryvEgVUAlwh1p2ucoj2InMoYM0rnREohHy9bq6w+aQ5oAQSUGJ7Q==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"cb89685b-0a33-4e88-9829-ed0bf23cf3fc-0005bfb6","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"maritalstatus\": \"S\"\n    }\n  ],\n  \"limit\": 100,\n  \"offsetby\": 0,\n  \"count\": 1,\n  \"hasMore\": false,\n  \"links\": [\n    {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/pmipdev/corehr/v1/person/maritalstatus/7202000006\"\n    }\n  ]\n}"}],"_postman_id":"880749d7-66d3-443f-9179-ed71fbde67d0"}],"id":"54f6b6e1-6542-410b-a3c3-f160a8c1a244","description":"<p>Provides an individuals martial status information.</p>\n<ul>\n<li>Marital Status Code</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"ddd1182a-b29a-4d2c-8cb6-ef416f78213b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c8274ee0-1e44-456e-bb9f-e47e8a8dfe1d","type":"text/javascript","exec":[""]}}],"_postman_id":"54f6b6e1-6542-410b-a3c3-f160a8c1a244"},{"name":"nationality","item":[{"name":"/person/nationality/:personnelNo","id":"d04e985c-5791-45fa-81e8-dd8ac2f85511","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}]},"isInherited":false},"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/nationality/7202000006","description":"<p>Provides an individuals nationality information.</p>\n<ul>\n<li>Nationality Code</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","nationality","7202000006"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"285fc0f2-c6ce-4252-9fcf-83f105d10a80","name":"Nationality","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/nationality/7202000006"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 20 Mar 2018 12:22:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"QWb+46LohvrS7+AouGLdijCxrGl+3X3XqEryvEgVUAlwh1p2ucoj2InMoYM0rnREohHy9bq6w+aQ5oAQSUGJ7Q==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"cb89685b-0a33-4e88-9829-ed0bf23cf3fc-0005bfb6","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"nationality\": \"IE\"\n    }\n  ],\n  \"limit\": 100,\n  \"offsetby\": 0,\n  \"count\": 1,\n  \"hasMore\": false,\n  \"links\": [\n    {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/pmipdev/corehr/v1/person/nationality/7202000006\"\n    }\n  ]\n}"}],"_postman_id":"d04e985c-5791-45fa-81e8-dd8ac2f85511"}],"id":"22577d60-8d10-46a9-854e-704c1fc6f89c","description":"<p>Provides an individuals nationality information.</p>\n<ul>\n<li>Nationality Code</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"401d6726-c97e-402f-974d-d47e8e085227","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5eac2e13-f67f-4f11-8d51-a6988a51618e","type":"text/javascript","exec":[""]}}],"_postman_id":"22577d60-8d10-46a9-854e-704c1fc6f89c"},{"name":"pension","item":[{"name":"/person/pension/:personnelNo","id":"5ce8837f-43cd-4bae-a3db-585d9c9f9ea5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/pension/5990404","description":"<p>This is a very simple web service returning basic information for an individuals pension. All entries related to an employee pension will be returned including active and ended.</p>\n<p><strong>Parameters</strong></p>\n<ul>\n<li>personnelNo</li>\n</ul>\n<p>Manadatory</p>\n<p>Type: AlphaNumeric </p>\n<p>Max Length : 12</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of all pension schemes associated with the individual is returned, the most recently joined pension scheme is returned first.</p>\n<ul>\n<li>schemeCode</li>\n</ul>\n<p>A unique code associated with the pension scheme.</p>\n<ul>\n<li>appointmentID</li>\n</ul>\n<p>this attribute is populated if the individual's pension scheme is associated with a particular appointment. </p>\n<ul>\n<li>dateEnd</li>\n</ul>\n<p>indicates when the pension scheme ended for the individual, returned in format YYYYMMDD.</p>\n<ul>\n<li>dateJoined</li>\n</ul>\n<p>indicates when the employee joined the pension scheme, returned in format YYYYMMDD</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","pension","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3894d4a1-511d-49ee-9919-741592e47c53","name":"Pension Information","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/pension/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 28 Jun 2018 14:23:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"W5TPVaB+Aiz7z+FMBASz6aWxLjN19XWifM8GIKX9g1eWI9T7Qvo5y/XuEu4PwXTwb3XEpiy20o/FgtMMdrJRdQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-0006b88a","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"schemeCode\":16,\"dateJoined\":\"20170601\",\"dateEnd\":\"\",\"appointmentID\":\"DP0007-2077\"}\n,\n{\"schemeCode\":15,\"dateJoined\":\"20161022\",\"dateEnd\":\"20170901\",\"appointmentID\":\"SD88712-1\"}\n,\n{\"schemeCode\":16,\"dateJoined\":\"20151019\",\"dateEnd\":\"\",\"appointmentID\":\"FD4005-1\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 3,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/pension/5990404\"\n      }\n    ]\n}\n"},{"id":"52e35a31-08bb-4f6d-b3ca-5ecea9d3bf87","name":"Mandatory Data Missing","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/pension/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 28 Jun 2018 16:05:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"IIhsxH2Ji400+QeroRmFt6gc2g7b1QHixhZywWjc6NIWGfPAw4CjTnzhC2v+lA38covxOStmFbtsMyf36pPvsw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-00073eeb","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"This field is mandatory.\",\n                    \"code\": \"9001\",\n                    \"jsonKey\": \"personnelNo\",\n                    \"isWarning\": false\n}\n]}\n"}],"_postman_id":"5ce8837f-43cd-4bae-a3db-585d9c9f9ea5"}],"id":"0333e7db-05a9-43fe-a6ed-fa762a37281e","description":"<p>This web service returns data related to an individual's pension.</p>\n","event":[{"listen":"prerequest","script":{"id":"c8a193b1-d4aa-4d0f-be75-26ce760aaba9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4307e484-4c0f-4a72-ac0c-a0ed06925896","type":"text/javascript","exec":[""]}}],"_postman_id":"0333e7db-05a9-43fe-a6ed-fa762a37281e"},{"name":"probation","item":[{"name":"/person/probation/:personnelNo","id":"2aa4a92a-e1d8-4811-aae0-3ea4dd1faf28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/probation/:personnelNo","description":"<p>The following attributes are associated with an individual's probabtion detail. Not all attributes will be populated.</p>\n<p>All dates presented in 'YYYYMMDD' format.</p>\n<ul>\n<li>Date Complete</li>\n</ul>\n<p>The probabtion completion date is the date which the individuals  probstion is completed.</p>\n<ul>\n<li>Date Expires</li>\n</ul>\n<p>The probation expiry date is the date which the individual's probation is due to expire.</p>\n<ul>\n<li>Date Review One</li>\n</ul>\n<p>The probation review date is the first review date for the individuals probation.</p>\n<ul>\n<li>Date Review Two</li>\n</ul>\n<p>This probation review date is the second review date for the individual's probation. </p>\n<ul>\n<li>Date Extension</li>\n</ul>\n<p>This date represents the individual's probation extension where applicable.</p>\n<ul>\n<li>Extension Reason</li>\n</ul>\n<p>The probation extension reason represents the reason for extending the persons probation. This is a reference related attribute, the associated desription is available from the reference module under the reference type <code>PEXRSN</code>. Note, in order to obtain the description your system administrator will be required to whitelist the reference type <code>PEXRSN</code> and granted the app approrpiate privileges.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","probation",":personnelNo"],"host":["{{url}}"],"query":[],"variable":[{"id":"b05234b9-84d3-4d2b-bc96-00dcf707710e","type":"any","value":"","key":"personnelNo"}]}},"response":[{"id":"b385500c-383b-42ba-a221-a507e42f5b06","name":"Mandatory Fields missing","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/probation/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 20 Mar 2018 15:15:48 GMT","name":"Date","description":""},{"key":"ETag","value":"\"3F7/81J6deTDSBftnwxU8UmVgbSZ7BSqwntempYXk1fI6MFsiZmdCZzjpIKEAqYZdbMr1ZBKUzs+YvjwwKlhjQ==\"","name":"ETag","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"cb89685b-0a33-4e88-9829-ed0bf23cf3fc-000651f3","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing (PersonnelNo is required) \" }}\n"}],"_postman_id":"2aa4a92a-e1d8-4811-aae0-3ea4dd1faf28"}],"id":"bc25afa0-2cf2-4b2a-9c84-1b7e027a4851","description":"<p>This module provides an individual's probation detail.</p>\n","event":[{"listen":"prerequest","script":{"id":"faca3492-83d9-4d88-a04b-12c726ae17b7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a297923c-626c-4150-97f3-3908defe8225","type":"text/javascript","exec":[""]}}],"_postman_id":"bc25afa0-2cf2-4b2a-9c84-1b7e027a4851"},{"name":"reportsTo","item":[{"name":"person/reportsto/:personnelNumber/:appointmentid?","id":"5e747cd9-b32c-466a-be72-e63d5c8003ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/5990404/","description":"<p><strong>Parameters</strong></p>\n<ul>\n<li>personnelNumber</li>\n</ul>\n<p>This attribute is the personnelNumber of the individual to find their reportsTo / manager.</p>\n<p>Manadatory</p>\n<p>Type : AlphaNumeric </p>\n<p>Max Length : 12</p>\n<ul>\n<li>appointmentId</li>\n</ul>\n<p>This attribute can be any of the individuals appointmentId's. An individual is required to have at least one appointmentID and is often referred to as substantive / primary appointmentId.</p>\n<p>Optional</p>\n<p>Type : AlphaNumeric </p>\n<p>(this field is typically XXXXX-XX, even though it is flagged as alpha Numberic, the '-' (dash) is excluded from a validation perspective i.e. when validation / sanitisation is performed the dash is excluded)</p>\n<p>Max Length : 16</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<ul>\n<li>reportsToPersonnelNumber</li>\n</ul>\n<p>This attribute represents the individual's 'Report To Personnel Number', typically their manager / line manager / Supervisor etc. You can use this attribute as the personnelNumber for any other web service requesting personnelNumber. As such it is possible to obtain further information for the 'ReportsTo'. </p>\n<ul>\n<li>reportsToName</li>\n</ul>\n<p>This attribute represents the individual's 'Report To Name' i.e. typically the name of their manager / line manager / Supervisor etc.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","reportsto","5990404",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0f61d5c2-71d9-4024-8e58-602579b2088b","name":"PersonnelNumber Only","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/5990404/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 09:43:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"pZVLqJiJtJRnx3Q2SNnEn7mzHsEJE7h3AYFTFFddSSAABwOp+IfG7nt/RNZwkio5FpXtWJPuYQ8Vk8/lKfjWkw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-0013bc9c","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"reportsToPersonnelNumber\":\"5990181\",\"reportsToName\":\"Sasha Digweed\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/reportsto/5990404/\"\n      }\n    ]\n}\n"},{"id":"3dd6cce5-b661-42a1-b6b2-c9fe242f4a63","name":"Invalid PersonnelNumber Type","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/12345678[]/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 10:36:25 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"l61gq8U/3Ddnb8zX5veO7cQVtiR39qcu0L0AUV3aYxGLsn2WfS2frH7+m+AsDD+dAiRYTAdNcYd29zRxkhBYKA==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-00140227","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Alphanumeric characters only.\",\n                    \"code\": \"9002\",\n                    \"jsonKey\": \"personnelNo\",\n                    \"isWarning\": false\n}\n]}\n"},{"id":"4c98a0ec-5272-4178-a211-5d1207687eb9","name":"Invalid AppointmentID Type","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/5990404/123!"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 10:40:29 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"RmAmWESpjPx1HQcC4yM3LakCm1+pazrdxEpor92H2/Bbgfn5+PkfVrR1SNs1fnfVhP7f+MscIk1F07yw1loGjw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-0014079d","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Alphanumeric characters only.\",\n                    \"code\": \"9002\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"62d40726-421b-425c-8e94-d328eb481c3c","name":"Invalid AppointmentID Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/5990404/12345678901234567"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 10:39:34 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"2hERA1Oq6h48UWWRIfHmdaguVn33swa/4feFw1P/coF2t3J4ZczHKP+Kd64JweIz++0TdVUF4Bh+ni899eavNw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-00140659","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"The maximum length of this field is 16\",\n                    \"code\": \"9008\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"c07c762d-e114-459a-809b-d7d2ddcd25d1","name":"PersonnelNumber and AppointmentID","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/5990404/599014-25"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 10:21:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"31sy6J0QsiwFzAdrVi7qAyzs+hvz6E2rE/5kyizpDEhT65JmvEMorDrEovo3NLM/eYUCQmpmBAz06mwdCt2Yew==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-0013edca","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"reportsToPersonnelNumber\":\"5990181\",\"reportsToName\":\"Sasha Digweed\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/reportsto/5990404/599014-25\"\n      }\n    ]\n}\n"},{"id":"d2270ef9-a91c-4cde-9fdf-9c61dd75a478","name":"Invalid PersonnelNumber Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/1234567890123/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 10:37:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"U1TQYcXzLmuMBybM9sxQnH+pnJ45yfK9QyLZfZerGvSE8XpFYujUbMeaYutfoYGti5eB8XXY1L1Zsc/zuvTYJQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-00140369","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"The maximum length of this field is 12\",\n                    \"code\": \"9008\",\n                    \"jsonKey\": \"personnelNo\",\n                    \"isWarning\": false\n}\n]}\n"}],"_postman_id":"5e747cd9-b32c-466a-be72-e63d5c8003ad"}],"id":"4491e82c-fa83-4ffd-ab84-6892e0b45d0d","description":"<p>This web service returns an individual's Reporting to manager / supervisor etc. It is a very simple web service, simply provide the personnel number and the individual's 'ReportTo' is returned. By only providing the personnelNumber, the individuals substantive (primary) appointment is used. </p>\n<p>Optionally provide an appointment ID, this will then indicate to the service to return an individuals 'ReportTo' for the person and the specific appointment provided.</p>\n<p>With respect to the 'ReportsTo' effective date, in all cases this web service uses the current date i.e. the date the web service is called.</p>\n","_postman_id":"4491e82c-fa83-4ffd-ab84-6892e0b45d0d"},{"name":"salary","item":[{"name":"/person/salary/:personnelNo/:date?","id":"9fd89783-694a-432c-bcd8-d42346849292","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/","description":"<p>Provides an employees salary, has the ability to get an employees full salary history along with Salary for a specific date. It is therefore possible to determine current, full history or salary for a specfic date across all of an employees appointments.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li>personnelNo</li>\n</ul>\n<p>Manadatory</p>\n<p>Type: AlphaNumeric </p>\n<p>Max Length : 12</p>\n<ul>\n<li>date</li>\n</ul>\n<p>Optional</p>\n<p>Format : YYYYMMDD</p>\n<p>When no date is provided, the service assumes current active salary details. When populated \n(note the date formatted must be YYYYMMDD) this will provide employees salary for the specfic date. While providing <code>0</code> indicates to the service to return a result set of employees entire salary history. </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","salary","5990404",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"03070c24-de5e-450d-afda-ade58f86ecd6","name":"Specific Date Salary","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/20170101"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 16:21:20 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"GPVEgtqrfadY/x/zVrU/vGpIU19mAeLjYUtW+8+eKmjCPgv1cvoOcAKyE4rsyx8Kj6WsYYihxI5ogozL+pTvKw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001a7a8d","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161211\",\"dateExpire\":\"20170107\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"OU0011-12458\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/20170101\"\n      }\n    ]\n}\n"},{"id":"31d705cf-3cfc-4acb-a31f-fbdfeff056eb","name":"All Salary History","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/0"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 16:19:22 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"aaipex3HQSzjyVZfbQvaUtOFP/KkzJkt8NzYnXaX1NaFg1kSRoPNLrZbzCfvAtiG74NPxNGZvD4HRaIDZ2lCIg==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001a77c5","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"annual\":\"30000\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"0\",\"dateActive\":\"20170102\",\"dateExpire\":\"\",\"multiplier\":\"1\",\"annualised\":\"30000\",\"actualPay\":\"30000\",\"actualAnnualisedPay\":\"30000\",\"grade\":\"5990\",\"point\":\"1\",\"appointmentID\":\"599014-25\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20130718\",\"dateExpire\":\"20160401\",\"multiplier\":\"1\",\"annualised\":\"14448.25\",\"actualPay\":\"14448.25\",\"actualAnnualisedPay\":\"14448.25\",\"grade\":\"KM\",\"point\":\"19\",\"appointmentID\":\"JXXXXX-4347\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161211\",\"dateExpire\":\"20170107\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"OU0011-12458\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20160402\",\"dateExpire\":\"20160915\",\"multiplier\":\".25641\",\"annualised\":\"14448.25\",\"actualPay\":\"3704.67578\",\"actualAnnualisedPay\":\"3704.67578\",\"grade\":\"KM\",\"point\":\"19\",\"appointmentID\":\"OU0011-2694\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20160916\",\"dateExpire\":\"20160922\",\"multiplier\":\".25641\",\"annualised\":\"14448.25\",\"actualPay\":\"3704.67578\",\"actualAnnualisedPay\":\"3704.67578\",\"grade\":\"KM\",\"point\":\"19\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15262.24\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.5\",\"dateActive\":\"20160923\",\"dateExpire\":\"20160924\",\"multiplier\":\".25641\",\"annualised\":\"15262.24\",\"actualPay\":\"3913.39096\",\"actualAnnualisedPay\":\"3913.39096\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"\",\"daily\":\"\",\"hourly\":\"0\",\"dateActive\":\"20160925\",\"dateExpire\":\"20160925\",\"multiplier\":\".25641\",\"annualised\":\"15770.98\",\"actualPay\":\"4043.83698\",\"actualAnnualisedPay\":\"4043.83698\",\"grade\":\"99\",\"point\":\"9999\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"\",\"daily\":\"\",\"hourly\":\"0\",\"dateActive\":\"20160926\",\"dateExpire\":\"20160930\",\"multiplier\":\".410256\",\"annualised\":\"15770.98\",\"actualPay\":\"6470.13917\",\"actualAnnualisedPay\":\"6470.13917\",\"grade\":\"99\",\"point\":\"9999\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161001\",\"dateExpire\":\"20161029\",\"multiplier\":\".410256\",\"annualised\":\"15770.98\",\"actualPay\":\"6470.13917\",\"actualAnnualisedPay\":\"6470.13917\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161030\",\"dateExpire\":\"20161210\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20170108\",\"dateExpire\":\"\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"TS0011-18339\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 11,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/0\"\n      }\n    ]\n}\n"},{"id":"701eb73a-238b-4965-adf6-9f2571a807db","name":"Invalid Personnel Number - Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/1234567890123/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 17:42:37 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"+llSfzdC1UDE9v+iRPeAlBVlFgq6jlBrZm+oQrpwg3sLsH1ovzcy5gYcg93hrn0/l47Mr+b9yiMQo5YOngCBLA==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001acb0b","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"The maximum length of this field is 12\",\n                    \"code\": \"9008\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"8f2c884e-a4a1-48dd-88ab-1f238ff0b7ad","name":"Invalid Personnel Number","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/599[0/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 17:41:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"RmAmWESpjPx1HQcC4yM3LakCm1+pazrdxEpor92H2/Bbgfn5+PkfVrR1SNs1fnfVhP7f+MscIk1F07yw1loGjw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001aca5d","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Alphanumeric characters only.\",\n                    \"code\": \"9002\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"aa58a3ed-ca1e-4454-856f-e436d858a7a8","name":"Invalid Date","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/1"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 16:22:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"sKp2ti/R6sLLoutzkCNGLcmb5Tgu8M4GSKUF7A5kfUdkL+yEkKA/2pZtdOyezXWgsUt5nVH3zz322P2KeYn4IQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001a7b8e","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Date must be in the format of YYYYMMDD and exactly 8 digits in length.\",\n                    \"code\": \"9008\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"deda247f-53a3-48a1-b3f4-e7e0e87b4c20","name":"Current Active Salary","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 16:20:34 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"e7BB/yedq9rerTQdSLeQ546D+ECPnESt8lJBTo3F8kTFzbMW1WN+7Dr008eqa0kPKsX4VZ/+SPhBMnTlkegoQg==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001a7975","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"annual\":\"30000\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"0\",\"dateActive\":\"20170102\",\"dateExpire\":\"\",\"multiplier\":\"1\",\"annualised\":\"30000\",\"actualPay\":\"30000\",\"actualAnnualisedPay\":\"30000\",\"grade\":\"5990\",\"point\":\"1\",\"appointmentID\":\"599014-25\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20170108\",\"dateExpire\":\"\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"TS0011-18339\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/\"\n      }\n    ]\n}\n"},{"id":"ecb4e19f-e371-4ac9-b30f-c5b673f61f89","name":"Invalid Date - Month","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/20011301"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 17:38:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"sKp2ti/R6sLLoutzkCNGLcmb5Tgu8M4GSKUF7A5kfUdkL+yEkKA/2pZtdOyezXWgsUt5nVH3zz322P2KeYn4IQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001ac8d1","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Date must be in the format of YYYYMMDD and exactly 8 digits in length.\",\n                    \"code\": \"9008\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"}],"_postman_id":"9fd89783-694a-432c-bcd8-d42346849292"}],"id":"1b79aa6e-00c8-4e8c-a6af-0f154982efaa","description":"<p>This module will provide salary detail for an individual. Salary information can be a complex topic,  outlined explains in as simply terms as possible how an employees rate of pay is determined. </p>\n<p>Uses Cases determine</p>\n<ol>\n<li>an employee's current salary detail</li>\n<li>an employee's historical salary detail</li>\n<li>an employee's salary per appointment </li>\n<li>an employee's salary on a specific date</li>\n</ol>\n<p>This salary module is aware of multi-appointments i.e. in cases where an individual has more than one active position (i.e. more than one appointment) two entries or more, will be included in the results set. In cases where only one position is associated with an employee only one entry will be returned.</p>\n<p>Employee's rates of pay can be based on various frequencies:</p>\n<ul>\n<li>Hourly</li>\n<li>Daily</li>\n<li>Weekly</li>\n<li>Annual</li>\n</ul>\n<p>Not all attributes will be populated, the fields populated are dependent on how your system administrators have configured salary / pay details.</p>\n<p>Following attributes are returned:</p>\n<ul>\n<li>annual</li>\n</ul>\n<p>An annual salary rate, typically used for salary based employees. Each month this rate is divided by 12.</p>\n<ul>\n<li>weekly</li>\n</ul>\n<p>A weekly based rate of pay. </p>\n<ul>\n<li>daily</li>\n</ul>\n<p>A daily based rate of pay.</p>\n<ul>\n<li>hourly</li>\n</ul>\n<p>An hourly based rate of pay.</p>\n<ul>\n<li>dateActive</li>\n</ul>\n<p>The date when the rate(s) of pay are effective for employee. An employee can only have one set of active pay rates per appointment.</p>\n<ul>\n<li>dateExpire</li>\n</ul>\n<p>The date when the rate(s) of pay have ended and are no longer active for employee. Useful when viewing historical rates of pay.</p>\n<ul>\n<li>multiplier</li>\n</ul>\n<p>This is a number applied to the rate of pay, typically set to 1, indicating the individual is paid the (rate of pay * 1), often used in cases where employee is part time.</p>\n<ul>\n<li>annualised</li>\n</ul>\n<p>The annual rate of pay, in cases where weekly rate is only provided, this figure presents an annual rate. In cases where the annual rate is defined, this annualised figure is the same value.</p>\n<ul>\n<li>actualPay</li>\n</ul>\n<p>Takes the provided rate(s) of pay and applies the multiplier.</p>\n<ul>\n<li>actualAnnualisedPay</li>\n</ul>\n<p>Takes the annualised figure and applies the multiplier.</p>\n<ul>\n<li>appointmentID</li>\n</ul>\n<p>Employee's unique Job identifier, typically referred to as appointment ID. It is possible an individual has more than one Job/Appointment, if this is the case more the result set will reflect this. </p>\n<ul>\n<li>grade</li>\n</ul>\n<p>This attribute reprsents an employee's salary grade, typically this represents one's Role / Job.</p>\n<ul>\n<li>point</li>\n</ul>\n<p>This attribute represents a level within the Grade, sometimes termed Spine Point. In some cases this value can be '9999', this represents an individual has been assigned a personal point.</p>\n","event":[{"listen":"prerequest","script":{"id":"55759be1-4ffa-4ca6-a96f-9bb51f86f8d9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9685fcfd-4eeb-4f58-84f0-d89782cc44b0","type":"text/javascript","exec":[""]}}],"_postman_id":"1b79aa6e-00c8-4e8c-a6af-0f154982efaa"},{"name":"socialSecurityNumber","item":[{"name":"/person/socialsecuritynumber/:personnelNo","id":"eecb9862-2f29-4804-9268-35ac59e1424c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/socialsecuritynumber/5990404","description":"<p>Simply gets an individuals Social Security Number.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","socialsecuritynumber","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"23cdebae-fe26-4dd9-8db6-d90c00de3ec3","name":"Current Active Salary","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 21 Mar 2018 17:57:37 GMT","name":"Date","description":""},{"key":"ETag","value":"\"FDsnzuXPBRCYJbbDVL2OyeQ9P2HxpYUXcZyf2t1OE5u8nKCRru6K48Y/V+cXg/9KPl/nUAaF7IDq1H8s3HEVSA==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-00011b68","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"salary\" : [\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20170108\",\"dateExpire\":\"\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"appointmentID\":\"TS0011-18339\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/\"\n      }\n    ]\n}\n"},{"id":"76367912-ac28-4bf9-a5e6-1e97aaaa8401","name":"All Salary History","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/0"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 21 Mar 2018 17:58:04 GMT","name":"Date","description":""},{"key":"ETag","value":"\"hkaOE4XQSbYdfEu/G4B7X3hnwbEZbElMx/uzYF1NoEK/tWmjE8dhIE0XKrxzA2nxzOD+upOc7BFrs9bjOQsoyw==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-00011b92","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"salary\" : [\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20130718\",\"dateExpire\":\"20160401\",\"multiplier\":\"1\",\"annualised\":\"14448.25\",\"actualPay\":\"14448.25\",\"actualAnnualisedPay\":\"14448.25\",\"appointmentID\":\"JXXXXX-4347\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161211\",\"dateExpire\":\"20170107\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"appointmentID\":\"OU0011-12458\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20160402\",\"dateExpire\":\"20160923\",\"multiplier\":\".25641\",\"annualised\":\"14448.25\",\"actualPay\":\"3704.67578\",\"actualAnnualisedPay\":\"3704.67578\",\"appointmentID\":\"OU0011-2694\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20160924\",\"dateExpire\":\"20160915\",\"multiplier\":\".25641\",\"annualised\":\"14448.25\",\"actualPay\":\"3704.67578\",\"actualAnnualisedPay\":\"3704.67578\",\"appointmentID\":\"OU0011-2694\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20160916\",\"dateExpire\":\"20160922\",\"multiplier\":\".25641\",\"annualised\":\"14448.25\",\"actualPay\":\"3704.67578\",\"actualAnnualisedPay\":\"3704.67578\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15262.24\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.5\",\"dateActive\":\"20160923\",\"dateExpire\":\"20160924\",\"multiplier\":\".25641\",\"annualised\":\"15262.24\",\"actualPay\":\"3913.39096\",\"actualAnnualisedPay\":\"3913.39096\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"\",\"daily\":\"\",\"hourly\":\"\",\"dateActive\":\"20160925\",\"dateExpire\":\"20160925\",\"multiplier\":\".25641\",\"annualised\":\"15770.98\",\"actualPay\":\"4043.83698\",\"actualAnnualisedPay\":\"4043.83698\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"\",\"daily\":\"\",\"hourly\":\"\",\"dateActive\":\"20160926\",\"dateExpire\":\"20160930\",\"multiplier\":\".410256\",\"annualised\":\"15770.98\",\"actualPay\":\"6470.13917\",\"actualAnnualisedPay\":\"6470.13917\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161001\",\"dateExpire\":\"20161029\",\"multiplier\":\".410256\",\"annualised\":\"15770.98\",\"actualPay\":\"6470.13917\",\"actualAnnualisedPay\":\"6470.13917\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161030\",\"dateExpire\":\"20161210\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20170108\",\"dateExpire\":\"\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"appointmentID\":\"TS0011-18339\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 11,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/0\"\n      }\n    ]\n}\n"},{"id":"fe1c4a59-187b-4c73-acf5-456ed28cfa0f","name":"Salary on Specific Date ","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/20170101"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 21 Mar 2018 17:58:29 GMT","name":"Date","description":""},{"key":"ETag","value":"\"X8DO7XKppamdtc8NWRGV4/oL9G8Xqsj7zouGAbNqDV2Y9g4Wwdl3gRdBM3iciy40xCIPV9WwIQRbWiWwY0QFKg==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-00011bba","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"salary\" : [\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161211\",\"dateExpire\":\"20170107\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"appointmentID\":\"OU0011-12458\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/20170101\"\n      }\n    ]\n}\n"}],"_postman_id":"eecb9862-2f29-4804-9268-35ac59e1424c"}],"id":"528108ce-d4a7-41e8-adb4-c5d93e367217","description":"<p>An individuals National Social number e.g. Social Security Number.</p>\n","event":[{"listen":"prerequest","script":{"id":"6702cb59-001b-4c48-8586-c78e86159aa9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0a46e200-559c-4517-bf57-4b3eacddde6d","type":"text/javascript","exec":[""]}}],"_postman_id":"528108ce-d4a7-41e8-adb4-c5d93e367217"},{"name":"workpermit","item":[{"name":"/person/workpermit/:personnelNo","id":"11236e50-e94f-4c5b-a351-2b6f450e7d5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/workpermit/5990404","description":"<p>Provides an individuals work permit information.</p>\n<ul>\n<li><p>Work Permit Number</p>\n</li>\n<li><p>Work Permit</p>\n</li>\n<li><p>Date Work Permit Issued</p>\n</li>\n<li><p>Date Work Permit Expires</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","workpermit","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9c570262-10f0-4a5a-8f38-72c0e4202f35","name":"WorkPermit","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/workpermit/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 20 Mar 2018 12:22:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"QWb+46LohvrS7+AouGLdijCxrGl+3X3XqEryvEgVUAlwh1p2ucoj2InMoYM0rnREohHy9bq6w+aQ5oAQSUGJ7Q==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"cb89685b-0a33-4e88-9829-ed0bf23cf3fc-0005bfb6","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"workPermit\" : [\n{\"workPermitNumber\":\"S234F567\",\"workPermit\":\"J1 Visa\",\"dateWorkPermitIssued\":\"20180310\",\"dateWorkPermitExpires\":\"20190420\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/workpermit/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"11236e50-e94f-4c5b-a351-2b6f450e7d5a"}],"id":"b24e23eb-ecd9-4e79-bd6b-faea23700849","description":"<p>Provides an individuals work permit information.</p>\n<ul>\n<li><p>Work Permit Number</p>\n</li>\n<li><p>Work Permit</p>\n</li>\n<li><p>Date Work Permit Issued</p>\n</li>\n<li><p>Date Work Permit Expires</p>\n</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"a081e8ab-16d0-4d7e-9f4b-2c6659d499a7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0553da83-a26c-4a54-93ce-1fd51325d5eb","type":"text/javascript","exec":[""]}}],"_postman_id":"b24e23eb-ecd9-4e79-bd6b-faea23700849"}],"id":"0ace6d2b-f4f1-4b6e-b7a6-fc9c93f6db1c","description":"<p>This person module is all about personnel associated with an organisation, typically employee's, though sometimes contractors. </p>\n<p>All personnel entities have a <code>personnelNo</code>. Each of these services will accept a <code>personnelNo</code> as an atttrbute. To obtain sets of <code>personnelNo</code> use the <code>filter</code> module. The person module is typically used to determine following detail regarind an organisations personnel:</p>\n<ul>\n<li>basic attributes (name, joined date etc.)</li>\n<li>address detail</li>\n<li>probation information</li>\n<li>work permit details</li>\n<li>bank Account information</li>\n<li>salary information</li>\n</ul>\n<p>Separate services are defined for each of above, rather than one large service.</p>\n<p>NB : as this module only accepts the primary identifer <code>personnelNo</code> the <code>pagesize</code> option has no affect.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<p>personnelNo</p>\n<p>Mandatory: Yes</p>\n<p>Expected Type: AlphaNumeric</p>\n<p>Length Max : 12</p>\n","event":[{"listen":"prerequest","script":{"id":"05cbeca5-4b00-4d33-9ec2-42c276a126cd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"58b8564a-1c07-428a-9347-8cd683b28891","type":"text/javascript","exec":[""]}}],"_postman_id":"0ace6d2b-f4f1-4b6e-b7a6-fc9c93f6db1c"},{"name":"Organisation","item":[{"name":"structure","item":[{"name":"config","item":[{"name":"/organisation/structure/config","id":"2ea8dbdf-02a1-4a45-8740-0fb1aa891921","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/organisation/structure/config","description":"<p><strong>Parameters</strong></p>\n<p>no parameters are required to call this service.</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of organisational structures are returned.</p>\n<ul>\n<li>structureCode</li>\n</ul>\n<p>A unique identifier associated with this specfic organisations hierarchy.</p>\n<ul>\n<li>hierarchyName</li>\n</ul>\n<p>A description for this structure / hierarchy. The description will be defined by your HR Administration colleagues.</p>\n<ul>\n<li>level1Type .. level12Type</li>\n</ul>\n<p>This is a list from 1 through 12. These will list the types for each of the levels of hierarchy, for example Level One might by Company, Level 2 might be Management unit etc. These levels will be based on Reference data and can be mapped back to the reference module. In general it it is possible to use this type and reference back to the reference module.</p>\n<ul>\n<li>hierarchyInd1 .. hierarchyInd12</li>\n</ul>\n<p>This is a list from 1 through 12. These attributes indicate if the corresponding level is part of a hierarchy rather than just part of the structure. Reference back to the Organisation Module description for an explaination of the Hierarchy v's Structure concept. The indicator is simply Y or N.</p>\n<ul>\n<li>label1 .. label12</li>\n</ul>\n<p>These are the descriptions associated with the level1 .. level12 type. </p>\n<ul>\n<li>displayMode1 .. displayMode12</li>\n</ul>\n<p>It is possible to configure the display description for each element. This mode can return one of the following CD (code description), DC (description code) and D (description). </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>For example - \nif the displayMode is CD (code description) then the description would be\n\n1001 : Engineering \n\nthe code is 1001 while the description is Engineering\n</code></pre><ul>\n<li>dateApplied</li>\n</ul>\n<p>indicates the date the structure was made active.</p>\n<ul>\n<li>dateInput</li>\n</ul>\n<p>this is the date the structure was first created.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","organisation","structure","config"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"89df2b78-630e-461d-97e7-03d00dea8834","name":"Success 200","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/organisation/structure/config"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 18 Jun 2018 14:17:29 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"QdYOzMA/b7fLqDLuLuinGXapZCFy2sgKwURL3ZcmhlywvfNbIke+t0+o8zLlq3NRlMvneOeex5JqR1ExtMDm2g==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-0008576a","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"structure\" : [\n{\"structureCode\":\"7000\",\"hierarchyName\":\"Company 7000\",\"dateInput\":\"20170209\",\"dateApplied\":\"20170209\",\"level1Type\":\"ORGZ\",\"level2Type\":\"MGTU\",\"level3Type\":\"DEPT\",\"level4Type\":\"USER1\",\"level5Type\":\"DIV\",\"level6Type\":\"COST\",\"level7Type\":\"LOC\",\"level8Type\":\"WRKGRP\",\"level9Type\":\"\",\"level10Type\":\"\",\"level11Type\":\"\",\"level12Type\":\"\",\"label1\":\"Company\",\"label2\":\"Management Unit\",\"label3\":\"Department\",\"label4\":\"Team\",\"label5\":\"Division\",\"label6\":\"Cost Centre\",\"label7\":\"Location\",\"label8\":\"Work Group\",\"label9\":\"\",\"label10\":\"\",\"label11\":\"\",\"label12\":\"\",\"hierarchy1Ind\":\"Y\",\"hierarchy2Ind\":\"Y\",\"hierarchy3Ind\":\"Y\",\"hierarchy4Ind\":\"N\",\"hierarchy5Ind\":\"N\",\"hierarchy6Ind\":\"N\",\"hierarchy7Ind\":\"N\",\"hierarchy8Ind\":\"N\",\"hierarchy9Ind\":\"N\",\"hierarchy10Ind\":\"N\",\"hierarchy11Ind\":\"N\",\"hierarchy12Ind\":\"N\",\"displayMode1\":\"CD\",\"displayMode2\":\"CD\",\"displayMode3\":\"CD\",\"displayMode4\":\"CD\",\"displayMode5\":\"CD\",\"displayMode6\":\"CD\",\"displayMode7\":\"CD\",\"displayMode8\":\"CD\",\"displayMode9\":\"CD\",\"displayMode10\":\"CD\",\"displayMode11\":\"CD\",\"displayMode12\":\"CD\"}\n,\n{\"structureCode\":\"7001\",\"hierarchyName\":\"Company 7001\",\"dateInput\":\"20170209\",\"dateApplied\":\"20170209\",\"level1Type\":\"ORGZ\",\"level2Type\":\"MGTU\",\"level3Type\":\"DEPT\",\"level4Type\":\"USER1\",\"level5Type\":\"DIV\",\"level6Type\":\"COST\",\"level7Type\":\"LOC\",\"level8Type\":\"WRKGRP\",\"level9Type\":\"\",\"level10Type\":\"\",\"level11Type\":\"\",\"level12Type\":\"\",\"label1\":\"Company\",\"label2\":\"Management Unit\",\"label3\":\"Department\",\"label4\":\"Team\",\"label5\":\"Division\",\"label6\":\"Cost Centre\",\"label7\":\"Location\",\"label8\":\"Work Group\",\"label9\":\"\",\"label10\":\"\",\"label11\":\"\",\"label12\":\"\",\"hierarchy1Ind\":\"Y\",\"hierarchy2Ind\":\"Y\",\"hierarchy3Ind\":\"Y\",\"hierarchy4Ind\":\"N\",\"hierarchy5Ind\":\"N\",\"hierarchy6Ind\":\"N\",\"hierarchy7Ind\":\"N\",\"hierarchy8Ind\":\"N\",\"hierarchy9Ind\":\"N\",\"hierarchy10Ind\":\"N\",\"hierarchy11Ind\":\"N\",\"hierarchy12Ind\":\"N\",\"displayMode1\":\"CD\",\"displayMode2\":\"CD\",\"displayMode3\":\"CD\",\"displayMode4\":\"CD\",\"displayMode5\":\"CD\",\"displayMode6\":\"CD\",\"displayMode7\":\"CD\",\"displayMode8\":\"CD\",\"displayMode9\":\"CD\",\"displayMode10\":\"CD\",\"displayMode11\":\"CD\",\"displayMode12\":\"CD\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/organisation/settings\"\n      }\n    ]\n}\n"}],"_postman_id":"2ea8dbdf-02a1-4a45-8740-0fb1aa891921"}],"id":"9d318ee5-f92f-4fc8-af4b-9ba0c31db47d","description":"<p>This web service returns the \"metadata\" / \"settings\" for a structure, describing how the structure is defined. This service does <em>not</em> return the actual data (see /organisation/data). </p>\n","event":[{"listen":"prerequest","script":{"id":"2072290e-ca55-4819-bf1f-6da3a31c10ba","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9672aba4-5817-4ffb-9cce-5e92366c33fb","type":"text/javascript","exec":[""]}}],"_postman_id":"9d318ee5-f92f-4fc8-af4b-9ba0c31db47d"},{"name":"nodes","item":[{"name":"/organisation/structure/nodes/:structureCode?","id":"67eb713a-49ad-4e89-929a-7d74c73f264e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/organisation/structure/nodes/7000","description":"<p>This webservice is subject to pagination,and, therefore by default only 100 rows are returned, it is possible to set the pagesize up to a maximum of 5,000 if the use case is to reduce the number of requests and attempt to obtain all rows in one request.</p>\n<p><strong>Parameters</strong></p>\n<ul>\n<li>structureCode</li>\n</ul>\n<p>A structure code is required to call this web service, use the /organisation/settings web service to get a list. Typically organisations will only have a few of these structure codes configured and usually this takes place during initial project implementation. </p>\n<p>Expected Type: Alpha_Numeric</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<ul>\n<li>ID</li>\n</ul>\n<p>A unique identifier associated with this specfic item, each item will have a unique ID.</p>\n<ul>\n<li>parentID</li>\n</ul>\n<p>The parentID associated with the unique ID, each item will have a parentID. For the 'Root' the parent ID will be set to the structure code. </p>\n<ul>\n<li>nodeDepth</li>\n</ul>\n<p>Each item has a depth associated with it, i.e. this is the level an item exists within the hierarchy. Starts at 1. For example all items with a nodeDepth of 1 should map directly to the number of structures defined, typically this is only a few, and nodeDepth's 2 and 3 will also only have a few, while the many nodeDepths from 4 will most likely exist.</p>\n<ul>\n<li>path</li>\n</ul>\n<p>This attribute provides an easy to see path i.e. the hierarchy for the item, this defines each of the parents all the way up to root. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>For example: \nA path with 10:1:1000:1016\nindicates the current item has a nodeDepth 4 with the following hierarchy struture:\n    - 10  \n        - 1 \n            - 1000  \n                - 1016\nthe root would be 10 and the current item being 1016\n</code></pre><ul>\n<li>description</li>\n</ul>\n<p>This attributes describes the current item (not the entire path). The description may include both code and description, this is dependent on the displayMode as defined in the  /organisation/settings. In cases where the code is to be included, the code and description will be ':'. There is no clue in this description as to the path or nodeDepth (unless of course HR administrations have defined in the description) </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>For example:\n\n1001 : Engineering \n\nthe code is 1001 while the description is Engineering\n</code></pre>","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","organisation","structure","nodes","7000"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"879589b6-2e21-4318-a9e6-c64be4a59b32","name":"BadRequest 400","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/organisation/structure/nodes/7000@1234567"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 20 Jun 2018 12:29:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"vNMSXQGDZSxGpQFzhmh0e2NNjOYnXzjbL3rOmFoXvPMgJryNiBCAfwXrD6niNRSAhLOODtxjpJXCUACYYlooWg==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-000e3f83","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 2,\n        \"errors\": 2,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Alphanumeric characters only.\",\n                    \"code\": \"9002\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n,\n{\n                    \"message\": \"The maximum length of this field is 6\",\n                    \"code\": \"9011\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"b2e84175-ddb5-4ce9-b098-c7134aad67c3","name":"Success 200","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/organisation/structure/nodes/7000"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 18 Jun 2018 14:50:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"YP16PeuRAWoR3WGCp0lvXsgBSafRD2E+Ya2V9CsHzeJNDHICPNpWzHSYbMqX1/7p/E0ZEzjLzhWv0KcRhXSp1w==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-000881f0","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"structure\" : [\n{\"id\":\"7000020990043714\",\"parentID\":\"7000\",\"nodeDepth\":\"1\",\"path\":\"7000\",\"description\":\"Unit Test 7000\"}\n,\n{\"id\":\"7000020990043716\",\"parentID\":\"7000020990043714\",\"nodeDepth\":\"2\",\"path\":\"7000:7000\",\"description\":\"7000 : Unit Test Company 7000\"}\n,\n{\"id\":\"7000020990043717\",\"parentID\":\"7000020990043716\",\"nodeDepth\":\"3\",\"path\":\"7000:7000:7041\",\"description\":\"7041 : Product and Operations\"}\n,\n{\"id\":\"7000020990043718\",\"parentID\":\"7000020990043716\",\"nodeDepth\":\"3\",\"path\":\"7000:7000:7042\",\"description\":\"7042 : Sales and Marketing\"}\n,\n{\"id\":\"7000020990043719\",\"parentID\":\"7000020990043716\",\"nodeDepth\":\"3\",\"path\":\"7000:7000:7043\",\"description\":\"7043 : Finance\"}\n,\n{\"id\":\"7000020990043720\",\"parentID\":\"7000020990043716\",\"nodeDepth\":\"3\",\"path\":\"7000:7000:7044\",\"description\":\"7044 : Human Resources\"}\n,\n{\"id\":\"7000020990043743\",\"parentID\":\"7000020990043716\",\"nodeDepth\":\"3\",\"path\":\"7000:7000:7045\",\"description\":\"7045 : CoreHR\"}\n,\n{\"id\":\"7000020990043721\",\"parentID\":\"7000020990043717\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7041:7001\",\"description\":\"7001 : Development \"}\n,\n{\"id\":\"7000020990043722\",\"parentID\":\"7000020990043717\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7041:7002\",\"description\":\"7002 : Product \"}\n,\n{\"id\":\"7000020990043723\",\"parentID\":\"7000020990043717\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7041:7003\",\"description\":\"7003 : Operations \"}\n,\n{\"id\":\"7000020990043724\",\"parentID\":\"7000020990043717\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7041:7004\",\"description\":\"7004 : Product and Operations \"}\n,\n{\"id\":\"7000020990043730\",\"parentID\":\"7000020990043718\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7042:7006\",\"description\":\"7006 : Marketing \"}\n,\n{\"id\":\"7000020990043731\",\"parentID\":\"7000020990043718\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7042:7007\",\"description\":\"7007 : Human Resource \"}\n,\n{\"id\":\"7000020990043732\",\"parentID\":\"7000020990043718\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7042:7008\",\"description\":\"7008 : Finance \"}\n,\n{\"id\":\"7000020990043738\",\"parentID\":\"7000020990043720\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7044:7009\",\"description\":\"7009 : Payroll \"}\n,\n{\"id\":\"7000020990043736\",\"parentID\":\"7000020990043719\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7043:7010\",\"description\":\"7010 : CoreHR \"}\n,\n{\"id\":\"7000020990043737\",\"parentID\":\"7000020990043719\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7043:7011\",\"description\":\"7011 : \"}\n,\n{\"id\":\"7000020990043745\",\"parentID\":\"7000020990043743\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7045:70O5\",\"description\":\"70O5 : \"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 18,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/organisation/data/7000\"\n      }\n    ]\n}\n"}],"_postman_id":"67eb713a-49ad-4e89-929a-7d74c73f264e"}],"id":"05264613-4f10-4b74-9e86-2563d24c7bf4","description":"<p>This web service returns all the node data associated with a specific structure code. The /organisation/structure/config defines the configuration and associated hierarchy / structure of levels, while the /organisation/structure/nodes web service applies the configurtion settings and returns the node data associated with same, including ID, parentID and nodeDepthLevel etc.</p>\n","event":[{"listen":"prerequest","script":{"id":"5fc55300-3e25-46ba-a757-c4d9dee7e324","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9b27a19a-51be-42a1-8785-d7cb0746ba4c","type":"text/javascript","exec":[""]}}],"_postman_id":"05264613-4f10-4b74-9e86-2563d24c7bf4"}],"id":"46100acb-74d5-47be-8d41-b3b2e559245d","description":"<p>This is just a grouping for all structure related elements, currently this is grouping only includes</p>\n<ul>\n<li>the structure configuration information </li>\n<li>the structure node information</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"388e0d75-3906-41cb-a2c9-0888c8ea856f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ff8822d3-38b7-493e-b1d4-22a246ab9092","type":"text/javascript","exec":[""]}}],"_postman_id":"46100acb-74d5-47be-8d41-b3b2e559245d"},{"name":"person","item":[{"name":"person/:role/:group/:groupItem","id":"981ded39-e1c9-4730-8bec-4de487f21512","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/organisation/person/MGRESS/USER1/PM06","description":"<p><strong>Parameters</strong></p>\n<ul>\n<li>role</li>\n</ul>\n<p>This attribute is the organisational role of the employees that are required to be returned.</p>\n<p>Manadatory</p>\n<p>Type : AlphaNumeric </p>\n<p>Max Length : 12</p>\n<ul>\n<li>group</li>\n</ul>\n<p>This attribute is the organisational group of the employees that are required to be returned.</p>\n<p>Manadatory</p>\n<p>Type : AlphaNumeric </p>\n<p>Max Length : 12</p>\n<ul>\n<li>groupItem</li>\n</ul>\n<p>This attribute is the organisational group item of the employees that are required to be returned.</p>\n<p>Manadatory</p>\n<p>Type : AlphaNumeric </p>\n<p>Max Length : 12</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of employees (items) that match the parameters passed in</p>\n<ul>\n<li>personnelNumber</li>\n</ul>\n<p>A unique reference identifier for the employee.</p>\n<ul>\n<li>personName</li>\n</ul>\n<p>The name of the employee.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","organisation","person","MGRESS","USER1","PM06"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7b7cf51c-5b25-4b7f-babf-62d28f344385","name":"RoleGroupGroupItem","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/organisation/person/MGRESS/USER1/PM06"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 10:37:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"U1TQYcXzLmuMBybM9sxQnH+pnJ45yfK9QyLZfZerGvSE8XpFYujUbMeaYutfoYGti5eB8XXY1L1Zsc/zuvTYJQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-00140369","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\n    \"items\": [\n        {\n            \"personnelNumber\": \"7214000055\",\n            \"personName\": \"Brian Cummins\"\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 1,\n    \"hasMore\": false,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/organisation/person/MGRESS/USER1/PM06\"\n        }\n    ]\n}"}],"_postman_id":"981ded39-e1c9-4730-8bec-4de487f21512"},{"name":"/person/:person","id":"e28f09b9-bbe4-494a-a5fc-ef08ffb29bd1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"},{"key":"authUrl","value":"<auth-url>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"orgrole\": \"MGRESS\",\r\n\"orggroup\": \"WRKGRP\",\r\n\"orggroupitem\": \"DC01\",\r\n\"structurecode\": \"7204\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/organisation/person/7204000001","description":"<p>Delete an existing org role assignment.</p>\n<p>You can filter the deltion by passing a JSON body with the following keys. None of these are mandatory and any combination can be used.</p>\n<p><code>{</code></p>\n<p><code>\"orgrole\": \"MGRESS\",</code></p>\n<p><code>\"orggroup\": \"WRKGRP\",</code></p>\n<p><code>\"orggroupitem\": \"DC01\",</code></p>\n<p><code>\"structurecode\": \"7204\"</code></p>\n<p><code>}</code></p>\n<p>The <a href=\"#url-structure\">dynamic path variable</a> <strong>:person</strong> is the</p>\n<p>personnelNumber key returned in the <code>/</code>organisation<code>/</code>/person/:role/:group/:groupItem</p>\n<p>endpoint.</p>\n<ul>\n<li>This endpoint is protected using oAuth2, it requires a valid Bearer Token to be sent in the Authorization header. Please refer to the <a href=\"#authorization\">Authorization</a> guidelines outlined in the introduction.</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","organisation","person","7204000001"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"de845da4-5c2f-4683-ba0b-e7e5e56bf4ac","name":"/person/:person","originalRequest":{"method":"DELETE","header":[{"key":"content-type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer aiCeArFkGBoGr-_w8zxSLg","type":"text","disabled":true},{"key":"X-COREHR-DEBUG","value":"Y","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n\"orgrole\": \"MGRESS\",\r\n\"orggroup\": \"WRKGRP\",\r\n\"orggroupitem\": \"DC01\",\r\n\"structurecode\": \"7204\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/organisation/person/7204000001"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jan 2025 15:54:04 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"fb226ef9-613e-4029-989f-d56a49689612-00fd7286"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com https://*.accessacloud.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION, X-COREHR-INTEGRITY, CACHE-CONTROL, X-COREHR-FILE-NAME, X-COREHR-WARNINGS"},{"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{\"Response\" : {\"success\":true }\n"}],"_postman_id":"e28f09b9-bbe4-494a-a5fc-ef08ffb29bd1"}],"id":"ff6708f3-c143-46be-885d-69b78b163c14","description":"<p>This web service returns all employees that match a given organisational role, group and group item.</p>\n<p>e.g. Organisational role 'MGRESS' for organisational group 'DEPT' and organisational group item '1' will return all employees with the MGRESS role for department 1. </p>\n","_postman_id":"ff6708f3-c143-46be-885d-69b78b163c14"}],"id":"70e965d2-544c-45fa-9b44-9fede8ea9755","description":"<p>An organisation will set up an organisational structure within PeopleXD . This service will return an organisational structure.</p>\n<p>For Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>- Company  \n    - Management Unit  \n        - Department  \n            - Cost Centre\n\n</code></pre><p>As part of the organisational setup, an important concept exists Structure v's Hierarchy. A hierarchy is considered a subset of the previous level. For example from the above example, lets assume all are part of the hierarchy, this would mean:</p>\n<p>For a company, the available management units are mapped to a company, selecting a company means a specfic list of management units a valid to be selected, and selecting a management unit drives the departments that can be selected, once a department is selected only specific cost centres can then be selected. In other words the entire strucutre has a hierarchy link. PeopleXD can support up to 12 levels of structure / hierarchy, the number of levels used is set by your HR administration colleagues.</p>\n<p>This hierearchy is completely configurable. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured PeopleXD .</p>\n","event":[{"listen":"prerequest","script":{"id":"4136e557-f7e4-4fca-a60b-872be11fec05","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"484e4757-042c-449e-98dd-084cde73e401","type":"text/javascript","exec":[""]}}],"_postman_id":"70e965d2-544c-45fa-9b44-9fede8ea9755"},{"name":"HESA","item":[{"name":"staffid","item":[{"name":"/hesa/staffid/:personnelNo","id":"b8d893d7-3c66-4018-bb40-f26107b6d032","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/hesa/staffid/9913681","description":"<p>The specific end point will return an employee's HESA assigned staff ID. This staff ID is derived based on an algorithm that includes personnel number, year joined, institute ID an a check digit. </p>\n<p><strong>Parameters</strong></p>\n<p>requires personnelNumber, use the /filter/* endpoints to obtain personnelNumbers</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li><p>staffid </p>\n<p>A unique reference identifier for the appointment, this is a system generated identifier.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","hesa","staffid","9913681"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9197bb38-ed53-43a1-bea6-c6a8dedd3b8c","name":"success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/hesa/staffid/9913681"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Nov 2018 15:38:53 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-001716ab"},{"key":"ETag","value":"\"J8rHluOYEeiptQdO90ROsKlFtP1Q4L1OYtHOQi++5qZ86LEd1W4v6PZz8pxsQBCCONpc5yB5weOeVT/JuqMcCA==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"staffId\": \"1410759136810\"\n}"},{"id":"cf1a2315-1eba-421d-b3e5-311df9306f42","name":"Not Found","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/hesa/staffid/123"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Nov 2018 15:40:26 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-0017192f"},{"key":"ETag","value":"\"1skHyZ4bik1l92MgrpAI8MkU5t4g4SDlPW/QIyZWLNz6NVbLyV/yq+aQTav5z1ptovIQZJWUW+M0SgH8i4nnYw==\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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":"{}"}],"_postman_id":"b8d893d7-3c66-4018-bb40-f26107b6d032"}],"id":"1a3490cb-9ca7-42f2-8b7f-1d44e1df9d73","description":"<p>The specific end point will return an employee's HESA assigned staff ID. This staff ID is derived based on an algorithm that includes personnel number, year joined, institute ID an a check digit. </p>\n","event":[{"listen":"prerequest","script":{"id":"fd286e96-50ba-42e5-a98c-6fe611b82785","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4f765f63-1e58-471a-b73a-fcd2eb719384","type":"text/javascript","exec":[""]}}],"_postman_id":"1a3490cb-9ca7-42f2-8b7f-1d44e1df9d73"}],"id":"6ae30042-a981-431d-9f7f-3efcd530187f","description":"<p>HESA relates only to the higher education (HE) in the UK.</p>\n","event":[{"listen":"prerequest","script":{"id":"444cf1fa-ae42-4a27-9534-4d7f0e27a66c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c83311f2-c6bc-459a-bbcf-874f03919208","type":"text/javascript","exec":[""]}}],"_postman_id":"6ae30042-a981-431d-9f7f-3efcd530187f"},{"name":"Training","item":[{"name":"Person","item":[{"name":"/Training/Person","id":"e2644e7c-a981-4d15-b9bf-69dc85d70a33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/training/person?personnelNo=7304000005","description":"<p>This service provides the ability to obtain a list of employee training records.\nThis list of can be filtered by certain parameters e.g. Employee No, Course Code, Training Status, Start Date or End Date.</p>\n<p>The optional parameters are below, but at least 1 filter parameter must be used.</p>\n<ol>\n<li><p><strong>personnelNo</strong>. </p>\n<ul>\n<li>Max length 10. </li>\n<li>Must be a valid person number.</li>\n</ul>\n</li>\n<li><p><strong>courseCode</strong>. </p>\n<ul>\n<li>Max length 8. </li>\n<li>Must be a valid course code as set up in XD Training</li>\n</ul>\n</li>\n<li><p><strong>trainingStatus</strong>. </p>\n<ul>\n<li>Max length 4. </li>\n<li>Must be a valid training status code as set up in XD Training</li>\n</ul>\n</li>\n<li><p><strong>startdate</strong>.  </p>\n<ul>\n<li>Must be in valid date format</li>\n</ul>\n</li>\n<li><p><strong>endDate</strong>. </p>\n<ul>\n<li>Must be in valid date format</li>\n</ul>\n</li>\n</ol>\n<ul>\n<li><p>The JSON Response</p>\n<ol>\n<li><strong>trainingID</strong><ul>\n<li>String. Unique identifier for the training record</li>\n</ul>\n</li>\n<li><strong>person</strong><ul>\n<li>String. Personnel No</li>\n</ul>\n</li>\n<li><strong>personName</strong><ul>\n<li>String. Employees Name</li>\n</ul>\n</li>\n<li><strong>courseCode</strong><ul>\n<li>String. Code for the course</li>\n</ul>\n</li>\n<li><strong>courseName</strong><ul>\n<li>String. Descriptive title for the course code</li>\n</ul>\n</li>\n<li><strong>courseID</strong><ul>\n<li>String. Unique identifier for the course scheduled instance</li>\n</ul>\n</li>\n<li><strong>trainingStatusCode</strong><ul>\n<li>String. Code for the training status</li>\n</ul>\n</li>\n<li><strong>trainingStatus</strong><ul>\n<li>String. Descriptive title for the training status</li>\n</ul>\n</li>\n<li><strong>repeatInterval</strong><ul>\n<li>String. Repeat Interval for the course code</li>\n</ul>\n</li>\n<li><strong>startDate</strong><ul>\n<li>String. Format dd/mm/yy. Course Start Date</li>\n</ul>\n</li>\n<li><strong>endDate</strong><ul>\n<li>String. Format dd/mm/yy. Course End Date</li>\n</ul>\n</li>\n<li><strong>repeatTrainingInd</strong><ul>\n<li>String. Indicator to specify this is a repeat course</li>\n</ul>\n</li>\n<li><strong>courseStatus</strong><ul>\n<li>String. The status of the course eg Open/Closed/Cancelled</li>\n</ul>\n</li>\n</ol>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","training","person"],"host":["{{url}}"],"query":[{"key":"personnelNo","value":"7304000005"}],"variable":[]}},"response":[{"id":"4fa97507-ac51-4e1a-89d0-28c9ec716269","name":"Search by Person Number","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/ws/{{tenant}}/{{schema}}/v1/training/person/?personnelNo=7304000005","host":["{{url}}"],"path":["ws","{{tenant}}","{{schema}}","v1","training","person",""],"query":[{"key":"personnelNo","value":"7304000005"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e2644e7c-a981-4d15-b9bf-69dc85d70a33"},{"name":"/Training/Person","id":"fa03c494-c561-4771-8480-a475d9daef2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/training/person?PersonnelNo=7304000005&courseCode=MICRO&startDate=01-JUN-2021&endDate=2-JUN-2021","description":"<p>This service provides the ability to create a training record for an employee\nIt will create a training log record for the person/course passed in</p>\n<p>If a scheduled course instance for the course code/start date/end date combination passed in \ndoes not exist a Training ID will be generated and a scheduled instance created</p>\n<p>The required input parameters are below:-</p>\n<ol>\n<li><p><strong>personnelNo</strong>. </p>\n<ul>\n<li>Max length 10. </li>\n<li>Must be a valid person number.</li>\n</ul>\n</li>\n<li><p><strong>courseCode</strong>. </p>\n<ul>\n<li>Max length 8. </li>\n<li>Must be a valid course code as set up in XD Training</li>\n</ul>\n</li>\n<li><p><strong>startdate</strong>.  </p>\n<ul>\n<li>Must be in valid date format</li>\n</ul>\n</li>\n<li><p><strong>endDate</strong>. </p>\n<ul>\n<li>Must be in valid date format</li>\n</ul>\n</li>\n</ol>\n<p>The optional parameters are below:-</p>\n<ol>\n<li><strong>trainingStatus</strong>. <ul>\n<li>Max Length 4</li>\n<li>Must be in valid training status Code</li>\n</ul>\n</li>\n</ol>\n<p><strong>Response Object</strong></p>\n<p>A response objects is always provided and within success will either be <code>true</code>. In which case as ws_id (unique web service identifier that allows us to refer back to this record). </p>\n<p>Alternatively, the success value can be <code>false</code> if this is the cause an errorCode and errorMessage are provided. Additional error details - if the error pertains to a specific value in the body - is provided in the validationError object. This will contain one or more JSON objects relating to each specific error. The param_name will contain the field the validation error relates to the field_name is the label of the field used in CoreHR and the <code>message</code> will contain a detailed explanation of what validation is failing.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code. These are shared by all these Training Person endpoints and explained in the Error Codes section at the start of the Training documentation.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","training","person"],"host":["{{url}}"],"query":[{"key":"PersonnelNo","value":"7304000005"},{"key":"courseCode","value":"MICRO"},{"key":"startDate","value":"01-JUN-2021"},{"key":"endDate","value":"2-JUN-2021"}],"variable":[]}},"response":[{"id":"b43036a4-e9a8-483a-9856-a5dd11f5fbdc","name":"Create New Training Record","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{url}}/ws/{{tenant}}/{{schema}}/v1/training/person?PersonnelNo=7304000005&courseCode=MICRO&startDate=01-JUN-2021&endDate=2-JUN-2021","host":["{{url}}"],"path":["ws","{{tenant}}","{{schema}}","v1","training","person"],"query":[{"key":"PersonnelNo","value":"7304000005"},{"key":"courseCode","value":"MICRO"},{"key":"startDate","value":"01-JUN-2021"},{"key":"endDate","value":"2-JUN-2021"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Tue, 06 Jul 2021 14:00:35 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"7d4b169c-0027-4159-9c48-be61a5417e5d-00659f69"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com https://*.xd.accessacloud.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION, X-COREHR-INTEGRITY, CACHE-CONTROL, X-COREHR-FILE-NAME, X-COREHR-WARNINGS"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"<!doctype html><head><link rel=\"shortcut icon\" href=\"/resources/i/favicon.ico\"><link rel=\"stylesheet\" href=\"/resources/css/error.css\"><title>CoreHR Error 401</title></head></style><body><img class=\"imgPosition\" src=\"/resources/i/logo.svg\"> </img><h1>401 - Unauthorized</h1><div></div></body>"}],"_postman_id":"fa03c494-c561-4771-8480-a475d9daef2d"},{"name":"/Training/Person","id":"57238904-d04f-4bbb-85fe-a687b1865b1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/training/person?PersonnelNo=7304000005&courseCode=MICRO&startDate=01-JUN-2021&endDate=2-JUN-2021","description":"<p>This service provides the ability to update a training record for an employee,\nie update a training request to be a completed training record\nIt will update the training log record for the person/course/dates passed in</p>\n<p>If a scheduled course instance for the course code/start date/end date combination passed in \ndoes not exist, a Training ID will be generated and a scheduled instance created</p>\n<p>The required input parameters are below:-</p>\n<ol>\n<li><p><strong>personnelNo</strong>. </p>\n<ul>\n<li>Max length 10. </li>\n<li>Must be a valid person number.</li>\n</ul>\n</li>\n<li><p><strong>courseCode</strong>. </p>\n<ul>\n<li>Max length 8. </li>\n<li>Must be a valid course code as set up in XD Training</li>\n</ul>\n</li>\n<li><p><strong>startdate</strong>.  </p>\n<ul>\n<li>Must be in valid date format</li>\n</ul>\n</li>\n<li><p><strong>endDate</strong>. </p>\n<ul>\n<li>Must be in valid date format</li>\n</ul>\n</li>\n</ol>\n<p>The optional parameters are below:-</p>\n<ol>\n<li><strong>trainingStatus</strong>. <ul>\n<li>Max length 4. </li>\n<li>Must be a valid training status code as set up in XD Training</li>\n</ul>\n</li>\n</ol>\n<p><strong>Response Object</strong></p>\n<p>A response objects is always provided and within success will either be <code>true</code>. In which case as ws_id (unique web service identifier that allows us to refer back to this record). </p>\n<p>Alternatively, the success value can be <code>false</code> if this is the cause an errorCode and errorMessage are provided. Additional error details - if the error pertains to a specific value in the body - is provided in the validationError object. This will contain one or more JSON objects relating to each specific error. The param_name will contain the field the validation error relates to the field_name is the label of the field used in CoreHR and the <code>message</code> will contain a detailed explanation of what validation is failing.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code. These are shared by all these Training Person endpoints and explained in the Error Codes section at the start of the Training documentation.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","training","person"],"host":["{{url}}"],"query":[{"key":"PersonnelNo","value":"7304000005"},{"key":"courseCode","value":"MICRO"},{"key":"startDate","value":"01-JUN-2021"},{"key":"endDate","value":"2-JUN-2021"}],"variable":[]}},"response":[{"id":"ab927a47-ada1-4b87-bd8c-7d8798738bca","name":"Update Training Record","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"{{url}}/ws/{{tenant}}/{{schema}}/v1/training/person?PersonnelNo=7304000005&courseCode=MICRO&startDate=01-JUN-2021&endDate=2-JUN-2021","host":["{{url}}"],"path":["ws","{{tenant}}","{{schema}}","v1","training","person"],"query":[{"key":"PersonnelNo","value":"7304000005"},{"key":"courseCode","value":"MICRO"},{"key":"startDate","value":"01-JUN-2021"},{"key":"endDate","value":"2-JUN-2021"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Tue, 06 Jul 2021 14:00:35 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"7d4b169c-0027-4159-9c48-be61a5417e5d-00659f69"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com https://*.xd.accessacloud.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION, X-COREHR-INTEGRITY, CACHE-CONTROL, X-COREHR-FILE-NAME, X-COREHR-WARNINGS"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"<!doctype html><head><link rel=\"shortcut icon\" href=\"/resources/i/favicon.ico\"><link rel=\"stylesheet\" href=\"/resources/css/error.css\"><title>CoreHR Error 401</title></head></style><body><img class=\"imgPosition\" src=\"/resources/i/logo.svg\"> </img><h1>401 - Unauthorized</h1><div></div></body>"}],"_postman_id":"57238904-d04f-4bbb-85fe-a687b1865b1d"}],"id":"68200f60-f040-46f4-b21d-077a8e7549a6","_postman_id":"68200f60-f040-46f4-b21d-077a8e7549a6","description":""}],"id":"bd9930c7-21f3-43de-b4bd-7eadd44f5790","description":"<p>The Training Module is a suite of web services that will allow you to</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Get of list of employee training courses\nLoad completed training records into the system\nRemove pending/outstanding training requests that may exist for an employee/course \n</code></pre><p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001  Invalid personnel no.</li>\n<li>404 / 002  Invalid course code.</li>\n<li>404 / 003  Invalid training status.</li>\n<li>404 / 004  Course profile is inactive.</li>\n<li>404 / 006  Training status cannot be an initial status.</li>\n<li>404 / 007  Training start date cannot be after training end date.</li>\n<li>400 / 008  Training ID does not exist</li>\n<li>404 / 009  At least 1 filter parameter must be selected.</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"227fbe28-7922-451a-a495-3b43ba19c134","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e8979f43-2c14-4e30-95ed-dc70cc1f30ff","type":"text/javascript","exec":[""]}}],"_postman_id":"bd9930c7-21f3-43de-b4bd-7eadd44f5790"}],"id":"43b45ff6-6124-4978-a41a-45ff010be6b3","event":[{"listen":"prerequest","script":{"id":"c83184bb-567a-4630-aad8-7875e93157a2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"73f56a02-4741-4cf6-b6b0-0127ad8f57f3","type":"text/javascript","exec":[""]}}],"_postman_id":"43b45ff6-6124-4978-a41a-45ff010be6b3","description":""},{"name":"V27","item":[{"name":"Clocking","item":[{"name":"/clocking/user","id":"4f0ce1da-1381-49ee-b766-2ac86fd0e4cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"content-type","value":"application/json"},{"key":"authorization","value":"Bearer ALgQ3rnPP2TYd6CAOaKDBA.."}],"url":"{{url}}/ws/{{schema}}/{{version}}v1/clocking/user/","description":"<p>This Web Service provides a means of reporting the data that has been sent to the Clocking web service and the status of that clocking data in terms of it being interfaced into CoreTime.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li><p>id</p>\n<p>Type : Numeric Optional</p>\n<p>The ws_id unique id of the web service clocking. When a clocking is POSTed to the /clocking/user/ web service it returns this unique ws_id relating to the data just added.</p>\n</li>\n<li><p>person </p>\n<p>Type : Alphanumeric Optional</p>\n<p>The personnel number in CoreHR of the person for whom the web service related clockings will be retrieved for.</p>\n</li>\n<li><p>badge_no </p>\n<p>Type : Numeric Optional</p>\n<p>The badge number in CoreHR of the person for whom web service related clockings will be retrieved for.</p>\n</li>\n<li><p>appointment_id </p>\n<p>Type : Alphanumeric Optional</p>\n<p>The appointment id in CoreHR for which web service related clockings will be retrieved.</p>\n</li>\n<li><p>device_id </p>\n<p>Type : Alphanumeric Optional</p>\n<p>The device ID from which the clocking originated for which web service related clockings will be retrieved.</p>\n</li>\n<li><p>moved_to_coretime </p>\n<p>Type : Alpha Optional</p>\n<p>The status of the clocking records being queried. Options include:</p>\n<ol>\n<li><code>Y</code> - Clockings that have been successfully interfaced into CoreTime</li>\n<li><code>N</code> - Clockings that have not yet been interfaced into CoreTime. These will be actioned the next time the Clocking Interface to CoreTime is invoked.</li>\n<li><code>E</code> - Clockings that have been attempted to be interfaced into CoreTime but have not been successfully inserted into coretime. Further details of the Error are included in the errMsg results returned.</li>\n</ol>\n</li>\n<li><p>start_date_range </p>\n<p>Type : Date Optional</p>\n<p>The start of the date range from which Web Service Clocking will be retrieved. Required to use the standard ISO 8601 / CoreHR Standard YYYY-MM-DD format.</p>\n</li>\n<li><p>end_date_range </p>\n<p>Type : Date Optional</p>\n<p>The end of the date range from which Web Service Clocking will be retrieved. Required to use the standard ISO 8601 / CoreHR Sandard YYYY-MM-DD format.</p>\n</li>\n<li><p>The JSON Response</p>\n<ol>\n<li><p><strong>WSID</strong>  </p>\n<ul>\n<li>The unique id of the web service clocking record.</li>\n</ul>\n</li>\n<li><p><strong>PERSON</strong></p>\n<ul>\n<li>The CoreHR personnel number of the person the clocking record is for. Note that this will be automatically populated based on the badge number of the record if that was used to insert the clocking -  provided that the badge number is associated with a valid CoreHR employee.</li>\n</ul>\n</li>\n<li><p><strong>APPOINTMENTID</strong></p>\n<ul>\n<li>The Appointment ID of the clocking being queried. Only populated on sites where CoreTime is configured to run as multi-appointment.</li>\n</ul>\n</li>\n<li><p><strong>BADGENO</strong></p>\n<ul>\n<li>The CoreTime Badge Number of the clocking record. Only populated where the clocking was inserted using a badge number.</li>\n</ul>\n</li>\n<li><p><strong>CLOCKDATETIME</strong></p>\n<ul>\n<li>The Clock Date Time in the standard <code>YYYY-MM-DD HH24:MI TZH:TZM</code> format. This is the format the clocking record came in as. e.g. <code>2018-09-04 00:16 +01:00</code> \n Note that CoreHR will convert the data into the server system time before interfacing to CoreTime.</li>\n</ul>\n</li>\n<li><p><strong>INSERTDATETIME</strong></p>\n<ul>\n<li>The date (without time) that the clocking record was inserted.</li>\n</ul>\n</li>\n<li><p><strong>RECORDTYPE</strong></p>\n<ul>\n<li>The transactional event type that the clocking record is.</li>\n</ul>\n</li>\n<li><p><strong>FUNCTIONCODE</strong></p>\n<ul>\n<li>The optional function code related to the clocking record.</li>\n</ul>\n</li>\n<li><p><strong>FUNCTIONVALUE</strong></p>\n<ul>\n<li>The function value related to the function code above. e.g. if the FUNCTIONCODE was <code>COST</code> and the FUNCTIONVALUE was <code>1</code> then the clocking would relate to Cost Centre 1.</li>\n</ul>\n</li>\n<li><p><strong>DEVICEID</strong></p>\n<ul>\n<li>Text field to report on the device that the clocking originated from.</li>\n</ul>\n</li>\n<li><p><strong>CLOCKDATESYSTEMTZ</strong></p>\n<ul>\n<li>The Clock Date converted to the System Time Zone for the clocking record. e.g. a clocking for <code>2018-09-20 00:46 +02:00</code> would be <code>2018-09-19</code> when converted to system date presuming server resides in +01:00 time zone (i.e UTC+1 for daylight savings).</li>\n</ul>\n</li>\n<li><p><strong>CLOCKTIMESYSTEMTZ</strong></p>\n<ul>\n<li>The Clock time converted to the System Time Zone for the clocking record. e.g. a clocking for <code>2018-09-20 00:46 +02:00</code> would be <code>23:46</code> when converted to system date presuming server resides in +01:00 time zone (i.e UTC+1 for daylight savings).</li>\n</ul>\n</li>\n<li><p><strong>CORETIMECLOCKDATE</strong></p>\n<ul>\n<li>The CoreTime Date. This is because CoreTime may need to perform some adjustments to the clocking once it is inserted into CoreTime based on the pattern the person is working and if it relates to an overnight.</li>\n</ul>\n</li>\n<li><p><strong>CORETIMECLOCKTIME</strong></p>\n<ul>\n<li>The CoreTime Time. This is because CoreTime may need to perform some adjustments to the clocking once it is inserted into CoreTime based on the pattern the person is working and if it relates to an overnight.</li>\n</ul>\n</li>\n<li><p><strong>CORETIMEACTUALCLOCKDATE</strong></p>\n<ul>\n<li>The CoreTime actual date of clocking for reporting purposes.</li>\n</ul>\n</li>\n<li><p><strong>MOVEDTOCORETIME</strong></p>\n<ul>\n<li>Indicates what the status of this clocking record is in terms of its having been transferred to CoreTime. Options are:\n <code>Y</code> where the record has been successfully transferred into CoreTime.\n <code>N</code> where the record has not yet been attempted to be transferred into CoreTime.\n <code>E</code> where an attempt was made to move the record into CoreTime but an error occurred  when doing so.</li>\n</ul>\n</li>\n<li><p><strong>ERRIND</strong></p>\n<ul>\n<li>Indicates  if an error occurred when transferring  the clocking for the web service into CoreTime. Can be either <code>Y</code> or <code>N</code>.</li>\n</ul>\n</li>\n<li><p><strong>ERRLOGID</strong></p>\n<ul>\n<li>The unique id of the error record on the system. Only ever populated when there was an error transferring the clocking to CoreTime. i.e. only populated when ERRIND above is <code>Y</code>.</li>\n</ul>\n</li>\n<li><p><strong>ERRMSG</strong></p>\n<ul>\n<li>A message explaining the error that occurred when transferring the record into CoreTime.</li>\n</ul>\n</li>\n</ol>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}v1","clocking","user",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"11e5402e-4ae9-444d-b1f0-2b07b6b49d26","name":"200 - Success with no params","originalRequest":{"method":"GET","header":[{"key":"content-type","value":"application/json"},{"key":"authorization","value":"Bearer ALgQ3rnPP2TYd6CAOaKDBA.."}],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}v1/clocking/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Jan 2019 12:30:25 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"6c8fa8cd-67b1-4e97-a6c3-27fdc01684e2-00258979"},{"key":"ETag","value":"\"Q/oLtHAATq9W4CMXLHLklvLvnGf2y+dF4i9CKYp2kab3nL9JTP0o8riR4/kx+wK2+lsBM3lKTVWUFKMVZn64vw==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY, CACHE-CONTROL,X-COREHR-FILE-NAME"},{"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    \"items\": [\n        {\n            \"wsID\": \"1\",\n            \"person\": \"102572\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"\",\n            \"clockDateTime\": \"16-JAN-19 08.56.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"08:56\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"08:56\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"2\",\n            \"person\": \"102572\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"\",\n            \"clockDateTime\": \"16-JAN-19 05.58.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"05:58\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"05:58\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"3\",\n            \"person\": \"102572\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 05.59.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"05:59\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"05:59\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"4\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 05.59.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"05:59\",\n            \"coretimeClockDate\": \"\",\n            \"coretimeClockTime\": \"\",\n            \"coretimeActualClockDate\": \"\",\n            \"movedToCoretime\": \"E\",\n            \"errInd\": \"Y\",\n            \"errLogID\": \"1\",\n            \"errMsg\": \"Duplicate clocking. Clocking already exists in CoreTime for this Person at this Date and Time. Clocking can not be processed.\"\n        },\n        {\n            \"wsID\": \"5\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 06.00.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"06:00\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"06:00\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"6\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 06.01.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"06:01\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"06:01\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"7\",\n            \"person\": \"202129\",\n            \"appointmentID\": \"500076-7\",\n            \"badgeNo\": \"\",\n            \"clockDateTime\": \"31-DEC-18 02.25.00.000000 PM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"\",\n            \"functionValue\": \"\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20181231\",\n            \"clockTimeSystemTZ\": \"14:25\",\n            \"coretimeClockDate\": \"20181231\",\n            \"coretimeClockTime\": \"14:25\",\n            \"coretimeActualClockDate\": \"31-DEC-18\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 7,\n    \"hasMore\": false,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/dev27/corehr/v1/clocking/user\"\n        }\n    ]\n}"},{"id":"4ee17a50-e10e-46a2-9d38-ef0fccef0e3f","name":"200 - Success with several params including date range and device_id","originalRequest":{"method":"GET","header":[{"key":"content-type","value":"application/json"},{"key":"authorization","value":"Bearer ALgQ3rnPP2TYd6CAOaKDBA.."}],"url":{"raw":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}v1/clocking/user?id=&start_date_range=2018-12-20&end_date_range=2019-01-20&badge_no=&moved_to_coretime=&person=&appointment_id=&device_id=DEVSERIALNO123456","host":["{{url}}"],"path":["ws","{{tenant}}","{{schema}}","{{version}}v1","clocking","user"],"query":[{"key":"id","value":""},{"key":"start_date_range","value":"2018-12-20"},{"key":"end_date_range","value":"2019-01-20"},{"key":"badge_no","value":""},{"key":"moved_to_coretime","value":""},{"key":"person","value":""},{"key":"appointment_id","value":""},{"key":"device_id","value":"DEVSERIALNO123456"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Jan 2019 12:35:33 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"6c8fa8cd-67b1-4e97-a6c3-27fdc01684e2-0025988e"},{"key":"ETag","value":"\"0KRGs+6cXgkkS2vJTSAaQIOjepp4W3DIjFqF9uWODJJ/s/8E6xh6xB3rVHECp14kr4tBElM15tlL69YJb0n1Zg==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY, CACHE-CONTROL,X-COREHR-FILE-NAME"},{"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    \"items\": [\n        {\n            \"wsID\": \"1\",\n            \"person\": \"102572\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"\",\n            \"clockDateTime\": \"16-JAN-19 08.56.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"08:56\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"08:56\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"2\",\n            \"person\": \"102572\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"\",\n            \"clockDateTime\": \"16-JAN-19 05.58.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"05:58\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"05:58\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"3\",\n            \"person\": \"102572\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 05.59.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"05:59\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"05:59\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"4\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 05.59.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"05:59\",\n            \"coretimeClockDate\": \"\",\n            \"coretimeClockTime\": \"\",\n            \"coretimeActualClockDate\": \"\",\n            \"movedToCoretime\": \"E\",\n            \"errInd\": \"Y\",\n            \"errLogID\": \"1\",\n            \"errMsg\": \"Duplicate clocking. Clocking already exists in CoreTime for this Person at this Date and Time. Clocking can not be processed.\"\n        },\n        {\n            \"wsID\": \"5\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 06.00.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"06:00\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"06:00\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"6\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 06.01.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"06:01\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"06:01\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"7\",\n            \"person\": \"202129\",\n            \"appointmentID\": \"500076-7\",\n            \"badgeNo\": \"\",\n            \"clockDateTime\": \"31-DEC-18 02.25.00.000000 PM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"\",\n            \"functionValue\": \"\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20181231\",\n            \"clockTimeSystemTZ\": \"14:25\",\n            \"coretimeClockDate\": \"20181231\",\n            \"coretimeClockTime\": \"14:25\",\n            \"coretimeActualClockDate\": \"31-DEC-18\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 7,\n    \"hasMore\": false,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/dev27/corehr/v1/clocking/user?id&start_date_range=2018-12-20&end_date_range=2019-01-20&badge_no&moved_to_coretime&person&appointment_id&device_id=DEVSERIALNO123456\"\n        }\n    ]\n}"},{"id":"91c5fc28-6d56-4886-9e66-da867bdc8f86","name":"200 - Success for specific person 00001","originalRequest":{"method":"GET","header":[{"key":"content-type","value":"application/json"},{"key":"authorization","value":"Bearer ALgQ3rnPP2TYd6CAOaKDBA.."}],"url":{"raw":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}v1/clocking/user?id=&start_date_range=2018-12-20&end_date_range=2019-01-20&badge_no=&moved_to_coretime=&person=00001&appointment_id=&device_id=","host":["{{url}}"],"path":["ws","{{tenant}}","{{schema}}","{{version}}v1","clocking","user"],"query":[{"key":"id","value":""},{"key":"start_date_range","value":"2018-12-20"},{"key":"end_date_range","value":"2019-01-20"},{"key":"badge_no","value":""},{"key":"moved_to_coretime","value":""},{"key":"person","value":"00001"},{"key":"appointment_id","value":""},{"key":"device_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Jan 2019 12:38:17 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"6c8fa8cd-67b1-4e97-a6c3-27fdc01684e2-00259f5b"},{"key":"ETag","value":"\"yxvkyPo45rj5wAh8zzRV4dqZm/kbettoR2yKg3RqKBWCoitKWPxVWYvgeH63Hj/q7LnCuwJ0XPAo2IAzovKA3w==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY, CACHE-CONTROL,X-COREHR-FILE-NAME"},{"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    \"items\": [\n        {\n            \"wsID\": \"4\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 05.59.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"05:59\",\n            \"coretimeClockDate\": \"\",\n            \"coretimeClockTime\": \"\",\n            \"coretimeActualClockDate\": \"\",\n            \"movedToCoretime\": \"E\",\n            \"errInd\": \"Y\",\n            \"errLogID\": \"1\",\n            \"errMsg\": \"Duplicate clocking. Clocking already exists in CoreTime for this Person at this Date and Time. Clocking can not be processed.\"\n        },\n        {\n            \"wsID\": \"5\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 06.00.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"06:00\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"06:00\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        },\n        {\n            \"wsID\": \"6\",\n            \"person\": \"00001\",\n            \"appointmentID\": \"\",\n            \"badgeNo\": \"123456\",\n            \"clockDateTime\": \"16-JAN-19 06.01.00.000000 AM +00:00\",\n            \"insertDateTime\": \"20190116\",\n            \"recordType\": \"\",\n            \"functionCode\": \"COST\",\n            \"functionValue\": \"40000000\",\n            \"deviceId\": \"DEVSERIALNO123456\",\n            \"clockDateSystemTZ\": \"20190116\",\n            \"clockTimeSystemTZ\": \"06:01\",\n            \"coretimeClockDate\": \"20190116\",\n            \"coretimeClockTime\": \"06:01\",\n            \"coretimeActualClockDate\": \"16-JAN-19\",\n            \"movedToCoretime\": \"Y\",\n            \"errInd\": \"\",\n            \"errLogID\": \"\",\n            \"errMsg\": \"\"\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 3,\n    \"hasMore\": false,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/dev27/corehr/v1/clocking/user?id&start_date_range=2018-12-20&end_date_range=2019-01-20&badge_no&moved_to_coretime&person=00001&appointment_id&device_id\"\n        }\n    ]\n}"}],"_postman_id":"4f0ce1da-1381-49ee-b766-2ac86fd0e4cd"},{"name":"/clocking/user/","id":"0219004a-ce47-4dbb-8348-1a5622034ade","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer XYopyFOTxxoxAqpQU6kjvw.."}],"body":{"mode":"raw","raw":"{\n    \"person\": \"202129\",\n    \"badge_no\": \"\",\n    \"clock_date_time\": \"2018-12-31 14:25 +00:00\",\n    \"record_type\": \"\",\n    \"function_code\": \"\",\n    \"function_value\": \"\",\n    \"device_id\": \"DEVSERIALNO123456\",\n    \"appointment_id\": \"500076-7\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}v1/clocking/user/","description":"<p>Create a clocking record in the clocking module for subsequent transfer into CoreTime. On successful completion, users will have submitted a new clocking record which subject to subsequent CoreTime validation will be transferred into CoreTime the next time the interface runs.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<p><strong>person</strong></p>\n<p>Is an CoreHR employee id also known as <code>personnel number</code> although it is alphanumeric.</p>\n<p><strong>badge_no</strong></p>\n<p>Is the badge number that the CoreHR employee uses. Badge must be valid and linked to a valid CoreHR employee for the clocking to interface into CoreTime.</p>\n<p><strong>clock_date_time</strong></p>\n<p>The Date and Time that this particular clocking is for. Required to be in YYYY-MM-DD HH24:MI TZH:TZM format. Mandatory.</p>\n<p><strong>record_type</strong></p>\n<p>The Transactional event associated with the clocking. Optional but if specified must be one of:</p>\n<ul>\n<li><code>B0</code>     <em>Undefined.</em></li>\n<li><code>B1</code>     <em>In.</em></li>\n<li><code>B2</code>     <em>Out.</em></li>\n<li><code>B3</code>     <em>Business Absence.</em></li>\n</ul>\n<p><strong>function_code</strong></p>\n<p>Optional function code but if specified must be one of:</p>\n<ul>\n<li><code>CALLIN</code></li>\n<li><code>UNSBRK</code></li>\n<li><code>STD</code></li>\n<li><code>TNAIN</code></li>\n<li><code>CALLOT</code></li>\n<li><code>TNAOUT</code></li>\n<li><code>OVERTM</code></li>\n<li><code>COST</code></li>\n</ul>\n<p><strong>function_value</strong></p>\n<p>Optional function_value relating to the above code. When using the <code>function_code</code> COST then the Cost Centre provided in the <code>function_value</code> is validated against the CoreHR Cost Centres.</p>\n<p><strong>device_id</strong></p>\n<p>Optional free text to describe the Device ID where the clocking was recorded e.g. Main Entrance Device.</p>\n<p><strong>appointment_id</strong></p>\n<p>CoreHR Appointment ID of person clocking in. Note: if using this field then <code>person</code> must also be used. i.e. this field cannot be used in conjunction with the <code>badge_no</code> field. Also note: this cannot be used at all if the CoreTime site is not Multi-Appointment. If the site is Multi-Appointment then the field is optional unless the ClockingWebservices Appointment Mandatory for Clockings option in the CoreTime Global Parameters screen is selected.</p>\n<p><strong>Mandatory</strong></p>\n<ul>\n<li>Either <code>person</code> or <code>badge_no</code></li>\n<li><code>clock_date_time</code></li>\n<li><code>appointment_id</code> for Multi-Appointment sites where the Webservices Appointment Mandatory for Clockings option in the CoreTime Global Parameters screen is selected.</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}v1","clocking","user",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7b299a88-cea1-4121-ba6f-3bc28ecf2075","name":"400 - Bad Request due to invalid cost centre","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer XYopyFOTxxoxAqpQU6kjvw.."}],"body":{"mode":"raw","raw":"{\n    \"person\": \"\",\n    \"badge_no\": \"123456\",\n    \"clock_date_time\": \"2019-01-16 06:01 +00:00\",\n    \"record_type\": \"\",\n    \"function_code\": \"COST\",\n    \"function_value\": \"2\",\n    \"device_id\": \"DEVSERIALNO123456\",\n    \"appointment_id\": \"\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}v1/clocking/user/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Jan 2019 11:51:58 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"6c8fa8cd-67b1-4e97-a6c3-27fdc01684e2-00252cb7"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY, CACHE-CONTROL,X-COREHR-FILE-NAME"},{"key":"Connection","value":"close"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"Response\": {\n        \"success\": false,\n        \"errorCode\": \"013\",\n        \"errorMessage\": \"The Cost Centre provided in the function_value for is not a valid Cost Centre on the system\"\n    }\n}"},{"id":"8140ef45-deca-4bff-9a2b-61aacf95f9ca","name":"201 -- Success using badge","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer XYopyFOTxxoxAqpQU6kjvw.."}],"body":{"mode":"raw","raw":"{\n    \"person\": \"\",\n    \"badge_no\": \"123456\",\n    \"clock_date_time\": \"2019-01-16 06:00 +00:00\",\n    \"record_type\": \"\",\n    \"function_code\": \"COST\",\n    \"function_value\": \"40000000\",\n    \"device_id\": \"DEVSERIALNO123456\",\n    \"appointment_id\": \"\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}v1/clocking/user/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Jan 2019 11:49:27 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"6c8fa8cd-67b1-4e97-a6c3-27fdc01684e2-0025262c"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY, CACHE-CONTROL,X-COREHR-FILE-NAME"},{"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    \"Response\": {\n        \"success\": true,\n        \"ws_id\": \"5\"\n    }\n}"},{"id":"8ec7fcac-dc92-4826-90bf-5a114e92c40b","name":"400 - Bad Request due to appoitnment_id being required","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer XYopyFOTxxoxAqpQU6kjvw.."}],"body":{"mode":"raw","raw":"{\n    \"person\": \"202129\",\n    \"badge_no\": \"\",\n    \"clock_date_time\": \"2018-12-31 09:10 +00:00\",\n    \"record_type\": \"\",\n    \"function_code\": \"COST\",\n    \"function_value\": \"2\",\n    \"device_id\": \"DEVSERIALNO123456\",\n    \"appointment_id\": \"\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}v1/clocking/user/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Jan 2019 12:01:59 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"6c8fa8cd-67b1-4e97-a6c3-27fdc01684e2-002544f1"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY, CACHE-CONTROL,X-COREHR-FILE-NAME"},{"key":"Connection","value":"close"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"Response\": {\n        \"success\": false,\n        \"errorCode\": \"009\",\n        \"errorMessage\": \"appointment_id is configured to be a required field but none has been provided.\"\n    }\n}"},{"id":"a247b1f8-f4d1-4424-8477-14508fddbdd6","name":"201 - Success","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer XYopyFOTxxoxAqpQU6kjvw.."}],"body":{"mode":"raw","raw":"{\n    \"person\": \"102572\",\n    \"badge_no\": \"\",\n    \"clock_date_time\": \"2019-01-16 05:58 +00:00\",\n    \"record_type\": \"\",\n    \"function_code\": \"COST\",\n    \"function_value\": \"40000000\",\n    \"device_id\": \"DEVSERIALNO123456\",\n    \"appointment_id\": \"400978\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}v1/clocking/user/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Jan 2019 11:47:08 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"6c8fa8cd-67b1-4e97-a6c3-27fdc01684e2-002520db"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY, CACHE-CONTROL,X-COREHR-FILE-NAME"},{"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    \"Response\": {\n        \"success\": true,\n        \"ws_id\": \"2\"\n    }\n}"},{"id":"c6458a88-4917-4390-9c28-b3a1981a5578","name":"201 - Success uisng person and appointment","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer XYopyFOTxxoxAqpQU6kjvw.."}],"body":{"mode":"raw","raw":"{\n    \"person\": \"202129\",\n    \"badge_no\": \"\",\n    \"clock_date_time\": \"2018-12-31 14:25 +00:00\",\n    \"record_type\": \"\",\n    \"function_code\": \"\",\n    \"function_value\": \"\",\n    \"device_id\": \"DEVSERIALNO123456\",\n    \"appointment_id\": \"500076-7\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}v1/clocking/user/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 16 Jan 2019 12:15:43 GMT"},{"key":"Server","value":"Apache"},{"key":"X-ORACLE-DMS-ECID","value":"6c8fa8cd-67b1-4e97-a6c3-27fdc01684e2-0025648c"},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'; frame-ancestors 'self' https://*.corehr.com; img-src 'self'; style-src 'self';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=631138519; includeSubDomains"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY, CACHE-CONTROL,X-COREHR-FILE-NAME"},{"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    \"Response\": {\n        \"success\": true,\n        \"ws_id\": \"7\"\n    }\n}"}],"_postman_id":"0219004a-ce47-4dbb-8348-1a5622034ade"}],"id":"af9d0584-cd58-474d-90a0-8cf621fbf832","description":"<p>The clocking module provides ability to insert Core Time clocking records for a CoreHR employee.</p>\n<p><strong>Constraints, Limitations, Mandatory and Validation</strong></p>\n<p>The clocking module is designed to handle clockings for CoreTime. Clocking by <code>person</code> <strong>or</strong> <code>badge_no</code> is possible. It is also as of Version 27 possible to perform clocking by appointment for CoreTime Multi-Appointment sites. When using clock by appointment both the appointment_id and the person must be provided. i.e. badge_no cannot be used together with appointment_id. Appointments for the clocking web service can only be used as long as CoreTime is configured in Multi-Appointment mode (ct_global_param.multi_appointment). Provided CoreTime is running as a Mutli- Appointment site it is possible to make appointments mandatory for the clocking web service using the Appointment Mandatory For Clockings option (ct_global_param.ws_clocking_appt_mandatory) in the CoreTime Global Params screen.</p>\n<p>In Version 27 (V27) of CoreHR the Clocking webservice completes the following validation:</p>\n<ul>\n<li>Person is a valid CoreHR employee.</li>\n<li>Badge is a valid CoreHR Badge for a valid CoreHR employee. If both badge and person are populated badge take precedence.</li>\n<li>Record Type is valid.</li>\n<li>Function Code is valid. When using COST then it validates that the Function Value is a valid Cost Centre.</li>\n<li>Appointment ID is valid on the specified clocking date - if the site is Multi-Appointment based. Also validates that the field is populated if it is mandatory.</li>\n<li>Duplicate Clocking - defined as where a clocking already exists in CoreTime for this person at the same date/time. Clockings are converted to system time for this comparison i.e. 09:00 +00:00 is the same as 08:00 +01:00.\nPrior to V27 much of the above validation was performed later at the point of interface into CoreTime.</li>\n</ul>\n<p>Fields are as in the table below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Length</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Person</td>\n<td>Character</td>\n<td>10</td>\n</tr>\n<tr>\n<td>Badge No</td>\n<td>Number</td>\n<td>18</td>\n</tr>\n<tr>\n<td>Clock Date Time</td>\n<td>Date YYYY-MM-DD HH24:MI TZH:TZM</td>\n<td>26</td>\n</tr>\n<tr>\n<td>Record Type</td>\n<td>Character</td>\n<td>2</td>\n</tr>\n<tr>\n<td>Function Code</td>\n<td>Character</td>\n<td>6</td>\n</tr>\n<tr>\n<td>Function Value</td>\n<td>Character</td>\n<td>18</td>\n</tr>\n<tr>\n<td>Device ID</td>\n<td>Character</td>\n<td>100</td>\n</tr>\n<tr>\n<td>Appointment ID</td>\n<td>Character</td>\n<td>16</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: Clock Date Time is mandatory and either Person or Badge No must also be provided.</p>\n<p>Note2: Appointment ID is an optional parameter for use if the site is configured as CoreTime Multi-Appointment. This can be made mandatory by also activating the Appointment Mandatory for Clockings option in CoreTime.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001  Both badge and person fields are not populated. One must be populated.</li>\n<li>400 / 002  clock_date_time field is not populated.</li>\n<li>400 / 003  clock_date_time field is not in the correct format.</li>\n<li>404 / 004 Non standard database exception inserting this clocking.</li>\n<li>404 / 005 record_type is invalid. Must be either empty, B0, B1, B2 or B3.</li>\n<li>400 / 006  function_code is invalid. Must be either empty, CALLIN, UNSBRK, STD, TNAIN, CALLOT, TNAOUT, OVERTM or COST.</li>\n<li>400 / 007  CoreTime is not configured to run using appoinments but an appointment has been provided as part of this request.</li>\n<li>400 / 008  badge_no and appointment_id cannot be used together. If you want to clock by appointment, then only personnel_no and appointment_id must be provided but badge_no must be blank.</li>\n<li>400 / 009  appointment_id is configured to be a required field but none has been provided.</li>\n<li>400 / 010  The appointment_id provided for this person is not valid - check that the appointment id is valid on the system and that it is valid on the clocking date provided.</li>\n<li>400 / 011  The badge_no provided is not a valid badge on the system.</li>\n<li>400 / 012  The person provided is not a valid person on the system.</li>\n<li>400 / 013  The Cost Centre provided in the function_value for is not a valid Cost Centre on the system.</li>\n<li>400 / 014  This is a duplicate Clocking. Clocking with this detail has already been interfaced to Core Time.</li>\n<li>400 / 015  Clocking with this detail is already in the queue to be interfaced to Core Time.</li>\n<li>400 / 016  When specifying a date range to use the start date range must be before the end date range.</li>\n<li>400 / 017  When using the id parameter only numeric values are valid.</li>\n<li>400 / 999  Basic sanitization error. Where a filed is not the correct data type or length or the data is deemed to be unsafe for recording within the system. Details of the fields failing sanitization are returned in the sanatizeError object in the Response.</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"5bd6da2a-4360-4317-b0b1-429a36b0d31b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6b6686c6-c618-4cb9-b1ab-2913df0b2fb1","type":"text/javascript","exec":[""]}}],"_postman_id":"af9d0584-cd58-474d-90a0-8cf621fbf832"},{"name":"Contact","item":[{"name":"/contact/","id":"9a40d5ac-20aa-46de-8e99-34eef5b7490c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer p7Zy3YYr3Yck6yOVXUYPaQ.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/","description":"<p>Get a list of registered / whitelisted contacts. Tenant has an ability to define contacts available for creating / updating. A tenant may not allow all contacts to be updated or created, this base URI provides the list of valid contact types. In cases where server returns validation errors, refer to this list.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0ab66224-fead-4f47-87d9-a4983e268e5a","name":"200 - Response OK","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:00:52 GMT","name":"Date","description":""},{"key":"ETag","value":"\"uwlnRwLu1teq90JMcLw3B68+EOyVApqwZ0O87dUiP4G6rHtTNS14dRJz0YaKyE8k7RmWTnrUodwqt3OwuAMICA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"EMAIL\", \"length\": 80, \"dataType\" : \"EMAIL\"}\n,\n{\"type\":\"MOBILE\", \"length\": 20, \"dataType\" : \"MOB\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/\"\n      }\n    ]\n}\n"}],"_postman_id":"9a40d5ac-20aa-46de-8e99-34eef5b7490c"},{"name":"/contact/:type/","id":"8ada6255-60af-4c7b-b45d-a27795ae25ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/EMAIL/","description":"<p>Get a list of all users for a particular contact type. Typically used to get a list of all users <code>email</code> addresses. </p>\n<p>This service will only return whitelisted contact types. A tenant may decide to only whitelist a subset of all contacts e.g. EMAIL is whitelisted while MOBILE is not. Only accounts where the contact type is populated are returned. To find accounts with missing contact information use the web service /contact/missing/:type</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","EMAIL",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1c0aadb9-b91b-4808-9645-435773f7230f","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/EMAIL/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 15 Nov 2016 19:46:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"6iQZlpyFhjCcA3IiwUAR9L8mLF0w4tdo6M6kmFN3AV+v32sX/fFbqqgk/bMg7pMmUv2y1+9/cnGbLcj57836dw==-gzip\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"coreHRId\":\"003676\", \"value\": \"webservices003676@corehr.com\"}\n,\n{\"coreHRId\":\"003674\", \"value\": \"webservices003674@corehr.com\"}\n,\n{\"coreHRId\":\"003332\", \"value\": \"webservices003332@corehr.com\"}\n,\n{\"coreHRId\":\"003333\", \"value\": \"webservices003333@corehr.com\"}\n,\n{\"coreHRId\":\"INT009\", \"value\": \"webservicesINT009@corehr.com\"}\n,\n{\"coreHRId\":\"INT010\", \"value\": \"webservicesINT010@corehr.com\"}\n,\n{\"coreHRId\":\"600100\", \"value\": \"webservices600100@corehr.com\"}\n,\n{\"coreHRId\":\"600101\", \"value\": \"webservices600101@corehr.com\"}\n,\n{\"coreHRId\":\"600102\", \"value\": \"webservices600102@corehr.com\"}\n,\n{\"coreHRId\":\"7777\", \"value\": \"webservices7777@corehr.com\"}\n,\n{\"coreHRId\":\"C876876\", \"value\": \"webservicesC876876@corehr.com\"}\n,\n{\"coreHRId\":\"003193\", \"value\": \"webservices003193@corehr.com\"}\n,\n{\"coreHRId\":\"003528\", \"value\": \"webservices003528@corehr.com\"}\n,\n{\"coreHRId\":\"gh1234\", \"value\": \"webservicesgh1234@corehr.com\"}\n,\n{\"coreHRId\":\"JG1234\", \"value\": \"webservicesJG1234@corehr.com\"}\n,\n{\"coreHRId\":\"002145\", \"value\": \"webservices002145@corehr.com\"}\n,\n{\"coreHRId\":\"002144\", \"value\": \"webservices002144@corehr.com\"}\n,\n{\"coreHRId\":\"002146\", \"value\": \"webservices002146@corehr.com\"}\n,\n{\"coreHRId\":\"000660\", \"value\": \"webservices000660@corehr.com\"}\n,\n{\"coreHRId\":\"002626\", \"value\": \"webservices002626@corehr.com\"}\n,\n{\"coreHRId\":\"000740\", \"value\": \"webservices000740@corehr.com\"}\n,\n{\"coreHRId\":\"000936\", \"value\": \"webservices000936@corehr.com\"}\n,\n{\"coreHRId\":\"000830\", \"value\": \"webservices000830@corehr.com\"}\n,\n{\"coreHRId\":\"000831\", \"value\": \"webservices000831@corehr.com\"}\n,\n{\"coreHRId\":\"000880\", \"value\": \"webservices000880@corehr.com\"}\n,\n{\"coreHRId\":\"1000491\", \"value\": \"webservices1000491@corehr.com\"}\n,\n{\"coreHRId\":\"000014\", \"value\": \"webservices000014@corehr.com\"}\n,\n{\"coreHRId\":\"000115\", \"value\": \"webservices000115@corehr.com\"}\n,\n{\"coreHRId\":\"000012\", \"value\": \"webservices000012@corehr.com\"}\n,\n{\"coreHRId\":\"000015\", \"value\": \"webservices000015@corehr.com\"}\n,\n{\"coreHRId\":\"000296\", \"value\": \"webservices000296@corehr.com\"}\n,\n{\"coreHRId\":\"000297\", \"value\": \"webservices000297@corehr.com\"}\n,\n{\"coreHRId\":\"000328\", \"value\": \"webservices000328@corehr.com\"}\n,\n{\"coreHRId\":\"000590\", \"value\": \"webservices000590@corehr.com\"}\n,\n{\"coreHRId\":\"000227\", \"value\": \"webservices000227@corehr.com\"}\n,\n{\"coreHRId\":\"001873\", \"value\": \"webservices001873@corehr.com\"}\n,\n{\"coreHRId\":\"000275\", \"value\": \"webservices000275@corehr.com\"}\n,\n{\"coreHRId\":\"CUT-001\", \"value\": \"webservicesCUT-001@corehr.com\"}\n,\n{\"coreHRId\":\"END-001\", \"value\": \"webservicesEND-001@corehr.com\"}\n,\n{\"coreHRId\":\"000286\", \"value\": \"webservices000286@corehr.com\"}\n,\n{\"coreHRId\":\"001987\", \"value\": \"webservices001987@corehr.com\"}\n,\n{\"coreHRId\":\"000180\", \"value\": \"webservices000180@corehr.com\"}\n,\n{\"coreHRId\":\"001993\", \"value\": \"webservices001993@corehr.com\"}\n,\n{\"coreHRId\":\"000598\", \"value\": \"webservices000598@corehr.com\"}\n,\n{\"coreHRId\":\"000601\", \"value\": \"webservices000601@corehr.com\"}\n,\n{\"coreHRId\":\"002037\", \"value\": \"webservices002037@corehr.com\"}\n,\n{\"coreHRId\":\"GH992\", \"value\": \"webservicesGH992@corehr.com\"}\n,\n{\"coreHRId\":\"000119\", \"value\": \"webservices000119@corehr.com\"}\n,\n{\"coreHRId\":\"000124\", \"value\": \"webservices000124@corehr.com\"}\n,\n{\"coreHRId\":\"000587\", \"value\": \"webservices000587@corehr.com\"}\n,\n{\"coreHRId\":\"000588\", \"value\": \"webservices000588@corehr.com\"}\n,\n{\"coreHRId\":\"000592\", \"value\": \"webservices000592@corehr.com\"}\n,\n{\"coreHRId\":\"000594\", \"value\": \"webservices000594@corehr.com\"}\n,\n{\"coreHRId\":\"002315\", \"value\": \"webservices002315@corehr.com\"}\n,\n{\"coreHRId\":\"000904\", \"value\": \"webservices000904@corehr.com\"}\n,\n{\"coreHRId\":\"002261\", \"value\": \"webservices002261@corehr.com\"}\n,\n{\"coreHRId\":\"002262\", \"value\": \"webservices002262@corehr.com\"}\n,\n{\"coreHRId\":\"CUT-012\", \"value\": \"webservicesCUT-012@corehr.com\"}\n,\n{\"coreHRId\":\"002248\", \"value\": \"webservices002248@corehr.com\"}\n,\n{\"coreHRId\":\"002249\", \"value\": \"webservices002249@corehr.com\"}\n,\n{\"coreHRId\":\"002250\", \"value\": \"webservices002250@corehr.com\"}\n,\n{\"coreHRId\":\"002367\", \"value\": \"webservices002367@corehr.com\"}\n,\n{\"coreHRId\":\"002368\", \"value\": \"webservices002368@corehr.com\"}\n,\n{\"coreHRId\":\"002369\", \"value\": \"webservices002369@corehr.com\"}\n,\n{\"coreHRId\":\"000826\", \"value\": \"webservices000826@corehr.com\"}\n,\n{\"coreHRId\":\"000897\", \"value\": \"webservices000897@corehr.com\"}\n,\n{\"coreHRId\":\"001128\", \"value\": \"webservices001128@corehr.com\"}\n,\n{\"coreHRId\":\"002629\", \"value\": \"webservices002629@corehr.com\"}\n,\n{\"coreHRId\":\"002697\", \"value\": \"webservices002697@corehr.com\"}\n,\n{\"coreHRId\":\"000934\", \"value\": \"webservices000934@corehr.com\"}\n,\n{\"coreHRId\":\"002624\", \"value\": \"webservices002624@corehr.com\"}\n,\n{\"coreHRId\":\"000290\", \"value\": \"webservices000290@corehr.com\"}\n,\n{\"coreHRId\":\"000837\", \"value\": \"webservices000837@corehr.com\"}\n,\n{\"coreHRId\":\"002444\", \"value\": \"webservices002444@corehr.com\"}\n,\n{\"coreHRId\":\"002685\", \"value\": \"webservices002685@corehr.com\"}\n,\n{\"coreHRId\":\"002227\", \"value\": \"webservices002227@corehr.com\"}\n,\n{\"coreHRId\":\"002169\", \"value\": \"webservices002169@corehr.com\"}\n,\n{\"coreHRId\":\"000849\", \"value\": \"webservices000849@corehr.com\"}\n,\n{\"coreHRId\":\"000808\", \"value\": \"webservices000808@corehr.com\"}\n,\n{\"coreHRId\":\"002091\", \"value\": \"webservices002091@corehr.com\"}\n,\n{\"coreHRId\":\"1010101010\", \"value\": \"webservices1010101010@corehr.com\"}\n,\n{\"coreHRId\":\"20202020\", \"value\": \"webservices20202020@corehr.com\"}\n,\n{\"coreHRId\":\"GM967\", \"value\": \"webservicesGM967@corehr.com\"}\n,\n{\"coreHRId\":\"GM969\", \"value\": \"webservicesGM969@corehr.com\"}\n,\n{\"coreHRId\":\"DB678\", \"value\": \"webservicesDB678@corehr.com\"}\n,\n{\"coreHRId\":\"002651\", \"value\": \"webservices002651@corehr.com\"}\n,\n{\"coreHRId\":\"gh23\", \"value\": \"webservicesgh23@corehr.com\"}\n,\n{\"coreHRId\":\"6633228\", \"value\": \"webservices6633228@corehr.com\"}\n,\n{\"coreHRId\":\"250\", \"value\": \"webservices250@corehr.com\"}\n,\n{\"coreHRId\":\"260\", \"value\": \"webservices260@corehr.com\"}\n,\n{\"coreHRId\":\"002705\", \"value\": \"webservices002705@corehr.com\"}\n,\n{\"coreHRId\":\"002103\", \"value\": \"webservices002103@corehr.com\"}\n,\n{\"coreHRId\":\"000950\", \"value\": \"webservices000950@corehr.com\"}\n,\n{\"coreHRId\":\"002756\", \"value\": \"webservices002756@corehr.com\"}\n,\n{\"coreHRId\":\"002652\", \"value\": \"webservices002652@corehr.com\"}\n,\n{\"coreHRId\":\"jg1234\", \"value\": \"webservicesjg1234@corehr.com\"}\n,\n{\"coreHRId\":\"DF5609\", \"value\": \"webservicesDF5609@corehr.com\"}\n,\n{\"coreHRId\":\"002289\", \"value\": \"webservices002289@corehr.com\"}\n,\n{\"coreHRId\":\"002727\", \"value\": \"webservices002727@corehr.com\"}\n,\n{\"coreHRId\":\"000179\", \"value\": \"webservices000179@corehr.com\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://localhost/ws/tenant/corehr/v1/contact/EMAIL/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"https://localhost/ws/tenant/corehr/v1/contact/EMAIL/?offsetby=100\"\n      }\n     ]\n}\n"},{"id":"f59f3a9c-afd1-4aa1-8f8f-69af8b986678","name":"404 - Invalid Contact type","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/MOB/"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 15 Nov 2016 19:51:28 GMT","name":"Date","description":""},{"key":"ETag","value":"\"WIZPZbpKwxRRgssW8lwH34floeFnPJzhb0Pc1fxiiWRv2Gqy41LgVu19up1qzvTBBMK6i635jWpyDaAsi5TVnQ==-gzip\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Contact type does not exist\" }}\n"}],"_postman_id":"8ada6255-60af-4c7b-b45d-a27795ae25ef"},{"name":"/contact/user/:person/","id":"2d7ea985-a640-4b19-8575-01c9c2da8c9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/","description":"<p>This web service returns all contacts for the <code>person</code>. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8a50b214-1f24-4a06-a873-0bf955f428f0","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:07:46 GMT","name":"Date","description":""},{"key":"ETag","value":"\"LhGBatBRxgaYUmBtTmvXvChPohvGeovn7W4uxHWhB4+QRQzr2hMGTwHgTVmNBSC5LBBs5caMKtNgcUPRq//F4g==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"EMAIL\", \"value\": \"darragh.michael.duffy@corehr.com\"}\n,\n{\"type\":\"MOBILE\", \"value\": \"+353 86 879394365\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/100/\"\n      }\n    ]\n}\n"},{"id":"cac973a2-ba0e-4f5f-a83a-0c7188b4e55c","name":"200 - No User","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/101/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:01:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"O9HyTNymWfaETgxd2+q0Z8TsEInPQq/SaTstLGNYuk0ULMG4HwXQCLduJMqhelPi2gIHQzv5MIpmEwSbtWPRpA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 0,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/101/\"\n      }\n    ]\n}\n"}],"_postman_id":"2d7ea985-a640-4b19-8575-01c9c2da8c9e"},{"name":"/contact/user/:person/:type","id":"9f90580b-0846-4ee6-8139-b4176cdea0b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service returns a specific contact for an associated <code>person</code> and <code>type</code>. Refer to /contact/ for a complete list of contacts available.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0483da29-208b-4c65-9797-99ef327b1b03","name":"200 - No User","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/101/MOBILE"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:10:07 GMT","name":"Date","description":""},{"key":"ETag","value":"\"ay7m5ryBPHhMsOJ1KjoM5eH7l1NGTfBQtHtRz3pe6vAnViut/MxWuBYfXJAq8eIwVG9Mdw++NsyHV8rF1b+n9w==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 0,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/101/MOBILE\"\n      }\n    ]\n}\n"},{"id":"685f5e88-ad19-4024-88b1-885aa67af928","name":"200 - Success - EMAIL","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:09:26 GMT","name":"Date","description":""},{"key":"ETag","value":"\"Pc4vB09OL4Wki+1My6sbuyspVqD9UgcaBW5WwkJt7G+pjphL6HqjfPhY3QJdY9rBBhTQiZpy3yiq/0Ss9VN8Og==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"EMAIL\", \"value\": \"darragh.michael.duffy@corehr.com\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/100/EMAIL\"\n      }\n    ]\n}\n"},{"id":"942e11d6-9b9e-48ce-ac6d-9ebfd25ff9c9","name":"200 - Success - MOBILE","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/MOBILE"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:09:49 GMT","name":"Date","description":""},{"key":"ETag","value":"\"scMWmM8Da5PAtTmblpgR7OkNQV1BzUC3oAQTxAwklCyu4Ho/oxtaOFLKAD3gitBDb+yEJe9jVdbxDOQC/3ADBw==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"MOBILE\", \"value\": \"+353 86 879394365\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/100/MOBILE\"\n      }\n    ]\n}\n"}],"_postman_id":"9f90580b-0846-4ee6-8139-b4176cdea0b7"},{"name":"/contact/user/:person/:type","id":"f25b9c9b-a8ea-41d5-af8e-a65eb2e59ae8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"value\" :\"darragh.duffy@corehr.com\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service provides ability to create a new contact type for a user. The contact type should not already exist for this account. As previously noted a tenant may whitelist contact types. Refer to /contact/ for a complete list of contacts available.</p>\n<p>The value of the contact type must be provided in the request body as JSON e.g.</p>\n<blockquote>\n<p>{\"value\" :\"<a href=\"mailto:darragh.james.duffy@corehr.com\">darragh.james.duffy@corehr.com</a>\"}</p>\n</blockquote>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"02c7e516-ef5e-45d9-a93a-e829bb79f514","name":"400 - Bad Request - Error Code 006","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:41:20 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"006\",\"errorMessage\" :\"Validation failed. Existing contact for user, use PATCH to update\" }}\n"},{"id":"4f55615a-71f5-4a1c-8e23-b89dc0595f17","name":"404 - Not Found - Error Code 003","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/7788/EMAIL"},"status":"Not Found","code":404,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:43:31 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"003\",\"errorMessage\" :\"Validation failed. User account does not exist\" }}\n"},{"id":"6d6452aa-3e93-4d44-90e7-ae9586ef0487","name":"201 - Success - Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:40:49 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"bfd2b4c8-e01d-4c1b-b5a8-6365dc237e53","name":"400 - Bad Request - Error Code 001","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:42:45 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing\" }}\n"},{"id":"fe425a37-2eb8-4075-9a88-77e2f64a8ab3","name":"400 - Bad Request - Error Code 005","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/PHONE"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:44:28 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"005\",\"errorMessage\" :\"Validation failed. Ensure contact type is allowed and has correct format\" }}\n"}],"_postman_id":"f25b9c9b-a8ea-41d5-af8e-a65eb2e59ae8"},{"name":"/contact/user/:person/:type","id":"0ec6201e-3c9d-4a2f-8eb0-0ba893625793","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"value\" :\"darragh.james.duffy@corehr.com\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service provides ability to patch / update a contact type for a user. The contact type <strong>must</strong> already exist for this account. As previously noted a tenant may whitelist contact types. Refer to /contact/ for a complete list of contacts available.</p>\n<p>The value of the contact type must be provided in the request body as JSON e.g.</p>\n<blockquote>\n<p>{\"value\" :\"<a href=\"mailto:darragh.james.duffy@corehr.com\">darragh.james.duffy@corehr.com</a>\"}</p>\n</blockquote>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2eeb8337-8009-4f2b-a36f-b6f8a38e88d4","name":"400 - Bad Request - Error Code 001","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:46:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing\" }}\n"},{"id":"70713828-81c3-4b18-bfd9-debf29c05bd4","name":"404 - Not Found - Error Code 002","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/Phone"},"status":"Not Found","code":404,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:48:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Contact does not exist\" }}\n"},{"id":"7ca023e1-6909-4cf4-aaed-eb78384ca0b9","name":"201- Success - Created","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:45:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"81140d7a-fe0f-41e2-a8ec-da0d80df8cb3","name":"404 - Not Found - Error Code 003","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/7788/EMAIL"},"status":"Not Found","code":404,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:47:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"003\",\"errorMessage\" :\"Validation failed. User account does not exist\" }}\n"}],"_postman_id":"0ec6201e-3c9d-4a2f-8eb0-0ba893625793"},{"name":"/contact/user/:person/:type","id":"35a26043-2da0-411d-ad38-9ff0cffee96a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service provides ability to delete a contact from a users / employees profile. The contact type should already exist for this account. As previously noted a tenant may whitelist contact types. Refer to /contact/ for a complete list of contacts available. All contact types are case sensitive.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"06afa29b-9c89-4770-b594-7164c2d41807","name":"200 - Response OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 11 Nov 2016 14:46:13 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"35a26043-2da0-411d-ad38-9ff0cffee96a"},{"name":"/contact/missing/:type","id":"034c6291-3913-4a4b-8439-f9d301f0d93c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/missing/EMAIL","description":"<p>This web service provides ability to list user accounts with missing contact types. For example find all users with a missing <code>EMAIL</code> contact.</p>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","missing","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0b2fa88f-db6c-4b8f-ba33-52f1bbd51049","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/missing/EMAIL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:20:51 GMT","name":"Date","description":""},{"key":"ETag","value":"\"CxtmnGZgL6Fnj+S5DOnKKr5OPrcNWUF/Tp/4y80gZt+7x/+jHBqLIZD6vvrFUddPuXIu33rL+abP5e3np94DYA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"corehrid\":\"000003703\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003704\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003706\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003707\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003708\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003709\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003710\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003711\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003712\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003713\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003714\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003715\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003716\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003717\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003718\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003720\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003721\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003722\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003723\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000013\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000017\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000018\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000020\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000022\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000023\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000025\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000027\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000028\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000030\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000031\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000032\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000035\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000036\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000038\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000039\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000041\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000042\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000043\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000044\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000045\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000046\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000047\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000048\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000049\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000050\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000051\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000052\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000053\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000054\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000055\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000056\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000057\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000058\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000059\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000060\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000061\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000063\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000064\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000065\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000066\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000067\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000069\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000070\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000071\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000072\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000073\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000078\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000080\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000081\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000082\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000084\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000085\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000086\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000088\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000090\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000091\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000092\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000093\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000094\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000096\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000097\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000098\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000099\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000100\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"0001000\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000101\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000102\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000103\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000105\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000106\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000107\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000108\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000109\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000110\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000111\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000112\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000113\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000114\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000118\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000120\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/missing/EMAIL\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/missing/EMAIL?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"034c6291-3913-4a4b-8439-f9d301f0d93c"}],"id":"83d9df80-8604-4023-a3df-2f59e946f30a","description":"<p>Contact module provides ability to interact with contact information associated with an account in CoreHR. Different contact types exist and can be defined by a tenant e.g EMAIL, MOBILE etc. Not all tenants have the same list of contacts i.e. each tenant can define a whitelist of contacts exposed to web services.</p>\n<p><strong>Contraints, Limitations &amp; Mandatory</strong></p>\n<p>The contact module is case senstive, no process converts the contact type provided to upper or lower case. You must ensure you have set the case correctly, otherwise no data will be returned. Within CoreHR contact types are typically uppercase.</p>\n<p>Person is mandatory, person represents users unique CoreHR ID, this is often referenced as <code>personnel number</code></p>\n<p><strong>Optionally</strong> </p>\n<p>Provide the type of contact e.g. <code>EMAIL</code> to get users associated email address.</p>\n<p>In cases where <code>type</code> is not specified all contact details are returned associated with employee.</p>\n<p>In Summary contact provides ability to</p>\n<ul>\n<li>Enumerate users contact information</li>\n<li>Obtain a specific contact type </li>\n<li>Update / Patch an existing contact type</li>\n<li>Assign a new contact type to a user</li>\n</ul>\n<p><strong>Error Codes</strong></p>\n<p>Note <code>type</code> is case senstive, no process converts the type provided into upper or lower case. You must ensure you have set the case correctly, otherwise no data will be returned. </p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001  Mandatory fields are missing</li>\n<li>404 / 002  Validation failed. Contact does not exist</li>\n<li>404 / 003  Validation failed. User account does not exist</li>\n<li>400 / 005 Validation failed. Ensure contact type is allowed and has correct format</li>\n<li>400 / 006  Validation failed. Existing contact for user, use PATCH to update</li>\n<li>404 / 007  Contact type does not exist for user, consider using POST to create</li>\n</ul>\n<p><strong>Note</strong> </p>\n<p>Where a contact exists within CoreHR, this does not mean an account in CoreHR has this contact assigned, e.g. not every account would have a mobile / cell number. Keep this in mind if you attempt to PATCH a contact type and server responds with a validation error.</p>\n","_postman_id":"83d9df80-8604-4023-a3df-2f59e946f30a"},{"name":"Image","item":[{"name":"/image/user/","id":"1558f8e2-3b6a-42ec-8b2d-3c45e4c42860","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"authorization","value":"Bearer MZun_JVHkiiNm9SXgadz4A.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>This Web Service is used to retrieve (GET) the image profile for a CoreHR user on the system. Returns a binary image file.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$  curl -o ./local_copy_of_profile.jpeg -k --request GET --url https://devapi.corehr.com/ws/frame/corehr/v1/image/user/0890126 \\\n --header 'authorization: Bearer MZun_JVHkiiNm9SXgadz4A..'\n</code></pre>\n<p>This command will save the binary image of CoreHR User <code>0890126</code> into the file <code>local_copy_of_profile.jpeg</code>. If alternatively the person did not have an image on the system then the web service would return an http code 404 with and verbose errorCode of 1008. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b8ab1f64-ffcb-4728-bf28-4f90b910e447","name":"Successfull GET","originalRequest":{"method":"GET","header":[{"key":"authorization","value":"Bearer MZun_JVHkiiNm9SXgadz4A.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"OK","code":200,"_postman_previewlanguage":"auto","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Disposition","value":"filename=\"0890126.GIFF\"; filename*=UTF-8''0890126.GIFF","name":"Content-Disposition","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"image/GIFF","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 16:37:26 GMT","name":"Date","description":""},{"key":"ETag","value":"\"j9mJrveZSvs7gkL4ts+ozuq3PRxaNSFSStvjAW2auCnxwS+XXia03jqP+qm1FXXgVzmdyy+4rIR6LGyDsgpwzA==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002dd3","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"GIF89a\u0000\u0002\u0000\u0002�\n\u0000~}}~}}~}}~}}~}}~}}~}}~}}~}}~}}������������������!�\u001aCreated with GIMP on a Mac\u0000!�\u0004\u0001\n\u0000\u000f\u0000,\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0002@\u0004���I��8�ͻ�`(�di�h��l��p,�tm�x��|����pH,\u001a�Ȥr�l:�ШtJ�Z�جv��z���xL.����z�n����|N���\u0016\u0001\"������  \u0001\b\u0002x���2\u0007��������\u0007���f�����������C\b������\b���'|������\u0001���������}���u���ʷ��h����Ӡ���Z����ݒ���O\u0002�������F��������>������:�����  �Q\u0000����\n\f\\\b\u0003�Ç�\u0018Jt\u0001��E@\u00133� w��Au�\u001aC��H��ȓ\u0014K�܆�%��+c�R���\fw2sn�g�'\u000e�@1�\u001c:\u0004ZP�ֈ*ur��ҧ<�\u0005R\u0001�i��A�ʱ��\u0016RW~e\u0011v\u0016ȭ���\u001bK�@\u0001\u0001\u0002�&)[\u000e�+�$\u0003�\u0015#��J�v���z+��\u0003\b\nťI�-�ć\u0007\u0013��4p�ɘ3w�\u001c\u0005��Ϡwr.\u0015���T{G/:ͺ�*��Q�uM��)Ʊ?t�ͻ��Թ)�\u001eN<U�  œ+\u0007�z��盹B�N=\u0012p���k��\u0007�K�����)�<w���??ξ�����˟O��������Ͽ���\u0000\u0006�(��\u0004\u0016h��\b&���\f6���\u0010F(��\u0014Vh��\u0018f���\u001cv��� �(�\u000f}\u0001�׈\u000fJ\u0006Z\u0000ޡ��n�]�bH*��He3������\b�g<\"\u0003��t\u0000\u0019�6C\u0012�F�G����b4�\u0010�`�(%@�Q9\u0005�WB$��M0��AO��Ԙ$�9\u0005�i�\u0019��lb��\u0014��  P�s:Q�����g\u0014b�IM�Z����|Y�\u0016�*�h\u001b����\u001dpF�G��*b��If\u001aN��\u0011�i\u001c{B�h\b\u0005�\u001a\u0014�\u001b}���@�:��-\b�)7\u0007������\n+\n����\u001d�\"��\u0007��tb\u0013%��櫙�Z:\u001d�\"F+�z�Rx��vv� ��B�`��F�ߡ��;������:Z����ȳKmkﾞxK\u0014�\u0000�\u0002\u0015�\u0001\u0017�ڿ\u0006'̌M�*�0'�2��Ē��0�\u0014G|��\u001cw��� �,��$�l��(����,����0�,��4�l��8����<����@\u0007-��D\u0017m��H'���L7���PG-��\u0005\\�\u000b\u0002�N]��\u0000���\"�j6��r\u0010�\u001a�dc��p^��\u0004�����\u0010k����9p�7\u000fuw�7\r\u0001���Â���\u001f��vx hϽ���S\u0000��rK=����7����d����g~4��|M�,S�^�Ӫ���٭wҸϱ��t��+�9��x\u001e4���\u000e�q�\u000f�ӻ\u001b߈�B�^��@+o.��O�����\r���']�P{':�R�8�_��0���\u001e�\u0007�������;��\u0015�/���k������\b���\u0000\n0\u0005V\u0003��\u000ex��-�n\f$\u0001\u001f\fh\u0001�P�\u0002\u0013��\u0004@�>\r8�0\u0010�@�.X4���\u0005a���V�<��L}�� \b��\u0014\u0017r\u0000��\u001a�\u0007ma�\u0011T���\u000eLx��%P\u001a$\\\u0003\u0010o���\u0011�\u001e=��\u0013�\u0011E7��\"Ml��\u0011-\u0012�<-q%��a\n�rE\u0015z��߻G\u0017E4�4:��\u0011��\u001b���\u0006��4\u001f�cm2���LH�}TV��\u0018����=�,�\u0019\u0007���������!�\u0002�H\u000eg�>��%����lRJ��$�سEQn'�>1%�F�IUj���@�+��Ɛ��RP������k!�����,�i��\u0010So59&���Ln�Q\u001c�l�sꈍRJS�\u0003��5�\u0005K\rz���\f�8�I�r����L�:���v������<�I�z����̧>���~���\u0000\r�@\u0007JЂ\u001a��\bM�B\u0017�І:��\u0010��D�'JъZ��\u0018ͨF7�юz�� \r�HGJҒ���(M�JW�Җ���0ՠ\\b�\u00052\n).4�A��!Ĝ� �\bY�OA`�|�ҥ�D\u000759\n��\b5���I--�Լ������>�ڔ��3���j?�J\u001c�����:(X�#�wr�8^\u001d�[���r�U�h��Q�I�+��m\u0006kg_��ר͕Gq��`\u001bUX���ZwM�aǔ���/�84�3��لmVs�����'Z�}/qn\u0014�\u001d��X�EVh�UXceVȴ52}�,��,9���N�8�d�|�;�֬��{mpE�I=�:-����nU�4WV���\u0015nv7  ZU\u001a\u0017f�\r�vy;�H^ה�u.ӐK:��,���-���:�6\r���nϴ\u000b5�b̽9#����0\u0000�춊-�|_6YuU��z�[x1�]��Wa�EZ������6r��߆��a���M%.ډ��b�]�\\\u0019�-�*��Ù��l20`\u001d�N\u001c\u001fIǪ\u0005�<᫞\u0005����\u00012\u0003Wܛ\u0016\u000b�ɮqr\u0004�쬂\"�7JV'�mcdrR9'R\u0016�y�\\�Ҿ�31�\u0000���\u0007j��)i��\u001f��4ح��1��\u0004L���\u001d�����  ����2�y\u0002[��$�I��\u0011��W��Oi\u0011f�\u0001��4�Ȳ^p���9+4�4>6\u001d�O\u0007��(K�#\u001a��H7\"W8p5 ��1(W�\u0002o�\u0003*\b�S\u001f�:g���+&�\u000b2S  ���uM����\u0011{Pʦ\u0013�'\u0011m(\u0005[\u0019�&�J��!S��\u0000��A\u0001d=\rT+�����  ��\u000eV{h�HRw\u001eН�[W\b���5\f���x�\u001bB��f\u0002�\u001d��\u000b�\u000f\u0004g��\u000f\u000e10=���\b�� �\u000f\u001f\u0019���\u0018��1\u000e\f����\u001c�ÿ��B��\u0001��\u00031r��|��@y`T\u000e�\u0013J��mr��q^��\u0006ќ��h�S�.\u0013\u0004m����8%��\u0013����L\u000fF���B�\"��U��u������\u000f�1s��g�>f��|���^�\u0007�m�����������8��\u000f�tz�=4��{ir\u0003w�#I5z7<B��\fś�3lw�-�N��K~�v�<\u001e��p���������\u0012y�O~���R\n�zI����\u001fJ�a�\u000f�7����I�q�\u000e�ǁ��o  �U���\u000f?�5)��g����\u001e%�w��Z\u0012}�������gt�}���\r��~�e/~���S��*g�v\u0000�\u000f�0=\u001d���O��G����Ͽ��������\u0000\u0018�\u00028�\u0004X�\u0006x�\b��\n��\f؀\u000e��\u0010\u0018�\u00128�\u0014X�\u0016x�\u0018��\u001a��\u001c؁\u001e�� \u0018�\"8�!\u0010\u0001\u0000;"}],"_postman_id":"1558f8e2-3b6a-42ec-8b2d-3c45e4c42860"},{"name":"/image/user/","id":"4186c37a-2f2b-4a2e-b0b3-9028ec0afaa7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer E63-fevVwKH-CV4E_TScUA.."},{"key":"Content-Type","value":"image/png"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>This Web Service is used to insert a profile image for a CoreHR user on the system where none exists. The image is provided as binary data in the body of the request.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$ curl --request POST --url https://api.corehr.com/ws/tenant/corehr/v1/image/user/0890126 \\\n  --header \"Expect:\" \\\n  --header 'content-type:image/png' \\\n  --header 'authorization: Bearer E63-fevVwKH-CV4E_TScUA..' \\\n  --data-binary \"@./original_profile.png\" \n</code></pre>\n<p>The above cURL will insert the file <code>original_profile.png</code> as the binary image profile photo for the CoreHR User <code>0890126</code> where they do not have an profile image already configured on the system.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d8db8b42-f3e0-4cf8-9c1a-b3a17c7f43c0","name":"No image included in POST","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer N3Q1pq4ltsFO89nxd7jdSw.."},{"key":"Content-Type","value":"image/gif"}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"Unsupported Media Type","code":415,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 16:02:22 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002d3d","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"1002\",\"errorMessage\" :\"An image file (gif, png, jpeg or tiff) of size greater than zero must be attached to this request.\" }}\n"},{"id":"fcc85e08-c5cb-47db-a6c1-a66931cf6e98","name":"New profile image added","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer N3Q1pq4ltsFO89nxd7jdSw.."},{"key":"Content-Type","value":"image/gif"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 15:58:03 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002d2b","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true,  \"person\": \"0890126\",\"mimeType\": \"image/gif\",\"fileFormat\": \"GIFF\",\"width\": \"512\",\"height\": \"512\",\"blobLength\": \"2734\",\"contentLength\":\"2734\"}}\n"}],"_postman_id":"4186c37a-2f2b-4a2e-b0b3-9028ec0afaa7"},{"name":"/image/user/ ","id":"530d9c63-7957-44ed-b170-6a135ed88e99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer Fbbanqy44exS0Nat7Ep3oQ.."},{"key":"Content-Type","value":"image/jpeg"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>Web Service used to update the profile image for a CoreHR user on the system. This overwrites their current profile image with this new image. The image is provided as binary data in the body of the request.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$ curl --request PATCH --url https://api.corehr.com/ws/tenant/corehr/v1/image/user/0890126 \\\n  --header \"Expect:\" \\\n  --header 'content-type:image/jpeg' \\\n  --header 'authorization: Bearer Fbbanqy44exS0Nat7Ep3oQ..' \\\n  --data-binary \"@./new_profile.jpg\" \n</code></pre>\n<p>The above cURL will insert the file <code>new_profile.jpg</code> as the binary image profile photo for the CoreHR User <code>0890126</code> where they already have a profile image in CoreHR. This will over-write the existing profile image.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ae35f42f-73ff-4bb4-a8eb-d04ed3b6c0f5","name":"Unsupported image type PATCH attempt","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer JWsqzJY8n1LFVJRvqakNjQ.."},{"key":"Content-Type","value":"image/bmp"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"Unsupported Media Type","code":415,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 15:54:55 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002d1f","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"1003\",\"errorMessage\" :\"There was an issue with the supplied image being recognized as a supported image (gif, png, jpeg or tiff) please save as another supported format and re-try.\" }}\n"},{"id":"e22d7e83-4991-4877-83e0-74bf101e9311","name":"Image update to GIF","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer seHDfknuDp9vu9UYFvsRRQ.."},{"key":"Content-Type","value":"image/gif"}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 15:38:37 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002d17","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true,  \"person\": \"0890126\",\"mimeType\": \"image/gif\",\"fileFormat\": \"GIFF\",\"width\": \"512\",\"height\": \"512\",\"blobLength\": \"2734\",\"contentLength\":\"2734\"}}\n"}],"_postman_id":"530d9c63-7957-44ed-b170-6a135ed88e99"},{"name":"/image/user/","id":"fe70b9aa-0a91-43d1-a333-714a97a65b42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"authorization","value":"Bearer MZun_JVHkiiNm9SXgadz4A.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>This Web Service is used to retrieve (GET) the image profile for a CoreHR user on the system. Returns a binary image file.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$  curl -o ./local_copy_of_profile.jpeg -k --request GET --url https://devapi.corehr.com/ws/frame/corehr/v1/image/user/0890126 \\\n --header 'authorization: Bearer MZun_JVHkiiNm9SXgadz4A..'\n</code></pre>\n<p>This command will save the binary image of CoreHR User <code>0890126</code> into the file <code>local_copy_of_profile.jpeg</code>. If alternatively the person did not have an image on the system then the web service would return an http code 404 with and verbose errorCode of 1008. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe70b9aa-0a91-43d1-a333-714a97a65b42"},{"name":"/image/user/ ","id":"569b4df8-e44f-4172-9822-25068c5102cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer Fbbanqy44exS0Nat7Ep3oQ.."},{"key":"Content-Type","value":"image/jpeg"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>Web Service used to update the profile image for a CoreHR user on the system. This overwrites their current profile image with this new image. The image is provided as binary data in the body of the request.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$ curl --request PATCH --url https://api.corehr.com/ws/tenant/corehr/v1/image/user/0890126 \\\n  --header \"Expect:\" \\\n  --header 'content-type:image/jpeg' \\\n  --header 'authorization: Bearer Fbbanqy44exS0Nat7Ep3oQ..' \\\n  --data-binary \"@./new_profile.jpg\" \n</code></pre>\n<p>The above cURL will insert the file <code>new_profile.jpg</code> as the binary image profile photo for the CoreHR User <code>0890126</code> where they already have a profile image in CoreHR. This will over-write the existing profile image.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"569b4df8-e44f-4172-9822-25068c5102cf"},{"name":"/image/user/","id":"1cb18e0a-9e6f-418d-9226-0b03d1159a13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer E63-fevVwKH-CV4E_TScUA.."},{"key":"Content-Type","value":"image/png"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>This Web Service is used to insert a profile image for a CoreHR user on the system where none exists. The image is provided as binary data in the body of the request.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$ curl --request POST --url https://api.corehr.com/ws/tenant/corehr/v1/image/user/0890126 \\\n  --header \"Expect:\" \\\n  --header 'content-type:image/png' \\\n  --header 'authorization: Bearer E63-fevVwKH-CV4E_TScUA..' \\\n  --data-binary \"@./original_profile.png\" \n</code></pre>\n<p>The above cURL will insert the file <code>original_profile.png</code> as the binary image profile photo for the CoreHR User <code>0890126</code> where they do not have an profile image already configured on the system.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1cb18e0a-9e6f-418d-9226-0b03d1159a13"}],"id":"47616c9a-7cab-419e-825b-488bfa716807","description":"<p>The image web service provides a means for uploading and viewing a CoreHR user's profile picture.</p>\n<p><strong>Constraints, Limitations, Mandatory and Validation</strong></p>\n<p>Images uploaded can be a maximum of 500KB in size and must be provided in one of the following file formats:</p>\n<ul>\n<li>gif</li>\n<li>png</li>\n<li>jpeg</li>\n<li>tiff</li>\n</ul>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>415 / 1001  Invalid content type, only image/gif, image/png, image/jpeg or image/tiff allowed</li>\n<li>415 / 1002  n image file (gif, png, jpeg or tiff) of size greater than zero must be attached to this request.</li>\n<li>415 / 1003  There was an issue with the supplied image being recognized as a supported image (gif, png, jpeg or tiff) please save as another supported format and re-try.</li>\n<li>415 / 1004 The attached image exceeded the maximum allowed file size for an image.</li>\n<li>400 / 1005 The person supplied is not currently a valid person on the system. Please check the personnel details.</li>\n<li>400 / 1006  This person does not have an image on the system to update please change this request to POST to insert the image.</li>\n<li>400 / 1007  This person already has an image on the system to insert please change this request to PATCH to update the image.</li>\n<li>404 / 1008  This person does not currently have an image on the system to retrieve.</li>\n</ul>\n","_postman_id":"47616c9a-7cab-419e-825b-488bfa716807"},{"name":"Provision","item":[{"name":"native","item":[{"name":"auth","item":[{"name":"/provision/native/auth/uuid/","id":"29f16c57-4e26-46c0-a206-ac66a92f2302","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\" : \"email\",\n  \"id\" : \"darragh@COREHR.com\"\n}"},"url":"{{url}}/ws/devws/corehr/v1/provision/native/auth/uuid","description":"<p>Use this service if you want to remove UUID's. The service can facility bulk UUID removal/purge and individual employee UUID.</p>\n<p>This is useful in cases where you have a need</p>\n<ul>\n<li>to remove an individuals UUID e.g. as part of a leaver process.</li>\n<li>to implement a policy requiring users to re-register, this would be similar to a password policy</li>\n</ul>\n<p><strong>Constraints and Limitations</strong></p>\n<ul>\n<li><code>type</code> must be one of the following:</li>\n</ul>\n<p>email</p>\n<p>ALL</p>\n<ul>\n<li><code>id</code></li>\n</ul>\n<p>must now be a valid type i.e. a valid Email address. In cases where ALL is used for type, the id should be left blank.</p>\n<p>If invalid ID provided nothing is deleted, i.e. if an invalid email address provided a status of 404 is returned. For valid email address a 200 is returned, indicating a success.</p>\n<p><strong>Parameters</strong></p>\n<ul>\n<li><code>type</code> this must be email, username, employeeNumber or all. \"ALL\" is reserved for bulk removal, this will remove all the registered UUID's, therefore use with caution</li>\n<li><code>id</code> this must be a valid email address</li>\n</ul>\n","urlObject":{"path":["ws","devws","corehr","v1","provision","native","auth","uuid"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"29f16c57-4e26-46c0-a206-ac66a92f2302"}],"id":"e2852191-5bea-42ae-83e1-a4d338e2a346","description":"<p>CoreHR's native mobile application facilitates users registering once and then using biometric (e.g. touchID, FaceID)  or PIN to unlock the application i.e. the user does not require a username / password each time they login. However a user is required to unlock the app via biometric or PIN.</p>\n<p>A tenant may have a requirement to implement a different policy e.g. a user must authenticate via username / password at least once a day, week or month i.e. similar to password policies. CoreHR makes no assumptions for password policies, instead tenants can implement their own policies.</p>\n<p>In order to faciliate these requirments web services can be used. A tenant can generate a new app grant priviliges to this module and end point.</p>\n","_postman_id":"e2852191-5bea-42ae-83e1-a4d338e2a346"}],"id":"f86c7be0-9a1e-45b8-90ab-4e41a2c2aa29","description":"<p>The native module manages authentication and tokens for the CoreHR native application. These services cater for both SAML and non-SAML customers. All request will be handled via TLS.</p>\n<p>This service provides:</p>\n<ul>\n<li>Ability to remove / purge / reset Uses UUID's</li>\n</ul>\n","_postman_id":"f86c7be0-9a1e-45b8-90ab-4e41a2c2aa29"},{"name":"/provision/not/","id":"0ead7b73-2578-42bc-b7f8-1d3db2f4ba70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/","description":"<p>Find all non provisioned accounts. This endpoint will return all users not yet provisioned. </p>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","not",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d30f3b4b-370a-44ab-acce-f3399f5809ea","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:25:18 GMT","name":"Date","description":""},{"key":"ETag","value":"\"1vMo5C9I8Z5vCzing5E3+mi3CqxEERGEkgaT63wiuazPEAyQbKuxHRi0r2O+2zXIJzD+SWQvh7AOH1pHdVRB2A==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"corehrId\":\"000003703\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003704\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003706\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003707\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003708\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003709\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003710\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003711\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003712\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003713\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003714\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003715\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003716\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003717\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003718\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003719\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003720\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003721\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003722\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003723\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000013\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000018\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000020\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000021\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000022\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000023\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000025\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000027\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000028\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000030\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000031\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000032\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000035\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000038\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000039\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000041\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000042\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000043\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000044\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000045\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000046\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000047\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000048\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000049\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000050\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000051\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000054\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000055\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000056\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000057\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000058\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000059\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000060\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000061\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000063\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000064\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000065\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000066\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000067\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000069\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000070\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000072\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000073\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000078\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000080\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000081\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000082\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000084\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000085\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000086\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000087\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000088\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000089\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000090\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000091\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000092\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000093\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000094\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000096\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000097\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000098\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000099\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000100\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"0001000\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000101\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000102\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000103\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000104\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000105\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000106\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000107\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000108\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000109\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000110\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000111\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000112\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000113\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000114\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000115\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000117\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/not/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/not/?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"0ead7b73-2578-42bc-b7f8-1d3db2f4ba70"},{"name":"/provision/not/:days","id":"b1a4c4ee-a8b1-452e-a935-f13f74537207","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/10","description":"<p><strong>Optionally</strong> provide number of days, this service is used to offset users start date. Provides ability to determine accounts not yet provisioned in CoreHR for Core|Portal self service access. This service will include employees due to start in the future.</p>\n<p>Allowing the following scenario.</p>\n<ul>\n<li><p>obtain user accounts to be provisioned within the last X number of days, i.e. a start date occurring in the past.</p>\n</li>\n<li><p>obtain user accounts to be provisioned with a future start date, i.e. users starting in the future.</p>\n</li>\n</ul>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","not","10"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8e9c64a4-1b44-42fb-b5e7-7aa05c9fd8f4","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/10"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:30:42 GMT","name":"Date","description":""},{"key":"ETag","value":"\"cSKNv2WwIIh0T+eJ45YnqtVBjBFYZkks1p7Tqg85HR8CDOYFRrykHVYdfY25akVQyWUXfWirPpwnI4ZKalVYEA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"corehrId\":\"000613\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000614\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000615\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000623\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000624\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000660\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000662\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000673\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000674\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000676\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000677\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000679\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000754\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000755\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000756\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000757\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000770\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000771\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000794\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000795\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000796\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000801\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000806\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000825\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000830\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000831\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000883\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000893\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000894\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000897\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000898\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000899\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000900\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000919\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000921\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000934\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000944\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000958\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001027\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001105\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001141\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001330\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"002544\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"002556\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"003292\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"003484\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"003555\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"0208884\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"123\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"123-XYZ\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"609\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"610\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"611\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"612\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"616\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"617\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"618\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"619\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"620\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"621\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"622\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"625\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"638\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"639\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"640\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"642\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"643\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"644\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"645\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"650\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"651\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"652\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"667\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"671\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"675\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"678\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"680\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"694\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"C123456\", \"firstName\": \"DEAN\", \"lastName\": \"M\"}\n,\n{\"corehrId\":\"C123457\", \"firstName\": \"DOM\", \"lastName\": \"GRIFFIN\"}\n,\n{\"corehrId\":\"C464646\", \"firstName\": \"FDS\", \"lastName\": \"FSDF\"}\n,\n{\"corehrId\":\"C555555\", \"firstName\": \"STPEHEN\", \"lastName\": \"195\"}\n,\n{\"corehrId\":\"C876876\", \"firstName\": \"STEPHEN\", \"lastName\": \"NOW\"}\n,\n{\"corehrId\":\"C878778\", \"firstName\": \"SAFDA\", \"lastName\": \"WRWE\"}\n,\n{\"corehrId\":\"C888888\", \"firstName\": \"STEPHEN\", \"lastName\": \"EXTERNAL\"}\n,\n{\"corehrId\":\"C901111\", \"firstName\": \"STEPHEN\", \"lastName\": \"106\"}\n,\n{\"corehrId\":\"C989889\", \"firstName\": \"STEPOHEN\", \"lastName\": \"C\"}\n,\n{\"corehrId\":\"C989898\", \"firstName\": \"STEPHEN\", \"lastName\": \"185\"}\n,\n{\"corehrId\":\"DFLT-9\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"DYLAN1\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"TA0001\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"TA0002\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"TA0004\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 93,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/not/10\"\n      }\n    ]\n}\n"}],"_postman_id":"b1a4c4ee-a8b1-452e-a935-f13f74537207"},{"name":"/provision/user","id":"bf215f61-c753-4d6b-9fd2-7df5b0cc3872","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"100\",\n  \"loginid\" : \"darragh.duffy@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user","description":"<p>Provisions a new CorePortal account;  on successful completion, users will have ability to access CoreHR's self service features via CorePortal. As noted in the introduction to the provisioning module, where an IDM or third party application understands CorePortal privileges this module will accept these privileges. Example provided below includes Users Privilege.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by the /provision/not/ web service.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<ul>\n<li>authType</li>\n</ul>\n<p>This is the authentication type for the employee, the value here should be either <code>inApplicationPassword</code> or <code>LDAP</code>. For all single sign on authenticated accounts use LDAP. For non single sign on account set this value to inApplicationPassword this then requires the password attribute to be set. Leaving this parameter null indicates to CoreHR that the user account should pick up the system default authentication type, this parameter can be found in CoreHR as 'authtype'.</p>\n<ul>\n<li>password</li>\n</ul>\n<p>This attribute is required when authType is  <code>inApplicationPassword</code>. The value here will be validated against the password policy in CoreHR.</p>\n<ul>\n<li>privileges</li>\n</ul>\n<p>An array, each array object contains a privilege.</p>\n<p><strong>Mandatory</strong></p>\n<ul>\n<li>corehrid</li>\n<li>loginid</li>\n<li>password (only when authType is inApplicationPassword)</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"675f4448-3d0e-4a8f-87b1-f533fe9e790d","name":"400 - Bad Request - Validation Failed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.smith@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:38:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. If attempting to update use PATCH method\" }}\n"},{"id":"d35c9008-7dcc-457a-9294-093ab6d06737","name":"201 - Created - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.smith@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 05 Oct 2016 16:35:54 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"d6b7b392-b568-434b-aa7d-a0c2c0e46a1d","name":"400 - Bad Request - ","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:36:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing\" }}\n"}],"_postman_id":"bf215f61-c753-4d6b-9fd2-7df5b0cc3872"},{"name":"/provision/user","id":"b967fde7-937c-44a6-806d-627f5c44d2eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"developmentTeam\"},\n            {\"privilege\" : \"VPNGroup\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user","description":"<p>Provides ability to patch (amend) an existing account. Account must have previously been provisioned, this means corehrID must previously have been generated via <code>POST</code>. In general this service supports Single Sign On style accounts. </p>\n<p>It is possible to use this service with non SSO accounts, in such cases all parameters are mandatory including password and explcitly setting authType to <code>inApplicationPassword</code>. In cases where <code>authType</code> is not provided the account is assumed to be Single Sign On.</p>\n<p>The use cases for this web service includes </p>\n<ul>\n<li>loginId changing</li>\n</ul>\n<p>Where a user changes their loginId e.g. their name changes because of marriage, this web service faciliates this change of ID.</p>\n<ul>\n<li>privilege changing</li>\n</ul>\n<p>executing this web service will remove all current privileges and replace with the privileges array. It is therefore possible to use this web service to revoke all privileges for a user by sending a blank array of privileges.</p>\n<p>Example provided below changes both Login ID and privileges.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by the /provision/not/ web service.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<ul>\n<li>authType</li>\n</ul>\n<p>This is the authentication type for the employee, the value here should be either <code>inApplicationPassword</code> or <code>LDAP</code>. For all single sign on authenticated accounts use LDAP. For non single sign on account set this value to <code>inApplicationPassword</code> this then requires the password attribute to be set. In cases where this attribute is null, assumpetion is Single Sign On.</p>\n<ul>\n<li>password</li>\n</ul>\n<p>This attribute is required when authType is  <code>inApplicationPassword</code>. The value here will be validated against the password policy in CoreHR. </p>\n<ul>\n<li>privileges</li>\n</ul>\n<p>An array, each array object contains a privilege. If this is blank all privs are revoked.</p>\n<p><strong>Mandatory</strong></p>\n<ul>\n<li>corehrid</li>\n<li>loginid</li>\n<li>password (only when authType is inApplicationPassword)</li>\n</ul>\n<p>For Non SSO Accounts <strong>all</strong> parameters are mandatory. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f053d6a2-5ce9-451e-a7e7-dc689d1ad660","name":"201 - Created - Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"developmentTeam\"},\n            {\"privilege\" : \"VPNGroup\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}//provision/user"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 05 Oct 2016 16:42:46 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"b967fde7-937c-44a6-806d-627f5c44d2eb"},{"name":"/provision/user/status/:id","id":"b402db20-cfbc-474a-9aad-d04cc6e9cca5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100","description":"<p>Obtain user account status indicator; determining if an account is active or not. The parameter <code>id</code> can be users coreHRID or account username.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","status","100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"90ccca2f-91e4-4ae1-a320-cae0feda57d6","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:31:30 GMT","name":"Date","description":""},{"key":"ETag","value":"\"sGx4HzAXH89DhDNFtkOUMSQlXB866SC59AcS3OozZImkugcv3VxH0Fu28Ggg8u1MKe9Q0te3IaT/rcBLEIZxsA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"isAccountActive\":\"Yes\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/user/status/100\"\n      }\n    ]\n}\n"}],"_postman_id":"b402db20-cfbc-474a-9aad-d04cc6e9cca5"},{"name":"/provision/user/authtype/:id","id":"3ccca6de-2ae9-44cd-a0a8-313827b6a49f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/authtype/100","description":"<p>Obtain user authentication type. Response indicates either <code>LDAP</code> or <code>inApplicationPassword</code>. </p>\n<p>The parameter <code>id</code> can be users coreHRID or loginID.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","authtype","100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ec8dbfd5-2145-443d-9a24-d9c9cf5feba7","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/authtype/100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 15 May 2017 14:44:26 GMT","name":"Date","description":""},{"key":"ETag","value":"\"mZYGBTCc1ovUVzZXDgF+YJsBaIu7WlfXQxZde8j3GjOesDyaERKI0JiZmy5tZzqcbhUZA5zogDX+iGxiFiz7JQ==-gzip\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"authType\":\"inApplicationPassword\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://localhost/ws/tenant/corehr/v1/provision/user/authtype/100\"\n      }\n    ]\n}\n"}],"_postman_id":"3ccca6de-2ae9-44cd-a0a8-313827b6a49f"},{"name":"/provision/user/status/:id","id":"653e61a5-fa03-45f0-a9fe-b86d4ae10191","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"active\" : \"N\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100","description":"<p>Provides an ability to activate or deactivate an account. Setting an account to be deactive results in a user not being allowed sign into CoreHR self Service module CorePortal. This does not apply to SAML authentication. Credentials and access needs to be checked by the SAML IDP.</p>\n<p>When an account is created via <code>POST</code> <code>/provision/user</code> the account is assumed to be active. You do not need to execute this web services to activate an account once it has been created. However if you execute this web services and set active to N then you must execute this web services again to re-activate the account by setting active to Y.</p>\n<p>The id parameter can be either coreHRID or the username associated with the account. The Active parameter must be N or Y.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","status","100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"75883d0d-cf23-4804-a2bd-d5ab0afc335a","name":"400 - Validation Failed","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\"active\" : \"N\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/1001"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 22 Oct 2016 19:02:41 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"007\",\"errorMessage\" :\"Validation failed. Either user account does not exist or request data is invalid.\" }}\n"},{"id":"cca980bd-4f0b-436e-9fd2-d1ffa3b65277","name":"201 - Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\"active\" : \"N\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 22 Oct 2016 19:02:16 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"cf854e38-3907-4195-b7af-0428cfd7eb65","name":"200 - Account Active","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 22 Oct 2016 18:04:52 GMT","name":"Date","description":""},{"key":"ETag","value":"\"L/idwKxNGWvlkQGQ4j3vC0+brkecdYNqpY2o9nJxaN5RiPktu/5d3OJrX6yJIWMlOB0ocscXHR0OVsUrx7Decw==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"{\"items\":[{\"isaccountactive\":\"Yes\"}],\"hasMore\":false,\"limit\":100,\"offset\":0,\"count\":1,\"links\":[{\"rel\":\"self\",\"href\":\"http://localhost:8585/ws/corehr/v1/provision/user/status/100\"},{\"rel\":\"describedby\",\"href\":\"http://localhost:8585/ws/corehr/metadata-catalog/v1/provision/user/status/item\"},{\"rel\":\"first\",\"href\":\"http://localhost:8585/ws/corehr/v1/provision/user/status/100\"}]}"}],"_postman_id":"653e61a5-fa03-45f0-a9fe-b86d4ae10191"},{"name":"/provision/user/privilege","id":"9195e76c-a731-419d-893e-e75f7160ab24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privilege\" : \"hrAdmin\"\n  }\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/privilege","description":"<p>Provisions a new privilege for a user. This service allows one new privilege to be assigned to the user account. In addition this service assumes an account has already been provisioned. Validation is performed on the account confirming existence. </p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by the /provision/not/ web service.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<ul>\n<li>privilege</li>\n</ul>\n<p>a new privilege for the user.</p>\n<p><strong>Special Usage Note</strong></p>\n<p>use one of the following combinations, <strong>do not</strong> use all three fields. If you do an error will be returned.</p>\n<ul>\n<li>corehrid and a privilege</li>\n</ul>\n<p>or</p>\n<ul>\n<li>loginid and a privilege</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","privilege"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7fe76bc0-ad42-49e7-9bf6-3f4dd414ed3b","name":"400 - Bad Request - Validation Failed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"  {\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privilege\" : \"hrAdmin\"\n  }\n  "},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/privilege"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:49:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"006\",\"errorMessage\" :\"Validation failed. Invalid fields used\" }}\n"},{"id":"b734de30-3e30-47bd-84ea-adba22201fb3","name":"201 - Created - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"  {\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privilege\" : \"hrAdmin\"\n  }\n  "},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/privilege"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:47:41 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"9195e76c-a731-419d-893e-e75f7160ab24"},{"name":"/provision/user/privilege?id","id":"0cdd5c23-6cb7-4cf3-812c-ed57fa2a79e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege?id=","description":"<p><strong>CoreHR v25.0.7 required</strong></p>\n<p>This service will list all currently granted privileges associated with a user. </p>\n<p><strong>Parameter</strong></p>\n<p>id can be either the users  <code>loginid</code> or the users <code>corehrid</code> (personnelNumber).</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","provision","user","privilege"],"host":["{{url}}"],"query":[{"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"0cdd5c23-6cb7-4cf3-812c-ed57fa2a79e6"},{"name":"/provision/user/privilege/revoke/all","id":"a0555427-b712-4b48-9587-59e20ac8b7b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"corehrid\" : \"5990404\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all","description":"<p><strong>CoreHR v25.0.7 required</strong></p>\n<p>Provides an ability to revoke <strong>all</strong> user privileges associated with the user account. </p>\n<p>A privilege here relates to all granted menu security items i.e. feature access and <strong>not</strong> access to a specific user, while access to the user is not revoked the privilege to use the feature is revoked. </p>\n<p>NB this revokes <strong>all</strong>. </p>\n<p>Other attributes associated with the user Account are not affected e.g. account will still exist, authentication type will remain as is, and password for non SSO accounts remain in place etc.</p>\n<p>This service assumes an account has already been provisioned. Validation is performed on the account confirming existence. This is a simple purge request, in cases where the user has no privileges, this service will not respond with an error, instead a successful response is returned.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by using the new filter services.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<p><strong>Special Usage Note</strong></p>\n<p>use one of the following combinations, <strong>do not</strong> use both fields. If you do an error will be returned.</p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>or</p>\n<ul>\n<li>loginid</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","provision","user","privilege","revoke","all"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"07b158ba-5726-4f95-b855-c4fb87640df3","name":"Successful Revoke All - LoginID","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"loginid\" : \"darragh.duffy@corehr.com\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 29 Mar 2018 08:03:00 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-000edc6d","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"ae8e5a90-fd7d-4b61-b271-1f06a3b45056","name":"Invalid Request used both identifiers","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"corehrid\" : \"XXXX\", \"loginid\" : \"marco.donnino\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 29 Mar 2018 07:48:58 GMT","name":"Date","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-000ed268","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"006\",\"errorMessage\" :\"Validation failed. Invalid fields used\" }}\n"},{"id":"cd7dfb92-1d61-44b0-b402-7243217b203b","name":"Successful Revoke All - CoreHRID","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"corehrid\" : \"5990404\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 29 Mar 2018 07:45:42 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-000ed03f","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"ff3191ac-dee6-4980-9d3c-d1e0e4f5d7ab","name":"Invalid User ID","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"corehrid\" : \"XXXX\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 29 Mar 2018 07:48:13 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-000ed1ed","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"004\",\"errorMessage\" :\"Validation failed. User account does not exist\" }}\n"}],"_postman_id":"a0555427-b712-4b48-9587-59e20ac8b7b6"}],"id":"762d4f81-3a5f-483e-a9d8-8f51500e403d","description":"<p>Provisioning facility allowing Core|Portal accounts to be provisioned. Core|Portal is the self service module within CoreHR. A employee may have a record in CoreHR, this does not automatically suggest same employee has access to self service features via CorePortal. In order to access CorePortal a self service account is required. This module provides a web service mechanism to provision an employee.</p>\n<p>In Summary provisioning provides ability to</p>\n<ul>\n<li>Determine accounts yet to be provisioned</li>\n<li>Determine accounts yet to be provisioned within X number of days (including future start dates)</li>\n<li>Provision a new account</li>\n<li>Provision a new account with privileges</li>\n<li>Update existing accounts privileges</li>\n<li>Add additional privilege to an account</li>\n<li>Set authentication Type in cases where a mix of Single Sign On, SAML and inApplicationPasswords exist</li>\n</ul>\n<p><strong>Contraints, Limitations &amp; Mandatory</strong></p>\n<p>Accounts to be provisioned simply indicates accounts (employees) not yet provisioned. These accounts must satisfy following criteria </p>\n<ul>\n<li>Active Employee Record</li>\n</ul>\n<p>indicates employees record must not have a date left.</p>\n<p>Do not assume logic applies indicating certain categories of employees are allowed access and others are not allowed. No other conditions are applied. Additional attributes are possible to add to the response to help an IDM provider make this decision, CoreHR will work with an IDM provider to best determine. </p>\n<p>CorePortal privileges can be assigned by the IDM using the privileges array (example below). Where an IDM can not determine privileges, this provisioning web service module integrates with the CoreHR user profile matrix, and in cases where this matrix is not configured the fall back is all users are granted a default access profile typically \"coreportal_employee\".</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001  Mandatory fields are missing</li>\n<li>400 / 002  Validation failed. If attempting to update use PATCH method</li>\n<li>400 / 003  Unexpected error, unable to provision account</li>\n<li>404 / 004 Validation failed. User account does not exist</li>\n<li>404 / 005 Validation failed. Account must first be provisioned, use POST method</li>\n<li>400 / 006  Validation failed. Invalid fields used</li>\n<li>400 / 007  Validation failed. Either user account does not exist or request data is invalid.</li>\n<li>400 / 008  Validation failed. Authtype must be either LDAP or inApplicationPassword. If choosing inApplicationPassword a password is required</li>\n<li>400 / 009 Validation failed. Supplied password has not passed password</li>\n<li><ul>\n<li>400 / 010 Validation failed, type is mandatory (must email or all), and id should be populated when type is email, when type is all no id should be provided. The JSON keys are case sensitve, type and id should be lower case.</li>\n</ul>\n</li>\n<li><ul>\n<li>404 / 011 Nothing found for this email address.</li>\n</ul>\n</li>\n</ul>\n","_postman_id":"762d4f81-3a5f-483e-a9d8-8f51500e403d"},{"name":"Reference","item":[{"name":"/reference/","id":"a43cf69c-b592-4032-9896-288918c5e5c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/","description":"<p>Get a list of registered / whitelisted referene types. Tenant has an ability to define reference types available for creating / updating. A tenant may not allow all references to be updated or created, this base URI provides the list of valid reference types. In cases where server returns validation errors, refer to this list to confirm the reference type is whitelisted.</p>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter. </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"24f9d87e-7559-4051-92f8-fdc94da7151d","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:32:48 GMT","name":"Date","description":""},{"key":"ETag","value":"\"c+fK0tVaqmJ9e4v3iAcjrkNwTm99RSdRJXXfABfFEcdajSFUsEcGTUC0aJFyIg7ll32J/RQTlDd4wRl99bLqZQ==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"ACCI\", \"description\" : \"ACCIDENT CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACCSEV\", \"description\" : \"Accident Severity Code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACDIS1\", \"description\" : \"Academic Discipline 1\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACDIS2\", \"description\" : \"Academic Discipline 2\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACSTAT\", \"description\" : \"Academic Staff Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACT\", \"description\" : \"Activity\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACTINV\", \"description\" : \"Workplace Activity Involved\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACTION\", \"description\" : \"Action\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ADDTYP\", \"description\" : \"Address Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ADMBY\", \"description\" : \"Training Administered By\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"AGERNG\", \"description\" : \"Age Range\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ALLCOD\", \"description\" : \"Allowance Code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"APP\", \"description\" : \"Appointment code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"APPR\", \"description\" : \"APPRAISAL CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"APPTYP\", \"description\" : \"Approval Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"AREA\", \"description\" : \"Area\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ASCAT\", \"description\" : \"Academic Staff Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ASPOSE\", \"description\" : \"Aspose Document Type Mapping\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"AWRD\", \"description\" : \"Pdp Recognition Awards\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"BCKWRK\", \"description\" : \"Back At Work Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"BEN\", \"description\" : \"BENEFIT CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"BUSNAT\", \"description\" : \"Business Nature Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CARPRF\", \"description\" : \"Test\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CATG\", \"description\" : \"Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CERT\", \"description\" : \"CERTIFICATE TYPE\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFATTY\", \"description\" : \"Conference Attendance Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFLEVL\", \"description\" : \"Conference Level\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFORGB\", \"description\" : \"Conference Organising Body\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFSTAT\", \"description\" : \"Conference Status\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFTYPE\", \"description\" : \"Conference Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CITZ\", \"description\" : \"Citizenship Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CLINAC\", \"description\" : \"Clinical Access\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CNTCOD\", \"description\" : \"Country\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COMCAT\", \"description\" : \"Employee Company Categories\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CONTRT\", \"description\" : \"Contract Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CONTYP\", \"description\" : \"Contact Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COST\", \"description\" : \"Cost centre\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COSTCL\", \"description\" : \"Cost Class\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COUNTY\", \"description\" : \"County Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CPCRT\", \"description\" : \"Crew Plan Rule Day Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CPNR\", \"description\" : \"Crew Plan Night Allowance Rule Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CRSLVL\", \"description\" : \"Qualification Level\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CRTYP\", \"description\" : \"Clinical Research Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CRYTP\", \"description\" : \"Clinical Research Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CSOI\", \"description\" : \"CSO\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DAYRTN\", \"description\" : \"Days to Return Codes (OccInj)\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DEPN\", \"description\" : \"DEPENDENTS\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DEPT\", \"description\" : \"Department\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DESC\", \"description\" : \"Description\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DISABL\", \"description\" : \"Disability Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DIV\", \"description\" : \"Division\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DIVER\", \"description\" : \"Diversity Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DOCTYP\", \"description\" : \"Document Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EDUC\", \"description\" : \"EDUCATION/SKILL CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EMPL\", \"description\" : \"EMPLOYMENT HISTORY\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EMPS\", \"description\" : \"Employment status\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ETHNIC\", \"description\" : \"Ethnicity\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EVTCAT\", \"description\" : \"Event Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EXCDVL\", \"description\" : \"Core Expense Code Validation\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EXPS\", \"description\" : \"Expenses\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EXTPER\", \"description\" : \"External Person Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FAMSTS\", \"description\" : \"Family Status Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FBGRP\", \"description\" : \"Flexible Benefit Groups\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FBLNK\", \"description\" : \"Flexible Benefit Links\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FECBCK\", \"description\" : \"FEC Background\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FECCLA\", \"description\" : \"FEC Classification\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FECTYP\", \"description\" : \"FEC Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FEES\", \"description\" : \"Fees\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FEMRPT\", \"description\" : \"FEM Report Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FIRE\", \"description\" : \"FIRE ZONE CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FIRPNT\", \"description\" : \"Fire Point\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FORM\", \"description\" : \"Form Name\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FTEHRS\", \"description\" : \"FTE Hour Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FUNDAG\", \"description\" : \"Funding Agency Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FUNDSC\", \"description\" : \"Funding Source\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FUNTYP\", \"description\" : \"Funding Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"GNDRID\", \"description\" : \"Gender Identity\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"GRIPID\", \"description\" : \"Group ID\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"GRPID\", \"description\" : \"Group ID\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HAZZ\", \"description\" : \"HAZZARD CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HONCON\", \"description\" : \"Honorary Contract\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HOUR\", \"description\" : \"Hours\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSASRC\", \"description\" : \"Health Safety Action Source\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSCON\", \"description\" : \"Health Safety Contractor\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSNT\", \"description\" : \"Health Safety Notice Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSPRI\", \"description\" : \"Health Safety Action Priority\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSSRC\", \"description\" : \"Health Safety Source Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSSTA\", \"description\" : \"Health Safety Action Status\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ILINCN\", \"description\" : \"Industry Nature of Contact\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ILINCT\", \"description\" : \"Industry Categories\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ILOC\", \"description\" : \"Input location\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INCVIO\", \"description\" : \"Incidents of Violence Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INDCAT\", \"description\" : \"Employee Industry Categories\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INJBOD\", \"description\" : \"Injured BOdy Part Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INJCAU\", \"description\" : \"Cause of Injury Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"JOBCAT\", \"description\" : \"Job Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"JOBCOD\", \"description\" : \"Job Code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"JOBS\", \"description\" : \"Job code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"LENTIM\", \"description\" : \"Length of Time\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"LEVEL\", \"description\" : \"Level Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"a43cf69c-b592-4032-9896-288918c5e5c0"},{"name":"/reference/type/:atype","id":"30baaaa9-77fc-4aeb-99c0-de6fd9472a13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Returns a list of codes and descriptions for a reference type, a reference type could be <code>COST</code>, <code>DEPT</code> etc. Reference Types are typically upper case. As already noted reference types can be whitelisted by a tenant.</p>\n<p>For a full list of available reference types use /reference/</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"cbf86e8a-e007-49a9-95c1-b7289bcde973","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:35:18 GMT","name":"Date","description":""},{"key":"ETag","value":"\"ZInz0RdXlDlkFr0RxOWVt0Xe8DrUJnBC2+V/aZmUKdeVao7Vnt+tTjTY7a88qxAW/95HgOuX3zxv4wgdqSdatg==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"COST\", \"code\": \"1\", \"description\": \"Cost Centre Web Services 1\"}\n,\n{\"type\":\"COST\", \"code\": \"10\", \"description\": \"Cost Centre Web Services 10\"}\n,\n{\"type\":\"COST\", \"code\": \"100A\", \"description\": \"Cost Centre Web Services 100A\"}\n,\n{\"type\":\"COST\", \"code\": \"111\", \"description\": \"Cost Centre Web Services 111\"}\n,\n{\"type\":\"COST\", \"code\": \"123456789\", \"description\": \"Cost Centre Web Services 123456789\"}\n,\n{\"type\":\"COST\", \"code\": \"149\", \"description\": \"Cost Centre Web Services 149\"}\n,\n{\"type\":\"COST\", \"code\": \"159\", \"description\": \"Cost Centre Web Services 159\"}\n,\n{\"type\":\"COST\", \"code\": \"20\", \"description\": \"Cost Centre Web Services 20\"}\n,\n{\"type\":\"COST\", \"code\": \"200A\", \"description\": \"Cost Centre Web Services 200A\"}\n,\n{\"type\":\"COST\", \"code\": \"21\", \"description\": \"Cost Centre Web Services 21\"}\n,\n{\"type\":\"COST\", \"code\": \"22\", \"description\": \"Cost Centre Web Services 22\"}\n,\n{\"type\":\"COST\", \"code\": \"222\", \"description\": \"Cost Centre Web Services 222\"}\n,\n{\"type\":\"COST\", \"code\": \"23\", \"description\": \"Cost Centre Web Services 23\"}\n,\n{\"type\":\"COST\", \"code\": \"24\", \"description\": \"Cost Centre Web Services 24\"}\n,\n{\"type\":\"COST\", \"code\": \"25\", \"description\": \"Cost Centre Web Services 25\"}\n,\n{\"type\":\"COST\", \"code\": \"26\", \"description\": \"Cost Centre Web Services 26\"}\n,\n{\"type\":\"COST\", \"code\": \"27\", \"description\": \"Cost Centre Web Services 27\"}\n,\n{\"type\":\"COST\", \"code\": \"28\", \"description\": \"Cost Centre Web Services 28\"}\n,\n{\"type\":\"COST\", \"code\": \"29\", \"description\": \"Cost Centre Web Services 29\"}\n,\n{\"type\":\"COST\", \"code\": \"2908100\", \"description\": \"Cost Centre Web Services 2908100\"}\n,\n{\"type\":\"COST\", \"code\": \"30\", \"description\": \"Cost Centre Web Services 30\"}\n,\n{\"type\":\"COST\", \"code\": \"300A\", \"description\": \"Cost Centre Web Services 300A\"}\n,\n{\"type\":\"COST\", \"code\": \"356\", \"description\": \"Cost Centre Web Services 356\"}\n,\n{\"type\":\"COST\", \"code\": \"39\", \"description\": \"Cost Centre Web Services 39\"}\n,\n{\"type\":\"COST\", \"code\": \"40\", \"description\": \"Cost Centre Web Services 40\"}\n,\n{\"type\":\"COST\", \"code\": \"451\", \"description\": \"Cost Centre Web Services 451\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC\", \"description\": \"Cost Centre Web Services ABC\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC001\", \"description\": \"Cost Centre Web Services ABC001\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC0010\", \"description\": \"Cost Centre Web Services ABC0010\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC003\", \"description\": \"Cost Centre Web Services ABC003\"}\n,\n{\"type\":\"COST\", \"code\": \"J12345\", \"description\": \"Cost Centre Web Services J12345\"}\n,\n{\"type\":\"COST\", \"code\": \"JKL333\", \"description\": \"Cost Centre Web Services JKL333\"}\n,\n{\"type\":\"COST\", \"code\": \"PROD\", \"description\": \"Cost Centre Web Services PROD\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 33,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/type/COST/\"\n      }\n    ]\n}\n"}],"_postman_id":"30baaaa9-77fc-4aeb-99c0-de6fd9472a13"},{"name":"/reference/type/:atype/:code?","id":"ea71f2ce-6390-434b-b2db-cebb0f404c3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/7001","description":"<p>Returns an individual reference description associated with a reference type and code. A reference type could be <code>COST</code>, <code>DEPT</code> etc. Reference Types are typically upper case. As already noted reference types can be whitelisted by a tenant.</p>\n<p>For a full list of available reference types use /reference/</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference","type","DEPT","7001"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"78b6e508-d25d-4ab5-b5f4-5194b8c8f0ef","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/10"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:35:39 GMT","name":"Date","description":""},{"key":"ETag","value":"\"Q3jVQU2iTQ/v0g70PelGZKl9U6wG1LV/Ns7vRxFBtB7MUyXAAgUcC+nxdBtW/mQMcQPoQhSS1jjRtrAA4a7uzQ==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"COST\", \"code\": \"10\", \"description\": \"Cost Centre Web Services 10\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/type/COST/10\"\n      }\n    ]\n}\n"}],"_postman_id":"ea71f2ce-6390-434b-b2db-cebb0f404c3d"},{"name":"/reference/type/:atype","id":"4aa95b5a-562e-4996-a51c-17958509c6aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Department One\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Add reference data based on the reference type, code and description. The reference type is expected in the URL, while the request body should include <code>code</code> and <code>description</code></p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1bfce334-2c19-46c9-9270-b8ac97f89295","name":"201 - Created - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Cost Centre One\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 04 Oct 2016 19:35:00 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"4aa95b5a-562e-4996-a51c-17958509c6aa"},{"name":"/reference/type/:atype","id":"d9df3bb3-d3f9-494e-b3de-e2a918607f36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Department One Data Updated\",\n\"active\" : \"Y\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Ability to update a description associated with an existing reference code / type combination. The reference type is expected in the URL, while the request body should include <code>code</code> and <code>description</code></p>\n<p>It is possible to also provide an <code>active</code> parameter, this parameter can also be provided via the request body must be either Y or N.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2cd6ca2c-a1fe-480d-b3f4-8b6ede11b1f6","name":"Inactive ","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Department One Data Updated\",\n\"active\" : \"N\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS","name":"Access-Control-Allow-Methods-Age","description":"Custom header"},{"key":"Access-Control-Max-Age","value":"600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Sep 2018 13:38:12 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"b0b00ddc-b960-4e37-b4b3-3d5446e9ff5e-000b4a10","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"2f346e8d-a5ff-455f-8774-a4d8c91e5d3a","name":"201 - Created (Updated) - Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Cost Centre One Data Updated\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 04 Oct 2016 19:36:31 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"f82e5e5e-8fbc-4f0a-8185-62f4605d41b1","name":"Active","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Department One Data Updated\",\n\"active\" : \"Y\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS","name":"Access-Control-Allow-Methods-Age","description":"Custom header"},{"key":"Access-Control-Max-Age","value":"600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Sep 2018 13:38:12 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"b0b00ddc-b960-4e37-b4b3-3d5446e9ff5e-000b4a10","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"d9df3bb3-d3f9-494e-b3de-e2a918607f36"},{"name":"/reference/type/:atype","id":"78094f22-47f7-4d10-9e93-16f0df4126eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"value\" : \"1\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Delete reference data based on the reference type, code. The reference type is expected in the URL, while the request body should include <code>code</code>.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c1cb5b21-f4df-4d9a-a40f-f953b862f1fb","name":"200 - Success OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 11 Nov 2016 16:32:50 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"78094f22-47f7-4d10-9e93-16f0df4126eb"}],"id":"059f18ba-c8e7-4e0c-9d23-ca900a78fdb2","description":"<p>Reference module provides ability to view, add and update reference related items for CoreHR e.g. Cost Centre, Department, Projects etc. </p>\n<p><strong>Contraints, Limitations &amp; Mandatory</strong></p>\n<p>The reference module is case senstive, no process converts the type provided into upper or lower case. You must ensure you have set the case correctly, otherwise no data will be returned. Within CoreHR reference types are typically uppercase.</p>\n<p>In most cases a type is mandatory. Following are some examples, for more detail review each URI and method below.</p>\n<p>For endpoint <code>/reference/type/aType/</code> aType is mandatory e.g. <code>/reference/type/COST/</code>. Another example <code>/reference/type/COST/1</code> will return Reference Type COST where the cost centre code is 1. For <code>/reference/types/</code> no type is required. </p>\n<p>Further information per method below.</p>\n<p><strong>Limitations</strong></p>\n<p>Description max length - 40 Characters</p>\n<p>Code max length - 13 Characters</p>\n<p><code>WRKGRP</code> only GETS are supported, POST, PATCH and DELETE are not supported.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001 Mandatory fields are missing</li>\n<li>400 / 002 Validation failed. If attempting to update use PATCH method</li>\n<li>404 / 003 Validation failed. Reference type does not exist</li>\n<li>400 / 004 Validation failed. Sanitization of data failed, ensure field lengths are correct</li>\n<li>400 / 005 Validation failed. Reference code does not exist. If attempting to add use POST method.</li>\n<li>400 / 006 Validation failed. Validation failed. Reference type and code do not exist.</li>\n<li>400 / 007 Validation failed. Validation failed. Active Indicator can only be  Y or N.</li>\n</ul>\n<p>Defined below are the endpoints, sample requests and responses. </p>\n","event":[{"listen":"prerequest","script":{"id":"45c95afc-98cb-4937-9268-64d10ebd9a10","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f2ac59d2-12d0-4183-89cb-3c2a75dd6cd9","type":"text/javascript","exec":[""]}}],"_postman_id":"059f18ba-c8e7-4e0c-9d23-ca900a78fdb2"},{"name":"User Defined Fields","item":[{"name":"/udf/user/:udf_type","id":"1a6a912f-8346-4d6b-b702-811ee0422b02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer 9m1zDcUnJrxvkqTfEsTOfQ.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"\",\n    \"text2\": \"\",\n    \"text3\": \"\",\n    \"text4\": \"\",\n    \"text5\": \"\",\n    \"text6\": \"\",\n    \"text7\": \"\",\n    \"text8\": \"\",\n    \"text9\": \"\",\n    \"text10\": \"\",\n    \"text11\": \"\",\n    \"text12\": \"\",\n    \"date1\": \"14-AUG-2017\",\n    \"date2\": \"\",\n    \"user_code\": \"EE\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20","description":"<p><strong>Creating a new UDF Type Record for a user</strong></p>\n<p>Adding a new User record for a UDF Type requires the following fields. UDF Type code is mandatory and specified as part of the URL.</p>\n<p>The rest of the fields are provided as JSON in the request body. Un-used/empty fields should be left blank. Successful inserts results in a JSON Response object with success value of true. Also included in the JSON Response is the ws_id which is the unique Web Service ID that can be used to identify this specific record.</p>\n<p>Fields are sent in the JSON are as in the table below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personnel_no</td>\n<td>Character</td>\n<td>10</td>\n<td>Yes ¹</td>\n</tr>\n<tr>\n<td>appointment_id</td>\n<td>Character</td>\n<td>20</td>\n<td>Yes ¹</td>\n</tr>\n<tr>\n<td>user_code</td>\n<td>Character</td>\n<td>6</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date1</td>\n<td>Date ²</td>\n<td>11</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date2</td>\n<td>Date ²</td>\n<td>11</td>\n<td>No</td>\n</tr>\n<tr>\n<td>text1,text2...text12 ³</td>\n<td>Defined by type</td>\n<td>4000 ¬</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><p>¹ Either <code>personnel_no</code> OR <code>appointment_id</code> are mandatory.</p>\n<p>² Date1 and Date2 are input in the format DD-MON-RRRR.</p>\n<p>³ Text1 to Text12 must ALWAYS be provided. If the field is not being used for the UDF Type use a blank value string e.g. \"\".</p>\n<p>¬ Text1 to Text12 field requirements are defined by the UDF Type configuration in CoreHR. Text fields can be marked as mandatory/optional and of specific data types including: </p>\n<ol>\n<li>Text - to a maximum of 4000 characters long.</li>\n<li>Number - number values only</li>\n<li>Date required to be in the format DD-MON-YYYY.</li>\n<li>List - Based on the allowed list for the UDF Type as configured in CoreHR.</li>\n</ol>\n<p><strong>Response Object</strong>\nSample responses are shown to the right under different conditions.</p>\n<p>A response objects is always provided and within success will either be <code>true</code>. In which case as ws_id (unique web service identifier that allows us to refer back to this record). </p>\n<p>Alternatively, the success value can be <code>false</code> if this is the cause an errorCode and errorMessage are provided. Additional error details - if the error pertains to a specific value in the body - is provided in the validationError object. This will contain one or more JSON objects relating to each specific error. The param_name will contain the field the validation error relates to the field_name is the label of the field used in CoreHR and the <code>message</code> will contain a detailed explanation of what validation is failing.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code. These are shared by all these UDF endpoints and explained in the Error Codes section at the start of the UDF documentation.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","udf","user","AB20"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8b2ee312-bf4d-4c16-a820-76f593e82b11","name":"1. Successful date fields example","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer _QsnRadImZrbh8w9_4B6UA.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"1409000\",\n    \"appointment_id\": \"\",\n    \"text1\": \"27-JAN-2017\",\n    \"text2\": \"24-FEB-2017\",\n    \"text3\": \"31-MAR-2017\",\n    \"text4\": \"28-APR-2017\",\n    \"text5\": \"27-MAY-2017\",\n    \"text6\": \"30-JUN-2017\",\n    \"text7\": \"28-JUL-2017\",\n    \"text8\": \"25-AUG-2017\",\n    \"text9\": \"29-SEP-2017\",\n    \"text10\": \"28-OCT-2017\",\n    \"text11\": \"24-NOV-2017\",\n    \"text12\": \"29-DEC-2017\",\n    \"date1\": \"\",\n    \"date2\": \"\",\n    \"user_code\": \"\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"Keep-Alive","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Fri, 11 Aug 2017 16:05:48 GMT","description":""},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"41431680-ec3d-4690-8100-5e5ec94a3c78-00002f6a","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true, \"ws_id\":\"2017081171563091\"}}\n"},{"id":"c7ee507e-08a7-459d-8e9b-2b69ddb7fef2","name":"2. Validation Fail","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer _QsnRadImZrbh8w9_4B6UA.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"1409000\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"27-JAN-2017\",\n    \"text2\": \"24-FEB-2017\",\n    \"text3\": \"31-MAR-2017\",\n    \"text4\": \"28-APR-2017\",\n    \"text5\": \"27-MAY-2017\",\n    \"text6\": \"30-JUN-2017\",\n    \"text7\": \"28-JUL-2017\",\n    \"text8\": \"25-AUG-2017\",\n    \"text9\": \"29-SEP-2017\",\n    \"text10\": \"28-OCT-2017\",\n    \"text11\": \"24-NOV-2017\",\n    \"text12\": \"29-DEC-2017\",\n    \"date1\": \"\",\n    \"date2\": \"\",\n    \"user_code\": \"\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"Keep-Alive","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Fri, 11 Aug 2017 16:14:20 GMT","description":""},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"41431680-ec3d-4690-8100-5e5ec94a3c78-00002f6d","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Provide either a personnel number or an Appointment ID. It is not possible to use both.\" }}\n"},{"id":"ce162074-2493-47a8-aab7-d086debdb903","name":"3. Sanatization Fail Example","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer _QsnRadImZrbh8w9_4B6UA.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"1409000\",\n    \"appointment_id\": \"\",\n    \"text1\": \"27\",\n    \"text2\": \"24\",\n    \"text3\": \"31\",\n    \"text4\": \"28\",\n    \"text5\": \"27\",\n    \"text6\": \"30\",\n    \"text7\": \"28\",\n    \"text8\": \"25\",\n    \"text9\": \"29\",\n    \"text10\": \"28\",\n    \"text11\": \"24\",\n    \"text12\": \"29\",\n    \"date1\": \"\",\n    \"date2\": \"\",\n    \"user_code\": \"\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"close","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Fri, 11 Aug 2017 16:16:01 GMT","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"41431680-ec3d-4690-8100-5e5ec94a3c78-00002f6f","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[],"responseTime":null,"body":"\n\n      { \"Response\": {\n         \"success\"         : false,\n         \"errorCode\"       : \"998\",\n         \"errorMessage\"    : \"UDF Type validation errors. Review validationError object for more details of data errors for this UDF type.\",\n         \"validationError\"   : [\n\n  {\n    \"param_name\"   : \"text1\",\n    \"field_name\"   : \"COREHR 7600\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text2\",\n    \"field_name\"   : \"text2\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text3\",\n    \"field_name\"   : \"text3\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text4\",\n    \"field_name\"   : \"text4\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text5\",\n    \"field_name\"   : \"text5\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text6\",\n    \"field_name\"   : \"text6\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text7\",\n    \"field_name\"   : \"text7\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text8\",\n    \"field_name\"   : \"text8\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text9\",\n    \"field_name\"   : \"text9\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text10\",\n    \"field_name\"   : \"text10\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text11\",\n    \"field_name\"   : \"text11\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text12\",\n    \"field_name\"   : \"text12\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n]\n      }\n   }\n"},{"id":"ea1623c4-ee34-405e-9816-a78510f805fb","name":"4. User Code example to use pre-defined data in all text fields","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer 9m1zDcUnJrxvkqTfEsTOfQ.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"\",\n    \"text2\": \"\",\n    \"text3\": \"\",\n    \"text4\": \"\",\n    \"text5\": \"\",\n    \"text6\": \"\",\n    \"text7\": \"\",\n    \"text8\": \"\",\n    \"text9\": \"\",\n    \"text10\": \"\",\n    \"text11\": \"\",\n    \"text12\": \"\",\n    \"date1\": \"14-AUG-2017\",\n    \"date2\": \"\",\n    \"user_code\": \"EE\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"Keep-Alive","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Mon, 14 Aug 2017 12:10:39 GMT","description":""},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"f38c5093-1095-4e7e-be35-0074f4d4eb81-0000002c","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"ZtfR7qZUUleahU","key":"__zlcmid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"GA1.2.345263352.1459269949","key":"_ga"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"154209639.534d7e038246e171d1efdb1f4bc83822.1459269952833.1484837065141.1494406860445.32","key":"__hstc"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"534d7e038246e171d1efdb1f4bc83822","key":"hubspotutk"}],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true, \"ws_id\":\"2017081471563097\"}}\n"}],"_postman_id":"1a6a912f-8346-4d6b-b702-811ee0422b02"},{"name":"/udf/user/:udf_type","id":"3a40a4a4-d4cd-4423-94ff-94bd2e6651cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer 9m1zDcUnJrxvkqTfEsTOfQ.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"\",\n    \"text2\": \"\",\n    \"text3\": \"\",\n    \"text4\": \"\",\n    \"text5\": \"\",\n    \"text6\": \"\",\n    \"text7\": \"\",\n    \"text8\": \"\",\n    \"text9\": \"\",\n    \"text10\": \"\",\n    \"text11\": \"\",\n    \"text12\": \"\",\n    \"date1\": \"14-AUG-2017\",\n    \"date2\": \"\",\n    \"user_code\": \"EE\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20","description":"<p><strong>Updating existing UDF Type Record for a user</strong></p>\n<p>Updating a user record for a UDF Type uses the personnel_no/appoinment_id, date1, date2 and the udf_type to determine if the record is an update. i.e. If there is an existing record(s) with the same person/appointment and date1 and date2 then it is an update and the existing record(s) will be patched (updated) to the new values provided in the JSON code. UDF Type is of course mandatory and specified as part of the URL.</p>\n<p>The rest of the fields are provided as JSON in the request body. Un-used/empty fields should be left blank. Successful updates result in a JSON Response object with success value of true.</p>\n<p>Fields are sent in the JSON are as in the table below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personnel_no</td>\n<td>Character</td>\n<td>10</td>\n<td>Yes ¹</td>\n</tr>\n<tr>\n<td>appointment_id</td>\n<td>Character</td>\n<td>20</td>\n<td>Yes ¹</td>\n</tr>\n<tr>\n<td>user_code</td>\n<td>Character</td>\n<td>6</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date1</td>\n<td>Date ²</td>\n<td>11</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date2</td>\n<td>Date ²</td>\n<td>11</td>\n<td>No</td>\n</tr>\n<tr>\n<td>text1,text2...text12 ³</td>\n<td>Defined by type</td>\n<td>4000 ¬</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><p>¹ Either <code>personnel_no</code> OR <code>appointment_id</code> are mandatory.</p>\n<p>² Date1 and Date2 are input in the format DD-MON-RRRR.</p>\n<p>³ Text1 to Text12 must ALWAYS be provided. If the field is not being used for the UDF Type use a blank value string e.g. \"\".</p>\n<p>¬ Text1 to Text12 field requirements are defined by the UDF Type configuration in CoreHR. Text fields can be marked as mandatory/optional and of specific data types including: </p>\n<ol>\n<li>Text - to a maximum of 4000 characters long.</li>\n<li>Number - number values only</li>\n<li>Date required to be in the format DD-MON-YYYY.</li>\n<li>List - Based on the allowed list for the UDF Type as configured in CoreHR.</li>\n</ol>\n<p><strong>Response Object</strong>\nSample responses are shown to the right under different conditions.</p>\n<p>A response objects is always provided and within success will either be <code>true</code>. In which case as ws_id (unique web service identifier that allows us to refer back to this record). </p>\n<p>Alternatively, the success value can be <code>false</code> if this is the cause an errorCode and errorMessage are provided. Additional error details - if the error pertains to a specific value in the body - is provided in the validationError object. This will contain one or more JSON objects relating to each specific error. The param_name will contain the field the validation error relates to the field_name is the label of the field used in CoreHR and the <code>message</code> will contain a detailed explanation of what validation is failing.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code. These are shared by all these UDF endpoints and explained in the Error Codes section at the start of the UDF documentation.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","udf","user","AB20"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"64c79480-9a57-434b-8445-895a76363b5d","name":"Successful update using User Code","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Bearer 0nsn4KtX5QlKF4_4q0gNcw.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"\",\n    \"text2\": \"\",\n    \"text3\": \"\",\n    \"text4\": \"\",\n    \"text5\": \"\",\n    \"text6\": \"\",\n    \"text7\": \"\",\n    \"text8\": \"\",\n    \"text9\": \"\",\n    \"text10\": \"\",\n    \"text11\": \"\",\n    \"text12\": \"\",\n    \"date1\": \"14-AUG-2017\",\n    \"date2\": \"\",\n    \"user_code\": \"EE\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"Keep-Alive","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Thu, 17 Aug 2017 15:13:29 GMT","description":""},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"e491ed87-4cb1-4174-9763-76bbe5667c2b-0000009c","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"ZtfR7qZUUleahU","key":"__zlcmid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"GA1.2.345263352.1459269949","key":"_ga"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"154209639.534d7e038246e171d1efdb1f4bc83822.1459269952833.1484837065141.1494406860445.32","key":"__hstc"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"534d7e038246e171d1efdb1f4bc83822","key":"hubspotutk"}],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"3a40a4a4-d4cd-4423-94ff-94bd2e6651cb"},{"name":"/udf/user/","id":"a7ca8d77-9e50-4169-8889-a17d4cba2ac1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/","description":"<p>Web service to get the list of User Defined Field (UDF) records for a particular UDF Type. Mandatory search criteria include:</p>\n<ul>\n<li>udf_type - The UDF code.</li>\n<li>person - The CoreHR Personnel Number for whom records are to be retrieved.\nOptional criteria include:</li>\n<li>appointment_id - To search for details relating to a specific appointment.</li>\n<li>date1 - Commonly used as the Date From field.</li>\n<li>date2 - Commonly used as the Date To field.</li>\n</ul>\n<p>A get request can return many records depending on the criteria poveded and consequently the <code>ws_id</code> value pair is the unique identifier that can be used with other web services to update this specific record.</p>\n<p>Error Codes are documented at the start of the UDF documentation.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","udf","user",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4dbf5df8-7268-43d2-ac59-410010aa5563","name":"Search using all citeria","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Bearer 8N7tv3Kwt2W5_i-B72dWew.."}],"url":{"raw":"{{url}}/ws/{{schema}}/{{version}}/udf/user/?udf_type=AB20&person=1409000&appointment_id=TS0011-2594&date1=01-JAN-2017&date2=31-DEC-2017","host":["{{url}}"],"path":["ws","{{schema}}","{{version}}","udf","user",""],"query":[{"key":"udf_type","value":"AB20"},{"key":"person","value":"1409000"},{"key":"appointment_id","value":"TS0011-2594"},{"key":"date1","value":"01-JAN-2017"},{"key":"date2","value":"31-DEC-2017"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"connection","key":"connection","value":"Keep-Alive","description":"Options that are desired for the connection"},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":"Custom header"},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":"The mime type of this content"},{"name":"date","key":"date","value":"Thu, 17 Aug 2017 14:27:44 GMT","description":"The date and time that the message was sent"},{"name":"etag","key":"etag","value":"\"MQgB6VKjaT8lHDgADQKxxd0zqZ1ssI3lKuh3MursJBsVKHrOsHcxUeOJWWw6Lq7KQJ4hi5sQMuu9orqF0glhNg==\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":"Custom header"},{"name":"server","key":"server","value":"Apache","description":"A name for the server"},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"e491ed87-4cb1-4174-9763-76bbe5667c2b-0000008c","description":"Custom header"},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":"Custom header"},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"ZtfR7qZUUleahU","key":"__zlcmid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"GA1.2.345263352.1459269949","key":"_ga"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"154209639.534d7e038246e171d1efdb1f4bc83822.1459269952833.1484837065141.1494406860445.32","key":"__hstc"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"534d7e038246e171d1efdb1f4bc83822","key":"hubspotutk"}],"responseTime":null,"body":"\n{ \"items\" : [\n{\"udf_type\":\"AB20\",\"person\": \"1409000\",\"appointment_id\": \"TS0011-2594\",\"ws_id\": \"2017081171563091\",\"user_code\": \"AB20\",\"date1\": \"01-JAN-2017\",\"date2\": \"31-DEC-2017\",\"text1\": \"27-JAN-2017\",\"text2\": \"24-FEB-2017\",\"text3\": \"31-MAR-2017\",\"text4\": \"28-APR-2017\",\"text5\": \"27-MAY-2017\",\"text6\": \"30-JUN-2017\",\"text7\": \"28-JUL-2017\",\"text8\": \"25-AUG-2017\",\"text9\": \"29-SEP-2017\",\"text10\": \"28-OCT-2017\",\"text11\": \"24-NOV-2017\",\"text12\": \"29-DEC-2017\",\"last_update\": \"17-AUG-2017 12:46:49\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/frame/corehr/v1/udf/user/\"\n      }\n    ]\n}\n"},{"id":"8108a89e-a473-4110-a627-af108f5bad87","name":"Missing Person parameter","originalRequest":{"method":"GET","header":[{"key":"Authorization","name":"Authorization","value":"Bearer _E4Pl9nxSkcJFbic2dxD8w.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"connection","key":"connection","value":"close","description":"Options that are desired for the connection"},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":"Custom header"},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":"The mime type of this content"},{"name":"date","key":"date","value":"Thu, 17 Aug 2017 11:54:53 GMT","description":"The date and time that the message was sent"},{"name":"etag","key":"etag","value":"\"hu/EykO6P9EsmiOfI5hQk+9yi5r2AxYFcmeD8ppL8ujowI4GmtSfFHQi+xgzudcWmF0pxNbJHLHEWwepH2J8/A==\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"server","key":"server","value":"Apache","description":"A name for the server"},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"e491ed87-4cb1-4174-9763-76bbe5667c2b-00000044","description":"Custom header"},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":"Custom header"},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"ZtfR7qZUUleahU","key":"__zlcmid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"GA1.2.345263352.1459269949","key":"_ga"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"154209639.534d7e038246e171d1efdb1f4bc83822.1459269952833.1484837065141.1494406860445.32","key":"__hstc"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"534d7e038246e171d1efdb1f4bc83822","key":"hubspotutk"}],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"013\",\"errorMessage\" :\"Person is a mandatory field.\" }}\n"}],"_postman_id":"a7ca8d77-9e50-4169-8889-a17d4cba2ac1"}],"id":"d6e63570-b946-42ec-8883-80a8c85fe6e8","description":"<p>The User Defined Fields (UDF) module provides ability to insert/update and view the UDF records for a CoreHR employee. </p>\n<p>The list of UDF Types available is as configured in Core Personnel in the User Defined Fields under the Employee option i.e. those UDF types that related to a specific employee/user.</p>\n<p>These UDF Types must also be white listed using the Security option in Portal to allow them to be called via this Web Service.</p>\n<p><strong>Constraints, Limitations and Validation</strong></p>\n<p>For all calls (insert/update/get) the personnel no. and the UDF Type code must be specified at a minimum. As previously mentioned the UDF Type must have been added to the whitelist to be accessed in any way.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>404 / 000  The UDF Type does not exist in Core as a valid UDF Type for an Employee/User.</li>\n<li>400 / 001  A Personnel Number or an Appointment ID must be provided.</li>\n<li>404 / 002  Provide <em>either</em> a personnel number <em>or</em> an Appointment ID. It is not possible to use both.</li>\n<li>404 / 003 There is no CoreHR personnel/user account associated with the personnel number provided.</li>\n<li>404 / 004 The Appointment ID is invalid.</li>\n<li>404 / 006 UDF Type with these details does not exist for user, consider using POST to create.</li>\n<li>404 / 007 This UDF Type is not whitelisted for web services.</li>\n<li>400 / 008 When using User Reference Data - by specifying a user_code - then do  <em>not</em>  provide values in parameters text1 to text12 i.e. pass in empty values in text1..text12.</li>\n<li>404 / 009 This User Reference Data - as specified by the user_code - is not a a valid User Code for this UDF Type.</li>\n<li>404 / 010 There is no UDF record of this type for this person with these details to update. Use POST if you want to insert a record.</li>\n<li>400 / 011 Date1 field when used must be provided in the date format DD-MON-YYY.</li>\n<li>400 / 012 Date2 field when used must be provided in the date format DD-MON-YYY.</li>\n<li>400 / 013 Person is a mandatory field in this context.</li>\n<li>400 / 014 UDF Type is a mandatory field in this context.</li>\n</ul>\n","_postman_id":"d6e63570-b946-42ec-8883-80a8c85fe6e8"},{"name":"Position","item":[{"name":"Profile","item":[{"name":"All","item":[{"name":"/position/profile/all","id":"aeb8b14a-834b-4962-b854-c182cc1af408","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/all","description":"<p>This service returns all position profiles, and is ordered by post number</p>\n<p><strong>Parameters</strong></p>\n<p>None</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li>postNumber</li>\n</ul>\n<p>A unique identifier associated with the position profile.</p>\n<ul>\n<li>postType</li>\n</ul>\n<p> Provides information about the type of post e.g. permanent, part time, trainee, contractor etc. For associated descriptions use the Reference Module with the reference type <code>EMPS</code>. This attribute is available from <strong>CoreHR 26.0.6</strong> and is not available in older versions.</p>\n<ul>\n<li>category</li>\n</ul>\n<p> Categorises the position / post based on an organisations requirements. E.g. Categorising employees who are entitled to additional levels of annual leave. For associated descriptions use the Reference Module with the reference type <code>CATG</code>.</p>\n<ul>\n<li><p>subCategory</p>\n<p>Typically used to further break down the Category. For associated descriptions use the Reference Module with the reference type <code>SUBC</code>.</p>\n</li>\n<li><p>startDate</p>\n</li>\n</ul>\n<p> The date this position / post profile is effective from  </p>\n<ul>\n<li>endDate</li>\n</ul>\n<p> The date this position / post profile is no longer effective</p>\n<ul>\n<li>FTE</li>\n</ul>\n<p> Full Time Eqivalence of the appointment between 0 and 1 (inclusive).</p>\n<ul>\n<li>payScale</li>\n</ul>\n<p> This is the \"scale\" related to salary information which is associated with the appointment. This attribute is also referred to as 'PositionCode' and 'Grade'. Note: if the requirement is to determine an individuals exact Grade use the /person/salary/ web service instead.</p>\n<ul>\n<li>postTileCode</li>\n</ul>\n<p> A code that represents the description of the position / post profile. For associated descriptions use the Reference Module with the reference type <code>POSTTL</code>.</p>\n<ul>\n<li>Hierarchy / Structure Related - explains where the appointment fits within an organisation, not all of these fields will be populated. The number of fields populated depend on the the configuration of the organisation structure. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</li>\n</ul>\n<ul>\n<li><p><code>structureCode</code> - ability to map back to the Organisation Hierarchy end point /organisation</p>\n</li>\n<li><p><code>company</code> - Used to indicate the company / organisation on the structure of where the person's appointment sits. This is usually the highest level of the organisation. For associated descriptions use the Reference Module with the reference type <code>ORGZ</code>.</p>\n</li>\n<li><p><code>managementUnit</code> - Used to indicate the management unit within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>MGTU</code>.</p>\n</li>\n<li><p><code>department</code> - Used to indicate the department within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DEPT</code>.</p>\n</li>\n<li><p><code>costCentre</code> - The cost centre associated with this appointment. For associated descriptions use the Reference Module with the reference type <code>COST</code>.</p>\n</li>\n<li><p><code>division</code> - Used to indicate the division within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DIV</code>.</p>\n</li>\n<li><p><code>location</code> - Used to indicate the location within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>LOC</code>.</p>\n</li>\n<li><p><code>workGroup</code> - Used to indicate the workGroup within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>WRKGRP</code>.</p>\n</li>\n<li><p><code>user1</code> .. <code>user5</code> - Additional customized fields, how these are mapped and defined refer to the web service /organisation, using the provided structure code.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","position","profile","all"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d1614991-ce97-4e9d-8897-cc45ef1c8382","name":"All Position Profile","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Nov 2018 13:17:09 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-001db0a3"},{"key":"ETag","value":"\"F2NjN38vOKmHnpcTR/y0BeNwX+2SfIlO1oF0Ttnx6pteEYbI07l0J1rn7gKnX2VJnJvQz1k0uVsZtLvl/7OvuQ==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"items\": [\n        {\n            \"postNumber\": \"502240\",\n            \"postType\": \"CT\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"2\",\n            \"postTitle\": \"JXXXXX\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1005\",\n                \"department\": \"6109\",\n                \"costCentre\": \"X999999\",\n                \"division\": \"\",\n                \"location\": \"3100\",\n                \"workGroup\": \"W00240\",\n                \"user1\": \"1105\",\n                \"user2\": \"1205\",\n                \"user3\": \"1505\",\n                \"user4\": \"2026\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502241\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"20170620\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00008\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502242\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"599\",\n            \"postTitle\": \"J00521\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502243\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502244\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502245\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502246\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1002\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502247\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502248\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00221\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502249\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"0006\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"199\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00930\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"9093\",\n                \"costCentre\": \"TP72243\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"H00094\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"9584\"\n            }\n        },\n        {\n            \"postNumber\": \"502250\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502251\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00203\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502252\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00531\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502253\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00128\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502254\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00937\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502255\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00123\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502256\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00219\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502257\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00938\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502258\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00917\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502259\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00939\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502260\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00940\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502261\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00941\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502262\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00904\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502263\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00336\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502264\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00695\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502265\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00882\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502266\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502267\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00216\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502268\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502269\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502270\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00942\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502271\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00943\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502272\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00944\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502273\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00945\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502274\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00557\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502275\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00946\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502276\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00399\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502277\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00330\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1020\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502278\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00947\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502279\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00948\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502280\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00949\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502281\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00950\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502282\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00951\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502283\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00436\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502284\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00952\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502285\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00953\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502286\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00954\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502287\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00955\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502288\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00956\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502289\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00957\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502290\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00958\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502291\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00098\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502292\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00096\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502293\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00204\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502294\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502295\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502298\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19900101\",\n            \"endDate\": \"\",\n            \"payScale\": \"99\",\n            \"FTE\": \"1\",\n            \"postTitle\": \"J00003\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502299\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00268\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502300\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510901\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00026\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1003\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502301\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00969\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502302\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00035\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1024\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502303\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00970\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502304\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00971\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502305\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00876\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502306\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00973\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502307\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502308\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502309\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00004\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502310\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19500101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00364\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502311\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00156\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1022\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502312\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502313\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00063\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502314\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00107\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502315\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502316\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00972\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502317\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00974\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502318\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00975\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502319\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00129\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502320\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502321\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502322\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502323\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00449\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502324\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00484\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502325\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00197\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502326\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00083\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502327\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00061\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502328\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502329\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00020\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502330\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00377\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502331\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00976\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502332\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00977\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502333\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00978\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502334\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00979\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502335\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00980\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502336\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00981\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502337\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00982\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502338\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00983\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502339\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00984\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502340\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00985\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502341\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00986\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 100,\n    \"hasMore\": true,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/all\"\n        },\n        {\n            \"rel\": \"next\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/all?offsetby=100\"\n        }\n    ]\n}"},{"id":"f3ce9f46-a179-47bf-b1bf-58644ab59871","name":"Invalid Number ","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/5990-"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 04 May 2018 16:31:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"0FoqxLKU/Q+B00fZAzIsL22Bh8+Zs44U0qVCWudFEc81asczNAF9K3AeUwxZmYek20y3sdnxLVFGPq0gKBgJ4w==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"c56341ae-8040-4020-94cb-a0059cf71b63-00044fd3","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"003\",\"errorMessage\" :\"Validation failed. Post Number should be a number\" }}\n"},{"id":"faf0a3df-3ac2-4072-b233-baaf179fc40d","name":"Invalid Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/59900000"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 04 May 2018 16:32:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"1Qx3t/UWz3zTKKOdm3LSBjOnLatPFQy7Gnt5gD0G3W5W8oGPsmp8cyKFHANwuCZSKAfHsUFZkc5uObhPEvTmnQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"c56341ae-8040-4020-94cb-a0059cf71b63-00045009","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Post Number has a maximum length of 6\" }}\n"}],"_postman_id":"aeb8b14a-834b-4962-b854-c182cc1af408"}],"id":"da398d34-a258-4900-8957-4f434bd1cbed","_postman_id":"da398d34-a258-4900-8957-4f434bd1cbed","description":""},{"name":"Active","item":[{"name":"/position/profile/active/:date?","id":"92c1a59a-8b59-440c-99e5-44ab160c3297","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/active/","description":"<p>This service returns only active position profiles, and is ordered by post number. An active position profile is based on the start and end dates of the position profile. Leaving the date parameter blank will return the current active appointments as of 'today'. Provide a date if the requirement is to determine active position profiles as of a specific date. An appointment with a start date &gt;= today and a dormant date &lt;= today is considered active. When the dormant date is not set for an appointment then it is  active if the start date is &gt;= today.</p>\n<p><strong>Parameters</strong></p>\n<p>date : format YYYYMMDD</p>\n<p>Mandatory : No</p>\n<p>When blank, the service returns active appointments as of 'today'.</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li>postNumber</li>\n</ul>\n<p>A unique identifier associated with the position profile.</p>\n<ul>\n<li>postType</li>\n</ul>\n<p> Provides information about the type of post e.g. permanent, part time, trainee, contractor etc. For associated descriptions use the Reference Module with the reference type <code>EMPS</code>. This attribute is available from <strong>CoreHR 26.0.6</strong> and is not available in older versions.</p>\n<ul>\n<li>category</li>\n</ul>\n<p> Categorises the position / post based on an organisations requirements. E.g. Categorising employees who are entitled to additional levels of annual leave. For associated descriptions use the Reference Module with the reference type <code>CATG</code>.</p>\n<ul>\n<li><p>subCategory</p>\n<p>Typically used to further break down the Category. For associated descriptions use the Reference Module with the reference type <code>SUBC</code>.</p>\n</li>\n<li><p>startDate</p>\n</li>\n</ul>\n<p> The date this position / post profile is effective from  </p>\n<ul>\n<li>endDate</li>\n</ul>\n<p> The date this position / post profile is no longer effective</p>\n<ul>\n<li>FTE</li>\n</ul>\n<p> Full Time Eqivalence of the appointment between 0 and 1 (inclusive).</p>\n<ul>\n<li>payScale</li>\n</ul>\n<p> This is the \"scale\" related to salary information which is associated with the appointment. This attribute is also referred to as 'PositionCode' and 'Grade'. Note: if the requirement is to determine an individuals exact Grade use the /person/salary/ web service instead.</p>\n<ul>\n<li>postTileCode</li>\n</ul>\n<p> A code that represents the description of the position / post profile. For associated descriptions use the Reference Module with the reference type <code>POSTTL</code>.</p>\n<ul>\n<li>Hierarchy / Structure Related - explains where the appointment fits within an organisation, not all of these fields will be populated. The number of fields populated depend on the the configuration of the organisation structure. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</li>\n</ul>\n<ul>\n<li><p><code>structureCode</code> - ability to map back to the Organisation Hierarchy end point /organisation</p>\n</li>\n<li><p><code>company</code> - Used to indicate the company / organisation on the structure of where the person's appointment sits. This is usually the highest level of the organisation. For associated descriptions use the Reference Module with the reference type <code>ORGZ</code>.</p>\n</li>\n<li><p><code>managementUnit</code> - Used to indicate the management unit within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>MGTU</code>.</p>\n</li>\n<li><p><code>department</code> - Used to indicate the department within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DEPT</code>.</p>\n</li>\n<li><p><code>costCentre</code> - The cost centre associated with this appointment. For associated descriptions use the Reference Module with the reference type <code>COST</code>.</p>\n</li>\n<li><p><code>division</code> - Used to indicate the division within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DIV</code>.</p>\n</li>\n<li><p><code>location</code> - Used to indicate the location within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>LOC</code>.</p>\n</li>\n<li><p><code>workGroup</code> - Used to indicate the workGroup within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>WRKGRP</code>.</p>\n</li>\n<li><p><code>user1</code> .. <code>user5</code> - Additional customized fields, how these are mapped and defined refer to the web service /organisation, using the provided structure code.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","position","profile","active",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"077c9323-6f82-4e3c-b438-b4ad7901e456","name":"Active Positions Based on a Date-","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/active/20180101"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Nov 2018 13:18:26 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-001db393"},{"key":"ETag","value":"\"IxXtYLWysy45I5hwfOED38zBxHTvrufCmFDE8qkgq3hGx6UcXuTM8BVcJgIuNFJGhsS5rT/6ue8FzfNKLhHnNQ==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"items\": [\n        {\n            \"postNumber\": \"502240\",\n            \"postType\": \"CT\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"2\",\n            \"postTitle\": \"JXXXXX\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1005\",\n                \"department\": \"6109\",\n                \"costCentre\": \"X999999\",\n                \"division\": \"\",\n                \"location\": \"3100\",\n                \"workGroup\": \"W00240\",\n                \"user1\": \"1105\",\n                \"user2\": \"1205\",\n                \"user3\": \"1505\",\n                \"user4\": \"2026\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502242\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"599\",\n            \"postTitle\": \"J00521\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502243\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502244\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502245\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502246\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1002\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502247\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502248\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00221\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502249\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"0006\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"199\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00930\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"9093\",\n                \"costCentre\": \"TP72243\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"H00094\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"9584\"\n            }\n        },\n        {\n            \"postNumber\": \"502250\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502251\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00203\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502252\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00531\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502253\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00128\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502254\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00937\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502255\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00123\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502256\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00219\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502257\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00938\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502258\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00917\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502259\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00939\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502260\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00940\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502261\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00941\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502262\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00904\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502263\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00336\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502264\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00695\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502265\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00882\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502266\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502267\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00216\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502268\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502269\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502270\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00942\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502271\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00943\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502272\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00944\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502273\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00945\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502274\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00557\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502275\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00946\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502276\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00399\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502277\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00330\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1020\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502278\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00947\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502279\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00948\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502280\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00949\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502281\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00950\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502282\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00951\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502283\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00436\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502284\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00952\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502285\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00953\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502286\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00954\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502287\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00955\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502288\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00956\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502289\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00957\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502290\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00958\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502291\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00098\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502292\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00096\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502293\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00204\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502294\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502295\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502298\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19900101\",\n            \"endDate\": \"\",\n            \"payScale\": \"99\",\n            \"FTE\": \"1\",\n            \"postTitle\": \"J00003\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502299\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00268\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502300\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510901\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00026\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1003\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502301\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00969\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502302\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00035\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1024\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502303\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00970\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502304\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00971\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502305\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00876\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502306\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00973\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502307\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502308\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502309\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00004\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502310\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19500101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00364\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502311\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00156\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1022\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502312\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502313\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00063\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502314\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00107\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502315\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502316\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00972\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502317\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00974\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502318\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00975\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502319\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00129\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502320\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502321\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502322\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502323\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00449\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502324\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00484\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502325\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00197\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502326\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00083\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502327\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00061\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502328\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502329\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00020\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502330\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00377\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502331\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00976\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502332\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00977\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502333\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00978\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502334\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00979\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502335\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00980\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502336\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00981\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502337\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00982\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502338\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00983\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502339\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00984\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502340\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00985\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502341\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00986\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502342\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00986\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 100,\n    \"hasMore\": true,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/active/20180101\"\n        },\n        {\n            \"rel\": \"next\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/active/20180101?offsetby=100\"\n        }\n    ]\n}"},{"id":"73aaf3f7-ab61-41d3-a94a-0988e74269fa","name":"Active Positions","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/active/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Nov 2018 13:17:42 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-001db211"},{"key":"ETag","value":"\"W+TMIkbENEkqD21wYwQcem0AYCpyXfldiK5yYujziZXlU0JGF86PWZWQJE3OPx1t8sl743PO79f6j0BlcuKaDg==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"items\": [\n        {\n            \"postNumber\": \"502240\",\n            \"postType\": \"CT\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"2\",\n            \"postTitle\": \"JXXXXX\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1005\",\n                \"department\": \"6109\",\n                \"costCentre\": \"X999999\",\n                \"division\": \"\",\n                \"location\": \"3100\",\n                \"workGroup\": \"W00240\",\n                \"user1\": \"1105\",\n                \"user2\": \"1205\",\n                \"user3\": \"1505\",\n                \"user4\": \"2026\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502242\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"599\",\n            \"postTitle\": \"J00521\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502243\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502244\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502245\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502246\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1002\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502247\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502248\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00221\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502249\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"0006\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"199\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00930\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"9093\",\n                \"costCentre\": \"TP72243\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"H00094\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"9584\"\n            }\n        },\n        {\n            \"postNumber\": \"502250\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502251\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00203\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502252\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00531\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502253\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00128\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502254\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00937\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502255\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00123\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502256\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00219\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502257\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00938\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502258\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00917\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502259\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00939\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502260\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00940\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502261\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00941\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502262\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00904\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502263\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00336\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502264\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00695\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502265\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00882\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502266\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502267\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00216\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502268\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502269\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502270\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00942\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502271\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00943\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502272\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00944\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502273\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00945\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502274\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00557\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502275\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00946\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502276\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00399\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502277\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00330\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1020\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502278\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00947\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502279\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00948\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502280\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00949\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502281\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00950\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502282\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00951\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502283\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00436\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502284\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00952\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502285\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00953\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502286\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00954\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502287\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00955\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502288\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00956\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502289\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00957\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502290\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00958\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502291\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00098\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502292\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00096\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502293\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00204\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502294\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502295\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502298\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19900101\",\n            \"endDate\": \"\",\n            \"payScale\": \"99\",\n            \"FTE\": \"1\",\n            \"postTitle\": \"J00003\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502299\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00268\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502300\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510901\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00026\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1003\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502301\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00969\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502302\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00035\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1024\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502303\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00970\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502304\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00971\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502305\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00876\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502306\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00973\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502307\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502308\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502309\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00004\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502310\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19500101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00364\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502311\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00156\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1022\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502312\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502313\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00063\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502314\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00107\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502315\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502316\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00972\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502317\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00974\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502318\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00975\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502319\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00129\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502320\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502321\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502322\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502323\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00449\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502324\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00484\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502325\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00197\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502326\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00083\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502327\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00061\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502328\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502329\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00020\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502330\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00377\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502331\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00976\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502332\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00977\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502333\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00978\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502334\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00979\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502335\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00980\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502336\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00981\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502337\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00982\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502338\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00983\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502339\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00984\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502340\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00985\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502341\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00986\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502342\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00986\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 100,\n    \"hasMore\": true,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/active/\"\n        },\n        {\n            \"rel\": \"next\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/active/?offsetby=100\"\n        }\n    ]\n}"}],"_postman_id":"92c1a59a-8b59-440c-99e5-44ab160c3297"}],"id":"29e0ac3b-cbc2-4f38-830a-40e2e30afb48","_postman_id":"29e0ac3b-cbc2-4f38-830a-40e2e30afb48","description":""},{"name":"Future","item":[{"name":"/position/profile/future","id":"817e6f6a-9a04-433c-becb-5730aa9963d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/future","description":"<p>This service returns only future position profiles, and is ordered by post number. A future position profile is based on the start of the position profile, and the start must be greater than 'today'.</p>\n<p><strong>Parameters</strong></p>\n<p>None</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li>postNumber</li>\n</ul>\n<p>A unique identifier associated with the position profile.</p>\n<ul>\n<li>postType</li>\n</ul>\n<p> Provides information about the type of post e.g. permanent, part time, trainee, contractor etc. For associated descriptions use the Reference Module with the reference type <code>EMPS</code>. This attribute is available from <strong>CoreHR 26.0.6</strong> and is not available in older versions.</p>\n<ul>\n<li>category</li>\n</ul>\n<p> Categorises the position / post based on an organisations requirements. E.g. Categorising employees who are entitled to additional levels of annual leave. For associated descriptions use the Reference Module with the reference type <code>CATG</code>.</p>\n<ul>\n<li><p>subCategory</p>\n<p>Typically used to further break down the Category. For associated descriptions use the Reference Module with the reference type <code>SUBC</code>.</p>\n</li>\n<li><p>startDate</p>\n</li>\n</ul>\n<p> The date this position / post profile is effective from  </p>\n<ul>\n<li>endDate</li>\n</ul>\n<p> The date this position / post profile is no longer effective</p>\n<ul>\n<li>FTE</li>\n</ul>\n<p> Full Time Eqivalence of the appointment between 0 and 1 (inclusive).</p>\n<ul>\n<li>payScale</li>\n</ul>\n<p> This is the \"scale\" related to salary information which is associated with the appointment. This attribute is also referred to as 'PositionCode' and 'Grade'. Note: if the requirement is to determine an individuals exact Grade use the /person/salary/ web service instead.</p>\n<ul>\n<li>postTileCode</li>\n</ul>\n<p> A code that represents the description of the position / post profile. For associated descriptions use the Reference Module with the reference type <code>POSTTL</code>.</p>\n<ul>\n<li>Hierarchy / Structure Related - explains where the appointment fits within an organisation, not all of these fields will be populated. The number of fields populated depend on the the configuration of the organisation structure. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</li>\n</ul>\n<ul>\n<li><p><code>structureCode</code> - ability to map back to the Organisation Hierarchy end point /organisation</p>\n</li>\n<li><p><code>company</code> - Used to indicate the company / organisation on the structure of where the person's appointment sits. This is usually the highest level of the organisation. For associated descriptions use the Reference Module with the reference type <code>ORGZ</code>.</p>\n</li>\n<li><p><code>managementUnit</code> - Used to indicate the management unit within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>MGTU</code>.</p>\n</li>\n<li><p><code>department</code> - Used to indicate the department within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DEPT</code>.</p>\n</li>\n<li><p><code>costCentre</code> - The cost centre associated with this appointment. For associated descriptions use the Reference Module with the reference type <code>COST</code>.</p>\n</li>\n<li><p><code>division</code> - Used to indicate the division within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DIV</code>.</p>\n</li>\n<li><p><code>location</code> - Used to indicate the location within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>LOC</code>.</p>\n</li>\n<li><p><code>workGroup</code> - Used to indicate the workGroup within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>WRKGRP</code>.</p>\n</li>\n<li><p><code>user1</code> .. <code>user5</code> - Additional customized fields, how these are mapped and defined refer to the web service /organisation, using the provided structure code.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","position","profile","future"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5cc82188-7d98-4663-9994-374c1b92960c","name":"Future Profile","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/future"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS","name":"Access-Control-Allow-Methods-Age","description":"Custom header"},{"key":"Access-Control-Max-Age","value":"600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 13 Sep 2018 16:17:17 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"LXCQMwx6BN3ojpPN+GKOV0EFa8ZGOEZZioQvIyhQFcTY9LwDW2FSe6WWJ0TqFgqBe07mMvsiFBNduuHYTBwXOA==-gzip\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"b0b00ddc-b960-4e37-b4b3-3d5446e9ff5e-00088aa6","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"postNumber\":\"502655\",\"category\":\"ST_P\",\"subCategory\":\"\",\"startDate\":\"20180914\",\"endDate\":\"\",\"payScale\":\"7800\",\"FTE\":\"1\",\"postTitle\":\"DF06\",\"hierarchy\" : {\"structureCode\":\"7800\",\"company\":\"7800\",\"managementUnit\":\"78041\",\"department\":\"KC02\",\"costCentre\":\"AB04\",\"division\":\"7002\",\"location\":\"3007\",\"workGroup\":\"7401\",\"user1\":\"1104\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"\"}}\n,\n{\"postNumber\":\"708415\",\"category\":\"\",\"subCategory\":\"\",\"startDate\":\"20180913\",\"endDate\":\"\",\"payScale\":\"7084\",\"FTE\":\"1\",\"postTitle\":\"708412\",\"hierarchy\" : {\"structureCode\":\"7084\",\"company\":\"7084\",\"managementUnit\":\"8441\",\"department\":\"8403\",\"costCentre\":\"\",\"division\":\"\",\"location\":\"\",\"workGroup\":\"\",\"user1\":\"8414\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"\"}}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/future\"\n      }\n    ]\n}\n"}],"_postman_id":"817e6f6a-9a04-433c-becb-5730aa9963d7"}],"id":"d733b97c-e456-4291-a55d-28010f99b3e3","_postman_id":"d733b97c-e456-4291-a55d-28010f99b3e3","description":""},{"name":"/position/profile/:postNumber","id":"1852efad-1138-44cc-87ad-a32b18b47568","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/5990-","description":"<p>A post number can be obtained by using the /person/appointment/:personnelNo web service.</p>\n<p><strong>Parameters</strong></p>\n<p>requires personnelNumber, use the /filter/* endpoints to obtain personnelNumbers</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li>postNumber</li>\n</ul>\n<p>A unique identifier associated with the position profile.</p>\n<ul>\n<li>postType</li>\n</ul>\n<p> Provides information about the type of post e.g. permanent, part time, trainee, contractor etc. For associated descriptions use the Reference Module with the reference type <code>EMPS</code>. This attribute is available from <strong>CoreHR 26.0.6</strong> and is not available in older versions.</p>\n<ul>\n<li>category</li>\n</ul>\n<p> Categorises the position / post based on an organisations requirements. E.g. Categorising employees who are entitled to additional levels of annual leave. For associated descriptions use the Reference Module with the reference type <code>CATG</code>.</p>\n<ul>\n<li><p>subCategory</p>\n<p>Typically used to further break down the Category. For associated descriptions use the Reference Module with the reference type <code>SUBC</code>.</p>\n</li>\n<li><p>startDate</p>\n</li>\n</ul>\n<p> The date this position / post profile is effective from    </p>\n<ul>\n<li>endDate</li>\n</ul>\n<p> The date this position / post profile is no longer effective</p>\n<ul>\n<li>FTE</li>\n</ul>\n<p> Full Time Eqivalence of the appointment between 0 and 1 (inclusive).</p>\n<ul>\n<li>payScale</li>\n</ul>\n<p> This is the \"scale\" related to salary information which is associated with the appointment. This attribute is also referred to as 'PositionCode' and 'Grade'. Note: if the requirement is to determine an individuals exact Grade use the /person/salary/ web service instead.</p>\n<ul>\n<li>postTileCode</li>\n</ul>\n<p> A code that represents the description of the position / post profile. For associated descriptions use the Reference Module with the reference type <code>POSTTL</code>.</p>\n<ul>\n<li>Hierarchy / Structure Related - explains where the appointment fits within an organisation, not all of these fields will be populated. The number of fields populated depend on the the configuration of the organisation structure. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</li>\n</ul>\n<ul>\n<li><p><code>structureCode</code> - ability to map back to the Organisation Hierarchy end point /organisation</p>\n</li>\n<li><p><code>company</code> - Used to indicate the company / organisation on the structure of where the person's appointment sits. This is usually the highest level of the organisation. For associated descriptions use the Reference Module with the reference type <code>ORGZ</code>.</p>\n</li>\n<li><p><code>managementUnit</code> - Used to indicate the management unit within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>MGTU</code>.</p>\n</li>\n<li><p><code>department</code> - Used to indicate the department within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DEPT</code>.</p>\n</li>\n<li><p><code>costCentre</code> - The cost centre associated with this appointment. For associated descriptions use the Reference Module with the reference type <code>COST</code>.</p>\n</li>\n<li><p><code>division</code> - Used to indicate the division within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DIV</code>.</p>\n</li>\n<li><p><code>location</code> - Used to indicate the location within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>LOC</code>.</p>\n</li>\n<li><p><code>workGroup</code> - Used to indicate the workGroup within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>WRKGRP</code>.</p>\n</li>\n<li><p><code>user1</code> .. <code>user5</code> - Additional customized fields, how these are mapped and defined refer to the web service /organisation, using the provided structure code.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","position","profile","5990-"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"459be541-54b9-4e1d-99f0-7ac2c7bd856c","name":"Position based on Post Number","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/502240"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Nov 2018 13:16:46 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-001dafef"},{"key":"ETag","value":"\"JB8nmVvPB8sY9824/G/4Z3ofWoOB5O99wWk/Ud4Yg1/f+i5x9hga4zMpqrVv38vJ4CdVMkCbuKV6BmhyEnEOpA==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"items\": [\n        {\n            \"postNumber\": \"502240\",\n            \"postType\": \"CT\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"2\",\n            \"postTitle\": \"JXXXXX\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1005\",\n                \"department\": \"6109\",\n                \"costCentre\": \"X999999\",\n                \"division\": \"\",\n                \"location\": \"3100\",\n                \"workGroup\": \"W00240\",\n                \"user1\": \"1105\",\n                \"user2\": \"1205\",\n                \"user3\": \"1505\",\n                \"user4\": \"2026\",\n                \"user5\": \"\"\n            }\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 1,\n    \"hasMore\": false,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/502240\"\n        }\n    ]\n}"},{"id":"9453b1f6-c582-4f18-a202-e710ed6078d9","name":"Invalid Number ","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/5990-"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 04 May 2018 16:31:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"0FoqxLKU/Q+B00fZAzIsL22Bh8+Zs44U0qVCWudFEc81asczNAF9K3AeUwxZmYek20y3sdnxLVFGPq0gKBgJ4w==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"c56341ae-8040-4020-94cb-a0059cf71b63-00044fd3","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"003\",\"errorMessage\" :\"Validation failed. Post Number should be a number\" }}\n"},{"id":"c86f4a1f-e916-4707-b639-75a90b2094e9","name":"Invalid Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/59900000"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 04 May 2018 16:32:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"1Qx3t/UWz3zTKKOdm3LSBjOnLatPFQy7Gnt5gD0G3W5W8oGPsmp8cyKFHANwuCZSKAfHsUFZkc5uObhPEvTmnQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"c56341ae-8040-4020-94cb-a0059cf71b63-00045009","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Post Number has a maximum length of 6\" }}\n"}],"_postman_id":"1852efad-1138-44cc-87ad-a32b18b47568"}],"id":"13fc9d46-1ca4-4a47-81c0-33236ade372a","_postman_id":"13fc9d46-1ca4-4a47-81c0-33236ade372a","description":""}],"id":"60b3ad75-9978-4167-899b-ff0a2231bd16","description":"<p><strong>Position Module</strong></p>\n<p>The position module will retrieve position (aka post) profile information. This profile information is generally best described as a blueprint providing default information for appointments e.g. sets the cost centre, department, category information etc.</p>\n<p>Several options exist for this module:</p>\n<ul>\n<li><p>/position/profile/:postNumber</p>\n</li>\n<li><p>/position/profile/active</p>\n</li>\n<li><p>/position/profile/inactive</p>\n</li>\n<li><p>/position/profile/all</p>\n</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"a31ed79d-658c-4a15-972c-940090839512","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"22f46c40-fa50-4590-b53a-99ca805a2fa8","type":"text/javascript","exec":[""]}}],"_postman_id":"60b3ad75-9978-4167-899b-ff0a2231bd16"},{"name":"Filter","item":[{"name":"Active","item":[{"name":"/filter/active/:date?","id":"0b4c5e7a-f20c-42f5-953d-79a6533a6243","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/active/","description":"<p>Get all active employees, this will include employees who have a future leaving dates. </p>\n<p>By default only 100 active employees will be returned. In cases where you have a large employee base, set the pagesize filter via the URL. The max pagesize is 10,000 i.e it is possible to obtain an employee result set up to 10,000 employees. Setting the pagesize above this max threshold will result in only the default result set.</p>\n<ul>\n<li>Date\nan optional parameter, leaving this parameter blank, will simply return active employees as of 'today'. While providing a value for date (formated as YYYYMMDD) will return employees active for that specific date. Typically used to find employees active based on a specific historical date. It is therefore possible to obtain employees who have ceased employment.</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","active",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0c2e0d48-8c6e-47f0-9d64-a69e92a05292","name":"Active Employees pagesize 5,000","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/active/?pagesize=5000","host":["{{url}}"],"path":["ws","{{tenant}}","{{schema}}","v1","filter","active",""],"query":[{"key":"pagesize","value":"5000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 13 Mar 2018 13:55:22 GMT","name":"Date","description":""},{"key":"ETag","value":"\"i8/UPtbcoA97afGWuKDcfzHWqdmhvpMGMCwEtvzWvYaXKlnw9JJ3tBR31PmWYNv1kcqwt9F26CqVRACmi8nA+w==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-000a7b95","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"000070\"\n,\n\"000071\"\n,\n\"000072\"\n,\n\"000073\"\n,\n\"000074\"\n,\n\"000075\"\n,\n\"000085\"\n,\n\"0003490\"\n,\n\"000368\"\n,\n\"0006771\"\n,\n\"000881\"\n,\n\"000882\"\n,\n\"000883\"\n,\n\"000885\"\n,\n\"000886\"\n,\n\"0012241\"\n,\n\"001234\"\n,\n\"0013640\"\n,\n\"0014302\"\n,\n\"0014395\"\n,\n\"0014618\"\n,\n\"0015860\"\n,\n\"0016983\"\n,\n\"0020136\"\n,\n\"0022675\"\n,\n\"0023643\"\n,\n\"002488\"\n,\n\"0025846\"\n,\n\"0026047\"\n,\n\"0026512\"\n,\n\"0028524\"\n,\n\"0029922\"\n,\n\"0031794\"\n,\n\"0032061\"\n,\n\"0034934\"\n,\n\"0036755\"\n,\n\"0043130\"\n,\n\"0044941\"\n,\n\"0045780\"\n,\n\"0046457\"\n,\n\"0047664\"\n,\n\"0047681\"\n,\n\"0049534\"\n,\n\"0051140\"\n,\n\"0051979\"\n,\n\"0052853\"\n,\n\"0057845\"\n,\n\"0061351\"\n,\n\"0061813\"\n,\n\"0062746\"\n,\n\"0066995\"\n,\n\"0068421\"\n,\n\"0068674\"\n,\n\"0069559\"\n,\n\"0070741\"\n,\n\"0070866\"\n,\n\"0071150\"\n,\n\"0071612\"\n,\n\"0072944\"\n,\n\"0073960\"\n,\n\"0074880\"\n,\n\"0075046\"\n,\n\"0079056\"\n,\n\"0079965\"\n,\n\"0081043\"\n,\n\"0082008\"\n,\n\"0084707\"\n,\n\"0085976\"\n,\n\"0087686\"\n,\n\"0088814\"\n,\n\"0088859\"\n,\n\"0090624\"\n,\n\"0090669\"\n,\n\"0091081\"\n,\n\"0091560\"\n,\n\"0092955\"\n,\n\"0093219\"\n,\n\"0096743\"\n,\n\"0097038\"\n,\n\"0098467\"\n,\n\"0098707\"\n,\n\"0098977\"\n,\n\"0100521\"\n,\n\"0101600\"\n,\n\"0102390\"\n,\n\"0102707\"\n,\n\"0102901\"\n,\n\"0102915\"\n,\n\"0103310\"\n,\n\"0103710\"\n,\n\"0105180\"\n,\n\"0106480\"\n,\n\"0107351\"\n,\n\"0107396\"\n,\n\"0107508\"\n,\n\"0108080\"\n,\n\"0109714\"\n,\n\"0109922\"\n,\n\"0110029\"\n,\n\"0110844\"\n,\n\"0111906\"\n,\n\"0112030\"\n,\n\"0112665\"\n,\n\"0112682\"\n,\n\"0114646\"\n,\n\"0114885\"\n,\n\"0115024\"\n,\n\"0118212\"\n,\n\"0119686\"\n,\n\"0123446\"\n,\n\"0123814\"\n,\n\"0124080\"\n,\n\"0127519\"\n,\n\"0128472\"\n,\n\"0129485\"\n,\n\"0130411\"\n,\n\"0131011\"\n,\n\"0131552\"\n,\n\"0133710\"\n,\n\"0136912\"\n,\n\"0136926\"\n,\n\"0142000\"\n,\n\"0142715\"\n,\n\"0142780\"\n,\n\"0145583\"\n,\n\"0145871\"\n,\n\"0147710\"\n,\n\"0148497\"\n,\n\"0148626\"\n,\n\"0149465\"\n,\n\"0150818\"\n,\n\"0153145\"\n,\n\"0157380\"\n,\n\"0161425\"\n,\n\"0161522\"\n,\n\"0164148\"\n,\n\"0168748\"\n,\n\"0171272\"\n,\n\"0172077\"\n,\n\"0178405\"\n,\n\"0180007\"\n,\n\"0180725\"\n,\n\"0183736\"\n,\n\"0184880\"\n,\n\"0186750\"\n,\n\"0197417\"\n,\n\"0197479\"\n,\n\"0199654\"\n,\n\"0200005\"\n,\n\"0200754\"\n,\n\"0201035\"\n,\n\"0201337\"\n,\n\"0201989\"\n,\n\"0202176\"\n,\n\"0202988\"\n,\n\"0203192\"\n,\n\"0203241\"\n,\n\"0203574\"\n,\n\"0205059\"\n,\n\"0205971\"\n,\n\"0206332\"\n,\n\"0206696\"\n,\n\"0206890\"\n,\n\"0207300\"\n,\n\"0207393\"\n,\n\"0207460\"\n,\n\"0208202\"\n,\n\"0208281\"\n,\n\"0208300\"\n,\n\"0208934\"\n,\n\"0210442\"\n,\n\"0211140\"\n,\n\"0212326\"\n,\n\"0213280\"\n,\n\"0213689\"\n,\n\"0215257\"\n,\n\"0215740\"\n,\n\"0215847\"\n,\n\"0215895\"\n,\n\"0216340\"\n,\n\"0216402\"\n,\n\"0216988\"\n,\n\"0217429\"\n,\n\"0218733\"\n,\n\"0219045\"\n,\n\"0219236\"\n,\n\"0219316\"\n,\n\"0220290\"\n,\n\"0220512\"\n,\n\"0220560\"\n,\n\"0223585\"\n,\n\"0223873\"\n,\n\"0225472\"\n,\n\"0225730\"\n,\n\"0225965\"\n,\n\"0227373\"\n,\n\"0228945\"\n,\n\"0228980\"\n,\n\"0230467\"\n,\n\"0230547\"\n,\n\"0230772\"\n,\n\"0230818\"\n,\n\"0231962\"\n,\n\"0232593\"\n,\n\"0233447\"\n,\n\"0233450\"\n,\n\"0233610\"\n,\n\"0234050\"\n,\n\"0234477\"\n,\n\"0234765\"\n,\n\"0235892\"\n,\n\"0236427\"\n,\n\"0238106\"\n,\n\"0238220\"\n,\n\"0238952\"\n,\n\"0239025\"\n,\n\"0239344\"\n,\n\"0240204\"\n,\n\"0241217\"\n,\n\"0241536\"\n,\n\"0241952\"\n,\n\"0243836\"\n,\n\"0244467\"\n,\n\"0244547\"\n,\n\"0244581\"\n,\n\"0244600\"\n,\n\"0246593\"\n,\n\"0247829\"\n,\n\"0248893\"\n,\n\"0249508\"\n,\n\"0250176\"\n,\n\"0250384\"\n,\n\"0250912\"\n,\n\"0251717\"\n,\n\"0253236\"\n,\n\"0255872\"\n,\n\"0257680\"\n,\n\"0258023\"\n,\n\"0258099\"\n,\n\"0258516\"\n,\n\"0260024\"\n,\n\"0260250\"\n,\n\"0261071\"\n,\n\"0261821\"\n,\n\"0262515\"\n,\n\"0262630\"\n,\n\"0262914\"\n,\n\"0263035\"\n,\n\"0263660\"\n,\n\"0264065\"\n,\n\"0265020\"\n,\n\"0265401\"\n,\n\"0266299\"\n,\n\"0267652\"\n,\n\"0268027\"\n,\n\"0268887\"\n,\n\"0269700\"\n,\n\"0269727\"\n,\n\"0270732\"\n,\n\"0271124\"\n,\n\"0273694\"\n,\n\"0273709\"\n,\n\"0275467\"\n,\n\"0275710\"\n,\n\"0275755\"\n,\n\"0275804\"\n,\n\"0278003\"\n,\n\"0279290\"\n,\n\"0280451\"\n,\n\"0282020\"\n,\n\"0282450\"\n,\n\"0282591\"\n,\n\"0283268\"\n,\n\"0284968\"\n,\n\"0285124\"\n,\n\"0285266\"\n,\n\"0286300\"\n,\n\"0287438\"\n,\n\"0287552\"\n,\n\"0287868\"\n,\n\"0288760\"\n,\n\"0288995\"\n,\n\"0289453\"\n,\n\"0289516\"\n,\n\"0289564\"\n,\n\"0291964\"\n,\n\"0292040\"\n,\n\"0292818\"\n,\n\"0292977\"\n,\n\"0293851\"\n,\n\"0294066\"\n,\n\"0294992\"\n,\n\"0295239\"\n,\n\"0295592\"\n,\n\"0296432\"\n,\n\"0296526\"\n,\n\"0296560\"\n,\n\"0297348\"\n,\n\"0297653\"\n,\n\"0297910\"\n,\n\"0298059\"\n,\n\"0298621\"\n,\n\"0298666\"\n,\n\"0299315\"\n,\n\"0299488\"\n,\n\"0300480\"\n,\n\"0301001\"\n,\n\"0302302\"\n,\n\"0303204\"\n,\n\"0304043\"\n,\n\"0306725\"\n,\n\"0306836\"\n,\n\"0307440\"\n,\n\"0308040\"\n,\n\"0308292\"\n,\n\"0310179\"\n,\n\"0312420\"\n,\n\"0312611\"\n,\n\"0313287\"\n,\n\"0313402\"\n,\n\"0313527\"\n,\n\"0314942\"\n,\n\"0315130\"\n,\n\"0315800\"\n,\n\"0316000\"\n,\n\"0318057\"\n,\n\"0318633\"\n,\n\"0319504\"\n,\n\"0320491\"\n,\n\"0321012\"\n,\n\"0321203\"\n,\n\"0321519\"\n,\n\"0321758\"\n,\n\"0324790\"\n,\n\"0324804\"\n,\n\"0325369\"\n,\n\"0325390\"\n,\n\"0325577\"\n,\n\"0327686\"\n,\n\"0327909\"\n,\n\"0327988\"\n,\n\"0328033\"\n,\n\"0328304\"\n,\n\"0328828\"\n,\n\"0329781\"\n,\n\"0330991\"\n,\n\"0331450\"\n,\n\"0331640\"\n,\n\"0331939\"\n,\n\"0331973\"\n,\n\"0332191\"\n,\n\"0332590\"\n,\n\"0332733\"\n,\n\"0332969\"\n,\n\"0333045\"\n,\n\"0333111\"\n,\n\"0333190\"\n,\n\"0334510\"\n,\n\"0335217\"\n,\n\"0336247\"\n,\n\"0336774\"\n,\n\"0338085\"\n,\n\"0338710\"\n,\n\"0339133\"\n,\n\"0340309\"\n,\n\"0342768\"\n,\n\"0342865\"\n,\n\"0343163\"\n,\n\"0344273\"\n,\n\"0344721\"\n,\n\"0344797\"\n,\n\"0345429\"\n,\n\"0346720\"\n,\n\"0347489\"\n,\n\"0348839\"\n,\n\"0348873\"\n,\n\"0349602\"\n,\n\"0350045\"\n,\n\"0351089\"\n,\n\"0351776\"\n,\n\"0351811\"\n,\n\"0352490\"\n,\n\"0353441\"\n,\n\"0353549\"\n,\n\"0353632\"\n,\n\"0354579\"\n,\n\"0354693\"\n,\n\"0355675\"\n,\n\"0357660\"\n,\n\"0358624\"\n,\n\"0359477\"\n,\n\"0360132\"\n,\n\"0360690\"\n,\n\"0361641\"\n,\n\"0362560\"\n,\n\"0362637\"\n,\n\"0366620\"\n,\n\"0369835\"\n,\n\"0370597\"\n,\n\"0372179\"\n,\n\"0372342\"\n,\n\"0372422\"\n,\n\"0375801\"\n,\n\"0376016\"\n,\n\"0376095\"\n,\n\"0377636\"\n,\n\"0378253\"\n,\n\"0379155\"\n,\n\"0379599\"\n,\n\"0381729\"\n,\n\"0382155\"\n,\n\"0383328\"\n,\n\"0383775\"\n,\n\"0383824\"\n,\n\"0384424\"\n,\n\"0386613\"\n,\n\"0387369\"\n,\n\"0387372\"\n,\n\"0388163\"\n,\n\"0388944\"\n,\n\"0390116\"\n,\n\"0390200\"\n,\n\"0390230\"\n,\n\"0393175\"\n,\n\"0394320\"\n,\n\"0396728\"\n,\n\"0397890\"\n,\n\"0398597\"\n,\n\"0399517\"\n,\n\"0399645\"\n,\n\"0402060\"\n,\n\"0402330\"\n,\n\"0402757\"\n,\n\"0402982\"\n,\n\"0405178\"\n,\n\"0410305\"\n,\n\"0414013\"\n,\n\"0414155\"\n,\n\"0414585\"\n,\n\"0414808\"\n,\n\"0415456\"\n,\n\"0417170\"\n,\n\"0418010\"\n,\n\"0418980\"\n,\n\"0420166\"\n,\n\"0420517\"\n,\n\"0421010\"\n,\n\"0423230\"\n,\n\"0427780\"\n,\n\"0428169\"\n,\n\"0428301\"\n,\n\"0428922\"\n,\n\"0429234\"\n,\n\"0430732\"\n,\n\"0430923\"\n,\n\"0431377\"\n,\n\"0432123\"\n,\n\"0432137\"\n,\n\"0432185\"\n,\n\"0433597\"\n,\n\"0433632\"\n,\n\"0435502\"\n,\n\"0437115\"\n,\n\"0438225\"\n,\n\"0439207\"\n,\n\"0439512\"\n,\n\"0439939\"\n,\n\"0441863\"\n,\n\"0442973\"\n,\n\"0443285\"\n,\n\"0443542\"\n,\n\"0444427\"\n,\n\"0444860\"\n,\n\"0445000\"\n,\n\"0445394\"\n,\n\"0445460\"\n,\n\"0445856\"\n,\n\"0446026\"\n,\n\"0446442\"\n,\n\"0446886\"\n,\n\"0447407\"\n,\n\"0447823\"\n,\n\"0450198\"\n,\n\"0450410\"\n,\n\"0450486\"\n,\n\"0450570\"\n,\n\"0451149\"\n,\n\"0451437\"\n,\n\"0451884\"\n,\n\"0452658\"\n,\n\"0453660\"\n,\n\"0454337\"\n,\n\"0454802\"\n,\n\"0455402\"\n,\n\"0456990\"\n,\n\"0457050\"\n,\n\"0457285\"\n,\n\"0457303\"\n,\n\"0457511\"\n,\n\"0458860\"\n,\n\"0459058\"\n,\n\"0459394\"\n,\n\"0459682\"\n,\n\"0462235\"\n,\n\"0462762\"\n,\n\"0463217\"\n,\n\"0463918\"\n,\n\"0465007\"\n,\n\"0465485\"\n,\n\"0466804\"\n,\n\"0467324\"\n,\n\"0467341\"\n,\n\"0468958\"\n,\n\"0469114\"\n,\n\"0470691\"\n,\n\"0470768\"\n,\n\"0471230\"\n,\n\"0472367\"\n,\n\"0473175\"\n,\n\"0473939\"\n,\n\"0474889\"\n,\n\"0476665\"\n,\n\"0478042\"\n,\n\"0479055\"\n,\n\"0479579\"\n,\n\"0480234\"\n,\n\"0480970\"\n,\n\"0481167\"\n,\n\"0481358\"\n,\n\"0482038\"\n,\n\"0482631\"\n,\n\"0482836\"\n,\n\"0482981\"\n,\n\"0483498\"\n,\n\"0483578\"\n,\n\"0484657\"\n,\n\"0484660\"\n,\n\"0485052\"\n,\n\"0485545\"\n,\n\"0485820\"\n,\n\"0486096\"\n,\n\"0487530\"\n,\n\"0488525\"\n,\n\"0490450\"\n,\n\"0490654\"\n,\n\"0491907\"\n,\n\"0492510\"\n,\n\"0493190\"\n,\n\"0494522\"\n,\n\"0496454\"\n,\n\"0496534\"\n,\n\"0496760\"\n,\n\"0497068\"\n,\n\"0497578\"\n,\n\"0497821\"\n,\n\"0497929\"\n,\n\"0498227\"\n,\n\"0499337\"\n,\n\"0499642\"\n,\n\"0499833\"\n,\n\"0500312\"\n,\n\"0500468\"\n,\n\"0500981\"\n,\n\"0501360\"\n,\n\"0501467\"\n,\n\"0502626\"\n,\n\"0502710\"\n,\n\"0503306\"\n,\n\"0503531\"\n,\n\"0504131\"\n,\n\"0504176\"\n,\n\"0504420\"\n,\n\"0504797\"\n,\n\"0505269\"\n,\n\"0505349\"\n,\n\"0505654\"\n,\n\"0505717\"\n,\n\"0507298\"\n,\n\"0507489\"\n,\n\"0507683\"\n,\n\"0508967\"\n,\n\"0509393\"\n,\n\"0509807\"\n,\n\"0510093\"\n,\n\"0510652\"\n,\n\"0511329\"\n,\n\"0512997\"\n,\n\"0515692\"\n,\n\"0516053\"\n,\n\"0516771\"\n,\n\"0516799\"\n,\n\"0517115\"\n,\n\"0519020\"\n,\n\"0519432\"\n,\n\"0519720\"\n,\n\"0521017\"\n,\n\"0521607\"\n,\n\"0522192\"\n,\n\"0524635\"\n,\n\"0525172\"\n,\n\"0526540\"\n,\n\"0526695\"\n,\n\"0526935\"\n,\n\"0527810\"\n,\n\"0527837\"\n,\n\"0528197\"\n,\n\"0528534\"\n,\n\"0529308\"\n,\n\"0529901\"\n,\n\"0530313\"\n,\n\"0532037\"\n,\n\"0533036\"\n,\n\"0533292\"\n,\n\"0534434\"\n,\n\"0535114\"\n,\n\"0535416\"\n,\n\"0535930\"\n,\n\"0536064\"\n,\n\"0537670\"\n,\n\"0537750\"\n,\n\"0539426\"\n,\n\"0539759\"\n,\n\"0539998\"\n,\n\"0540240\"\n,\n\"0540938\"\n,\n\"0541045\"\n,\n\"0541284\"\n,\n\"0543060\"\n,\n\"0544712\"\n,\n\"0544948\"\n,\n\"0546103\"\n,\n\"0546228\"\n,\n\"0546342\"\n,\n\"0547706\"\n,\n\"0548608\"\n,\n\"0548944\"\n,\n\"0549128\"\n,\n\"0549561\"\n,\n\"0550626\"\n,\n\"0551528\"\n,\n\"0552500\"\n,\n\"0553210\"\n,\n\"0554174\"\n,\n\"0554525\"\n,\n\"0555298\"\n,\n\"0555461\"\n,\n\"0556426\"\n,\n\"0556457\"\n,\n\"0558455\"\n,\n\"0558615\"\n,\n\"0559662\"\n,\n\"0559853\"\n,\n\"0561278\"\n,\n\"0561361\"\n,\n\"0561375\"\n,\n\"0561712\"\n,\n\"0562055\"\n,\n\"0562867\"\n,\n\"0564660\"\n,\n\"0565066\"\n,\n\"0565900\"\n,\n\"0566079\"\n,\n\"0566239\"\n,\n\"0569569\"\n,\n\"0569812\"\n,\n\"0570480\"\n,\n\"0571299\"\n,\n\"0571619\"\n,\n\"0571670\"\n,\n\"0572777\"\n,\n\"0573089\"\n,\n\"0573430\"\n,\n\"0573491\"\n,\n\"0573860\"\n,\n\"0574678\"\n,\n\"0575202\"\n,\n\"0576010\"\n,\n\"0577280\"\n,\n\"0577710\"\n,\n\"0578660\"\n,\n\"0580214\"\n,\n\"0580689\"\n,\n\"0581084\"\n,\n\"0581386\"\n,\n\"0582784\"\n,\n\"0585109\"\n,\n\"0586461\"\n,\n\"0586649\"\n,\n\"0587044\"\n,\n\"0591234\"\n,\n\"0594103\"\n,\n\"0595022\"\n,\n\"0595098\"\n,\n\"0596927\"\n,\n\"0601082\"\n,\n\"0601131\"\n,\n\"0601558\"\n,\n\"0602050\"\n,\n\"0602557\"\n,\n\"0602668\"\n,\n\"0602845\"\n,\n\"0602987\"\n,\n\"0603029\"\n,\n\"0603206\"\n,\n\"0603223\"\n,\n\"0603844\"\n,\n\"0603907\"\n,\n\"0604604\"\n,\n\"0605443\"\n,\n\"0605491\"\n,\n\"0605780\"\n,\n\"0606540\"\n,\n\"0607011\"\n,\n\"0607629\"\n,\n\"0607810\"\n,\n\"0608680\"\n,\n\"0608787\"\n,\n\"0608950\"\n,\n\"0609440\"\n,\n\"0609498\"\n,\n\"0609533\"\n,\n\"0610042\"\n,\n\"0610264\"\n,\n\"0610632\"\n,\n\"0610840\"\n,\n\"0611232\"\n,\n\"0612453\"\n,\n\"0612661\"\n,\n\"0613501\"\n,\n\"0613688\"\n,\n\"0614035\"\n,\n\"0615530\"\n,\n\"0615672\"\n,\n\"0615926\"\n,\n\"0615988\"\n,\n\"0616748\"\n,\n\"0617223\"\n,\n\"0617844\"\n,\n\"0617907\"\n,\n\"0618590\"\n,\n\"0618670\"\n,\n\"0619811\"\n,\n\"0619842\"\n,\n\"0622169\"\n,\n\"0622380\"\n,\n\"0622922\"\n,\n\"0623487\"\n,\n\"0623744\"\n,\n\"0624233\"\n,\n\"0624295\"\n,\n\"0625950\"\n,\n\"0626071\"\n,\n\"0626661\"\n,\n\"0626835\"\n,\n\"0627040\"\n,\n\"0628740\"\n,\n\"0628878\"\n,\n\"0630754\"\n,\n\"0631243\"\n,\n\"0631337\"\n,\n\"0632690\"\n,\n\"0633207\"\n,\n\"0633318\"\n,\n\"0634160\"\n,\n\"0634285\"\n,\n\"0634414\"\n,\n\"0634764\"\n,\n\"0636218\"\n,\n\"0636620\"\n,\n\"0637408\"\n,\n\"0638441\"\n,\n\"0638486\"\n,\n\"0638632\"\n,\n\"0638806\"\n,\n\"0639090\"\n,\n\"0639437\"\n,\n\"0639485\"\n,\n\"0639739\"\n,\n\"0640026\"\n,\n\"0640168\"\n,\n\"0640598\"\n,\n\"0640792\"\n,\n\"0640952\"\n,\n\"0641140\"\n,\n\"0641810\"\n,\n\"0642010\"\n,\n\"0642149\"\n,\n\"0642294\"\n,\n\"0642360\"\n,\n\"0642790\"\n,\n\"0642995\"\n,\n\"0643356\"\n,\n\"0644084\"\n,\n\"0645371\"\n,\n\"0645816\"\n,\n\"0645992\"\n,\n\"0647734\"\n,\n\"0648160\"\n,\n\"0649701\"\n,\n\"0649732\"\n,\n\"0649891\"\n,\n\"0651622\"\n,\n\"0651795\"\n,\n\"0651861\"\n,\n\"0652590\"\n,\n\"0652985\"\n,\n\"0653058\"\n,\n\"0653235\"\n,\n\"0654091\"\n,\n\"0654380\"\n,\n\"0654886\"\n,\n\"0654921\"\n,\n\"0655552\"\n,\n\"0656326\"\n,\n\"0656471\"\n,\n\"0656503\"\n,\n\"0656548\"\n,\n\"0656659\"\n,\n\"0656787\"\n,\n\"0656805\"\n,\n\"0656867\"\n,\n\"0656981\"\n,\n\"0657103\"\n,\n\"0657373\"\n,\n\"0658244\"\n,\n\"0658532\"\n,\n\"0658563\"\n,\n\"0658626\"\n,\n\"0659656\"\n,\n\"0659961\"\n,\n\"0662146\"\n,\n\"0663256\"\n,\n\"0663592\"\n,\n\"0664100\"\n,\n\"0664574\"\n,\n\"0665050\"\n,\n\"0666267\"\n,\n\"0666732\"\n,\n\"0667682\"\n,\n\"0668553\"\n,\n\"0668838\"\n,\n\"0669119\"\n,\n\"0669712\"\n,\n\"0670013\"\n,\n\"0670235\"\n,\n\"0670283\"\n,\n\"0670329\"\n,\n\"0670970\"\n,\n\"0671460\"\n,\n\"0671758\"\n,\n\"0675848\"\n,\n\"0676465\"\n,\n\"0676881\"\n,\n\"0677450\"\n,\n\"0677513\"\n,\n\"0677624\"\n,\n\"0678610\"\n,\n\"0678956\"\n,\n\"0679299\"\n,\n\"0679684\"\n,\n\"0680096\"\n,\n\"0680180\"\n,\n\"0680367\"\n,\n\"0682206\"\n,\n\"0682268\"\n,\n\"0682476\"\n,\n\"0683156\"\n,\n\"0684679\"\n,\n\"0684714\"\n,\n\"0684728\"\n,\n\"0687166\"\n,\n\"0687645\"\n,\n\"0687659\"\n,\n\"0688040\"\n,\n\"0688741\"\n,\n\"0689737\"\n,\n\"0689851\"\n,\n\"0690024\"\n,\n\"0690631\"\n,\n\"0690840\"\n,\n\"0691852\"\n,\n\"0691950\"\n,\n\"0692053\"\n,\n\"0692084\"\n,\n\"0692213\"\n,\n\"0692435\"\n,\n\"0692550\"\n,\n\"0692737\"\n,\n\"0693129\"\n,\n\"0693337\"\n,\n\"0694114\"\n,\n\"0694242\"\n,\n\"0695831\"\n,\n\"0696032\"\n,\n\"0696109\"\n,\n\"0696174\"\n,\n\"0696414\"\n,\n\"0696525\"\n,\n\"0696716\"\n,\n\"0697219\"\n,\n\"0697697\"\n,\n\"0700299\"\n,\n\"0700667\"\n,\n\"0700781\"\n,\n\"0701971\"\n,\n\"0702000\"\n,\n\"0702061\"\n,\n\"0702124\"\n,\n\"0702297\"\n,\n\"0702953\"\n,\n\"0703633\"\n,\n\"0703681\"\n,\n\"0704202\"\n,\n\"0704300\"\n,\n\"0704441\"\n,\n\"0704712\"\n,\n\"0704837\"\n,\n\"0706071\"\n,\n\"0706360\"\n,\n\"0706440\"\n,\n\"0707529\"\n,\n\"0707594\"\n,\n\"0707980\"\n,\n\"0708291\"\n,\n\"0708642\"\n,\n\"0709239\"\n,\n\"0709530\"\n,\n\"0709704\"\n,\n\"0710421\"\n,\n\"0710563\"\n,\n\"0711257\"\n,\n\"0711465\"\n,\n\"0712384\"\n,\n\"0712420\"\n,\n\"0712592\"\n,\n\"0712770\"\n,\n\"0712960\"\n,\n\"0713016\"\n,\n\"0713100\"\n,\n\"0714445\"\n,\n\"0714698\"\n,\n\"0715857\"\n,\n\"0715940\"\n,\n\"0716058\"\n,\n\"0716110\"\n,\n\"0716696\"\n,\n\"0717074\"\n,\n\"0717456\"\n,\n\"0717519\"\n,\n\"0718300\"\n,\n\"0720536\"\n,\n\"0721295\"\n,\n\"0722410\"\n,\n\"0722964\"\n,\n\"0722978\"\n,\n\"0723516\"\n,\n\"0723835\"\n,\n\"0724053\"\n,\n\"0724546\"\n,\n\"0725340\"\n,\n\"0725900\"\n,\n\"0727911\"\n,\n\"0728254\"\n,\n\"0728382\"\n,\n\"0728493\"\n,\n\"0728924\"\n,\n\"0729843\"\n,\n\"0730161\"\n,\n\"0731001\"\n,\n\"0731285\"\n,\n\"0732222\"\n,\n\"0732572\"\n,\n\"0732750\"\n,\n\"0733523\"\n,\n\"0734217\"\n,\n\"0734952\"\n,\n\"0735490\"\n,\n\"0735570\"\n,\n\"0736183\"\n,\n\"0737484\"\n,\n\"0737595\"\n,\n\"0738546\"\n,\n\"0738550\"\n,\n\"0739354\"\n,\n\"0740010\"\n,\n\"0740440\"\n,\n\"0741213\"\n,\n\"0741710\"\n,\n\"0742448\"\n,\n\"0743079\"\n,\n\"0743880\"\n,\n\"0744429\"\n,\n\"0745046\"\n,\n\"0746430\"\n,\n\"0746458\"\n,\n\"0746538\"\n,\n\"0747811\"\n,\n\"0748030\"\n,\n\"0748057\"\n,\n\"0748217\"\n,\n\"0748234\"\n,\n\"0749490\"\n,\n\"0750811\"\n,\n\"0751088\"\n,\n\"0753183\"\n,\n\"0753680\"\n,\n\"0754182\"\n,\n\"0754520\"\n,\n\"0755691\"\n,\n\"0755879\"\n,\n\"0755962\"\n,\n\"0756101\"\n,\n\"0756177\"\n,\n\"0756230\"\n,\n\"0756576\"\n,\n\"0756992\"\n,\n\"0757100\"\n,\n\"0759032\"\n,\n\"0759268\"\n,\n\"0760561\"\n,\n\"0761720\"\n,\n\"0761734\"\n,\n\"0762573\"\n,\n\"0762640\"\n,\n\"0762955\"\n,\n\"0762972\"\n,\n\"0763461\"\n,\n\"0764089\"\n,\n\"0764110\"\n,\n\"0764665\"\n,\n\"0765154\"\n,\n\"0766743\"\n,\n\"0768040\"\n,\n\"0768387\"\n,\n\"0768550\"\n,\n\"0768661\"\n,\n\"0770708\"\n,\n\"0771311\"\n,\n\"0771932\"\n,\n\"0771950\"\n,\n\"0772019\"\n,\n\"0772258\"\n,\n\"0773163\"\n,\n\"0773500\"\n,\n\"0773642\"\n,\n\"0773784\"\n,\n\"0774416\"\n,\n\"0774610\"\n,\n\"0775352\"\n,\n\"0776032\"\n,\n\"0776480\"\n,\n\"0776670\"\n,\n\"0776955\"\n,\n\"0777076\"\n,\n\"0777093\"\n,\n\"0777812\"\n,\n\"0779123\"\n,\n\"0780142\"\n,\n\"0780444\"\n,\n\"0780458\"\n,\n\"0783472\"\n,\n\"0783663\"\n,\n\"0783979\"\n,\n\"0785006\"\n,\n\"0785658\"\n,\n\"0785772\"\n,\n\"0785818\"\n,\n\"0786067\"\n,\n\"0786723\"\n,\n\"0787816\"\n,\n\"0788305\"\n,\n\"0788416\"\n,\n\"0789383\"\n,\n\"0789703\"\n,\n\"0789987\"\n,\n\"0790576\"\n,\n\"0790900\"\n,\n\"0791770\"\n,\n\"0792349\"\n,\n\"0792668\"\n,\n\"0794108\"\n,\n\"0794316\"\n,\n\"0794524\"\n,\n\"0796265\"\n,\n\"0798215\"\n,\n\"0799245\"\n,\n\"0799600\"\n,\n\"0800296\"\n,\n\"0800328\"\n,\n\"0800376\"\n,\n\"0801899\"\n,\n\"0803214\"\n,\n\"0803950\"\n,\n\"0803994\"\n,\n\"0804515\"\n,\n\"0804563\"\n,\n\"0804723\"\n,\n\"0804976\"\n,\n\"0805083\"\n,\n\"0805146\"\n,\n\"0805479\"\n,\n\"0805850\"\n,\n\"0806290\"\n,\n\"0806815\"\n,\n\"0807002\"\n,\n\"0807158\"\n,\n\"0807210\"\n,\n\"0807415\"\n,\n\"0807685\"\n,\n\"0807876\"\n,\n\"0807973\"\n,\n\"0808414\"\n,\n\"0809427\"\n,\n\"0809541\"\n,\n\"0811747\"\n,\n\"0812059\"\n,\n\"0812187\"\n,\n\"0812750\"\n,\n\"0813266\"\n,\n\"0813350\"\n,\n\"0813793\"\n,\n\"0813842\"\n,\n\"0814505\"\n,\n\"0814540\"\n,\n\"0814713\"\n,\n\"0815632\"\n,\n\"0816104\"\n,\n\"0816503\"\n,\n\"0816756\"\n,\n\"0816947\"\n,\n\"0817010\"\n,\n\"0817023\"\n,\n\"0818386\"\n,\n\"0818550\"\n,\n\"0818710\"\n,\n\"0818768\"\n,\n\"0818834\"\n,\n\"0820148\"\n,\n\"0820630\"\n,\n\"0820769\"\n,\n\"0820932\"\n,\n\"0821292\"\n,\n\"0821421\"\n,\n\"0821594\"\n,\n\"0821643\"\n,\n\"0822066\"\n,\n\"0822243\"\n,\n\"0822310\"\n,\n\"0822403\"\n,\n\"0822611\"\n,\n\"0822687\"\n,\n\"0822798\"\n,\n\"0823145\"\n,\n\"0823193\"\n,\n\"0823225\"\n,\n\"0823305\"\n,\n\"0823384\"\n,\n\"0823589\"\n,\n\"0823877\"\n,\n\"0823880\"\n,\n\"0824207\"\n,\n\"0824290\"\n,\n\"0824415\"\n,\n\"0824477\"\n,\n\"0824654\"\n,\n\"0826205\"\n,\n\"0826489\"\n,\n\"0826538\"\n,\n\"0827873\"\n,\n\"0828439\"\n,\n\"0828456\"\n,\n\"0828727\"\n,\n\"0830620\"\n,\n\"0831282\"\n,\n\"0831650\"\n,\n\"0831807\"\n,\n\"0832073\"\n,\n\"0832965\"\n,\n\"0833086\"\n,\n\"0833121\"\n,\n\"0833229\"\n,\n\"0833836\"\n,\n\"0834085\"\n,\n\"0834516\"\n,\n\"0834835\"\n,\n\"0835150\"\n,\n\"0835550\"\n,\n\"0836944\"\n,\n\"0836989\"\n,\n\"0837561\"\n,\n\"0837624\"\n,\n\"0837991\"\n,\n\"0838668\"\n,\n\"0840003\"\n,\n\"0840402\"\n,\n\"0840513\"\n,\n\"0841349\"\n,\n\"0842303\"\n,\n\"0842907\"\n,\n\"0842924\"\n,\n\"0843253\"\n,\n\"0843746\"\n,\n\"0843891\"\n,\n\"0844092\"\n,\n\"0844860\"\n,\n\"0845074\"\n,\n\"0845425\"\n,\n\"0845695\"\n,\n\"0845775\"\n,\n\"0845792\"\n,\n\"0845918\"\n,\n\"0846184\"\n,\n\"0846220\"\n,\n\"0846760\"\n,\n\"0846806\"\n,\n\"0846934\"\n,\n\"0847250\"\n,\n\"0847330\"\n,\n\"0847503\"\n,\n\"0847950\"\n,\n\"0848010\"\n,\n\"0848262\"\n,\n\"0849195\"\n,\n\"0849483\"\n,\n\"0849550\"\n,\n\"0850995\"\n,\n\"0851228\"\n,\n\"0851276\"\n,\n\"0851498\"\n,\n\"0851520\"\n,\n\"0852053\"\n,\n\"0852067\"\n,\n\"0853049\"\n,\n\"0853260\"\n,\n\"0854096\"\n,\n\"0854162\"\n,\n\"0854180\"\n,\n\"0854290\"\n,\n\"0854607\"\n,\n\"0854655\"\n,\n\"0855765\"\n,\n\"0855859\"\n,\n\"0856365\"\n,\n\"0856428\"\n,\n\"0856493\"\n,\n\"0856622\"\n,\n\"0857843\"\n,\n\"0857857\"\n,\n\"0858013\"\n,\n\"0858346\"\n,\n\"0858350\"\n,\n\"0858839\"\n,\n\"0859057\"\n,\n\"0860510\"\n,\n\"0860732\"\n,\n\"0861394\"\n,\n\"0861412\"\n,\n\"0862106\"\n,\n\"0862110\"\n,\n\"0862220\"\n,\n\"0862234\"\n,\n\"0862536\"\n,\n\"0863073\"\n,\n\"0863791\"\n,\n\"0863868\"\n,\n\"0864215\"\n,\n\"0864374\"\n,\n\"0864628\"\n,\n\"0864725\"\n,\n\"0865023\"\n,\n\"0865134\"\n,\n\"0865148\"\n,\n\"0865387\"\n,\n\"0865440\"\n,\n\"0865550\"\n,\n\"0865883\"\n,\n\"0866102\"\n,\n\"0866195\"\n,\n\"0867448\"\n,\n\"0868242\"\n,\n\"0869192\"\n,\n\"0869318\"\n,\n\"0869814\"\n,\n\"0871420\"\n,\n\"0871829\"\n,\n\"0872335\"\n,\n\"0872637\"\n,\n\"0873698\"\n,\n\"0874812\"\n,\n\"0874985\"\n,\n\"0875027\"\n,\n\"0876171\"\n,\n\"0876300\"\n,\n\"0877025\"\n,\n\"0878534\"\n,\n\"0879440\"\n,\n\"0879502\"\n,\n\"0879994\"\n,\n\"0880344\"\n,\n\"0880601\"\n,\n\"0880663\"\n,\n\"0880920\"\n,\n\"0880996\"\n,\n\"0881055\"\n,\n\"0881756\"\n,\n\"0881773\"\n,\n\"0882010\"\n,\n\"0882182\"\n,\n\"0882262\"\n,\n\"0883120\"\n,\n\"0883563\"\n,\n\"0884864\"\n,\n\"0886064\"\n,\n\"0886158\"\n,\n\"0886637\"\n,\n\"0886703\"\n,\n\"0886751\"\n,\n\"0887015\"\n,\n\"0887237\"\n,\n\"0887414\"\n,\n\"0887747\"\n,\n\"0888173\"\n,\n\"0888284\"\n,\n\"0888444\"\n,\n\"0888729\"\n,\n\"0890126\"\n,\n\"0890795\"\n,\n\"0890892\"\n,\n\"0891139\"\n,\n\"0891843\"\n,\n\"0893171\"\n,\n\"0893199\"\n,\n\"0893408\"\n,\n\"0893442\"\n,\n\"0893584\"\n,\n\"0893650\"\n,\n\"0894392\"\n,\n\"0894823\"\n,\n\"0895232\"\n,\n\"0895410\"\n,\n\"0895499\"\n,\n\"0895676\"\n,\n\"0895760\"\n,\n\"0895790\"\n,\n\"0898146\"\n,\n\"0898531\"\n,\n\"0898562\"\n,\n\"0898593\"\n,\n\"0898660\"\n,\n\"0898740\"\n,\n\"0898864\"\n,\n\"0898989\"\n,\n\"0899145\"\n,\n\"0899287\"\n,\n\"0899464\"\n,\n\"0900068\"\n,\n\"0900165\"\n,\n\"0900280\"\n,\n\"0901116\"\n,\n\"0901470\"\n,\n\"0901497\"\n,\n\"0902913\"\n,\n\"0902958\"\n,\n\"0903017\"\n,\n\"0904925\"\n,\n\"0904942\"\n,\n\"0905157\"\n,\n\"0906173\"\n,\n\"0906923\"\n,\n\"0906937\"\n,\n\"0906971\"\n,\n\"0907058\"\n,\n\"0907297\"\n,\n\"0907409\"\n,\n\"0907537\"\n,\n\"0908154\"\n,\n\"0908536\"\n,\n\"0908775\"\n,\n\"0908792\"\n,\n\"0909518\"\n,\n\"0910030\"\n,\n\"0910620\"\n,\n\"0910762\"\n,\n\"0911584\"\n,\n\"0911681\"\n,\n\"0911838\"\n,\n\"0913118\"\n,\n\"0913468\"\n,\n\"0913485\"\n,\n\"0913950\"\n,\n\"0914068\"\n,\n\"0914390\"\n,\n\"0914835\"\n,\n\"0915630\"\n,\n\"0915660\"\n,\n\"0915737\"\n,\n\"0915768\"\n,\n\"0915865\"\n,\n\"0916146\"\n,\n\"0916368\"\n,\n\"0916850\"\n,\n\"0918100\"\n,\n\"0918113\"\n,\n\"0918175\"\n,\n\"0918588\"\n,\n\"0918765\"\n,\n\"0919080\"\n,\n\"0919587\"\n,\n\"0919640\"\n,\n\"0920242\"\n,\n\"0921064\"\n,\n\"0921779\"\n,\n\"0922587\"\n,\n\"0923062\"\n,\n\"0923139\"\n,\n\"0923320\"\n,\n\"0923492\"\n,\n\"0923524\"\n,\n\"0923891\"\n,\n\"0924169\"\n,\n\"0924745\"\n,\n\"0924922\"\n,\n\"0925203\"\n,\n\"0925296\"\n,\n\"0925442\"\n,\n\"0925519\"\n,\n\"0927326\"\n,\n\"0927579\"\n,\n\"0927950\"\n,\n\"0928356\"\n,\n\"0929040\"\n,\n\"0929200\"\n,\n\"0929882\"\n,\n\"0930246\"\n,\n\"0931293\"\n,\n\"0931564\"\n,\n\"0931769\"\n,\n\"0931915\"\n,\n\"0932036\"\n,\n\"0932258\"\n,\n\"0933274\"\n,\n\"0933531\"\n,\n\"0933593\"\n,\n\"0933930\"\n,\n\"0934225\"\n,\n\"0934416\"\n,\n\"0934638\"\n,\n\"0934721\"\n,\n\"0934957\"\n,\n\"0935002\"\n,\n\"0935560\"\n,\n\"0935751\"\n,\n\"0936636\"\n,\n\"0937427\"\n,\n\"0938218\"\n,\n\"0938221\"\n,\n\"0938394\"\n,\n\"0938426\"\n,\n\"0938953\"\n,\n\"0939009\"\n,\n\"0939620\"\n,\n\"0940750\"\n,\n\"0940891\"\n,\n\"0941329\"\n,\n\"0941665\"\n,\n\"0941731\"\n,\n\"0942328\"\n,\n\"0942380\"\n,\n\"0942983\"\n,\n\"0943056\"\n,\n\"0943934\"\n,\n\"0944197\"\n,\n\"0945099\"\n,\n\"0945151\"\n,\n\"0945231\"\n,\n\"0945259\"\n,\n\"0945689\"\n,\n\"0945738\"\n,\n\"0945963\"\n,\n\"0946390\"\n,\n\"0946532\"\n,\n\"0946771\"\n,\n\"0947975\"\n,\n\"0948513\"\n,\n\"0948592\"\n,\n\"0949144\"\n,\n\"0950021\"\n,\n\"0950420\"\n,\n\"0950434\"\n,\n\"0950545\"\n,\n\"0950576\"\n,\n\"0951180\"\n,\n\"0951447\"\n,\n\"0951607\"\n,\n\"0951718\"\n,\n\"0951880\"\n,\n\"0952429\"\n,\n\"0952699\"\n,\n\"0953476\"\n,\n\"0954649\"\n,\n\"0956185\"\n,\n\"0956328\"\n,\n\"0957743\"\n,\n\"0958468\"\n,\n\"0959710\"\n,\n\"0959915\"\n,\n\"0960140\"\n,\n\"0960979\"\n,\n\"0961072\"\n,\n\"0961121\"\n,\n\"0961263\"\n,\n\"0961950\"\n,\n\"0962373\"\n,\n\"0962422\"\n,\n\"0962436\"\n,\n\"0963404\"\n,\n\"0964864\"\n,\n\"0964989\"\n,\n\"0964992\"\n,\n\"0965017\"\n,\n\"0965943\"\n,\n\"0966717\"\n,\n\"0966800\"\n,\n\"0966862\"\n,\n\"0967955\"\n,\n\"0968080\"\n,\n\"0968701\"\n,\n\"0968809\"\n,\n\"0969235\"\n,\n\"0969679\"\n,\n\"0973411\"\n,\n\"0973807\"\n,\n\"0973886\"\n,\n\"0975010\"\n,\n\"0975246\"\n,\n\"0975995\"\n,\n\"0976228\"\n,\n\"0977230\"\n,\n\"0977768\"\n,\n\"0977980\"\n,\n\"0978531\"\n,\n\"0978975\"\n,\n\"0979242\"\n,\n\"0980310\"\n,\n\"0980657\"\n,\n\"0981753\"\n,\n\"0981913\"\n,\n\"0981944\"\n,\n\"0981961\"\n,\n\"0982096\"\n,\n\"0982322\"\n,\n\"0982721\"\n,\n\"0982770\"\n,\n\"0983637\"\n,\n\"0983831\"\n,\n\"0983956\"\n,\n\"0985812\"\n,\n\"0988885\"\n,\n\"0989454\"\n,\n\"0989628\"\n,\n\"0990473\"\n,\n\"0990886\"\n,\n\"0991056\"\n,\n\"0991060\"\n,\n\"0992898\"\n,\n\"0993165\"\n,\n\"0993293\"\n,\n\"0993467\"\n,\n\"0993790\"\n,\n\"0994546\"\n,\n\"0994914\"\n,\n\"0995066\"\n,\n\"0996211\"\n,\n\"0996607\"\n,\n\"0996797\"\n,\n\"0997095\"\n,\n\"0997765\"\n,\n\"0999780\"\n,\n\"0999857\"\n,\n\"100000\"\n,\n\"100001\"\n,\n\"100002\"\n,\n\"100003\"\n,\n\"100004\"\n,\n\"100005\"\n,\n\"100006\"\n,\n\"100007\"\n,\n\"100008\"\n,\n\"100009\"\n,\n\"100010\"\n,\n\"100011\"\n,\n\"100013\"\n,\n\"100014\"\n,\n\"100016\"\n,\n\"100017\"\n,\n\"1000172\"\n,\n\"100018\"\n,\n\"100019\"\n,\n\"100020\"\n,\n\"1000204\"\n,\n\"100021\"\n,\n\"100023\"\n,\n\"100024\"\n,\n\"1000249\"\n,\n\"100025\"\n,\n\"100026\"\n,\n\"100027\"\n,\n\"100028\"\n,\n\"100029\"\n,\n\"1000297\"\n,\n\"100030\"\n,\n\"1000301\"\n,\n\"100031\"\n,\n\"100032\"\n,\n\"100033\"\n,\n\"100034\"\n,\n\"100035\"\n,\n\"100036\"\n,\n\"100037\"\n,\n\"100038\"\n,\n\"100039\"\n,\n\"100040\"\n,\n\"100041\"\n,\n\"100042\"\n,\n\"100043\"\n,\n\"100044\"\n,\n\"100045\"\n,\n\"100046\"\n,\n\"100047\"\n,\n\"100048\"\n,\n\"100049\"\n,\n\"100050\"\n,\n\"100051\"\n,\n\"100052\"\n,\n\"100053\"\n,\n\"100054\"\n,\n\"100055\"\n,\n\"100056\"\n,\n\"100057\"\n,\n\"100058\"\n,\n\"100059\"\n,\n\"1000599\"\n,\n\"100060\"\n,\n\"100061\"\n,\n\"100062\"\n,\n\"100063\"\n,\n\"100064\"\n,\n\"100065\"\n,\n\"100066\"\n,\n\"100067\"\n,\n\"100068\"\n,\n\"100069\"\n,\n\"100070\"\n,\n\"100071\"\n,\n\"100072\"\n,\n\"100073\"\n,\n\"100074\"\n,\n\"1000745\"\n,\n\"100075\"\n,\n\"100076\"\n,\n\"100077\"\n,\n\"100078\"\n,\n\"100079\"\n,\n\"100081\"\n,\n\"100082\"\n,\n\"1000825\"\n,\n\"100083\"\n,\n\"100084\"\n,\n\"1000842\"\n,\n\"100085\"\n,\n\"100086\"\n,\n\"100087\"\n,\n\"100089\"\n,\n\"100090\"\n,\n\"100091\"\n,\n\"100092\"\n,\n\"100093\"\n,\n\"100095\"\n,\n\"100096\"\n,\n\"100097\"\n,\n\"100098\"\n,\n\"100099\"\n,\n\"100100\"\n,\n\"100101\"\n,\n\"100102\"\n,\n\"100103\"\n,\n\"100104\"\n,\n\"100105\"\n,\n\"100106\"\n,\n\"100107\"\n,\n\"100108\"\n,\n\"100109\"\n,\n\"100111\"\n,\n\"100112\"\n,\n\"100113\"\n,\n\"100114\"\n,\n\"100116\"\n,\n\"100117\"\n,\n\"100118\"\n,\n\"100119\"\n,\n\"100122\"\n,\n\"100123\"\n,\n\"100124\"\n,\n\"100125\"\n,\n\"100126\"\n,\n\"100128\"\n,\n\"100129\"\n,\n\"100131\"\n,\n\"100133\"\n,\n\"100134\"\n,\n\"100135\"\n,\n\"100136\"\n,\n\"100137\"\n,\n\"100138\"\n,\n\"100139\"\n,\n\"100140\"\n,\n\"100141\"\n,\n\"100142\"\n,\n\"100143\"\n,\n\"100144\"\n,\n\"100145\"\n,\n\"100146\"\n,\n\"100147\"\n,\n\"100148\"\n,\n\"100149\"\n,\n\"100150\"\n,\n\"100151\"\n,\n\"100152\"\n,\n\"1001522\"\n,\n\"100153\"\n,\n\"100154\"\n,\n\"100155\"\n,\n\"100156\"\n,\n\"100157\"\n,\n\"100158\"\n,\n\"100159\"\n,\n\"100160\"\n,\n\"100161\"\n,\n\"100162\"\n,\n\"100163\"\n,\n\"100164\"\n,\n\"100165\"\n,\n\"100166\"\n,\n\"100167\"\n,\n\"100168\"\n,\n\"100173\"\n,\n\"100174\"\n,\n\"100175\"\n,\n\"100177\"\n,\n\"100178\"\n,\n\"100179\"\n,\n\"100180\"\n,\n\"100181\"\n,\n\"100182\"\n,\n\"100183\"\n,\n\"1001872\"\n,\n\"1002650\"\n,\n\"1002694\"\n,\n\"1002760\"\n,\n\"1004276\"\n,\n\"1004405\"\n,\n\"1004564\"\n,\n\"1004835\"\n,\n\"1004852\"\n,\n\"1005386\"\n,\n\"1005466\"\n,\n\"1006434\"\n,\n\"1006496\"\n,\n\"1006690\"\n,\n\"1006944\"\n,\n\"1006958\"\n,\n\"1007211\"\n,\n\"1007398\"\n,\n\"1007575\"\n,\n\"1007610\"\n,\n\"1007926\"\n,\n\"1008269\"\n,\n\"1008304\"\n,\n\"1008862\"\n,\n\"1008876\"\n,\n\"1009130\"\n,\n\"1009191\"\n,\n\"1009400\"\n,\n\"1009622\"\n,\n\"1009636\"\n,\n\"1009972\"\n,\n\"1010193\"\n,\n\"1010225\"\n,\n\"1010290\"\n,\n\"1010319\"\n,\n\"1010589\"\n,\n\"1010669\"\n,\n\"1010718\"\n,\n\"1010832\"\n,\n\"1010974\"\n,\n\"1011095\"\n,\n\"1011207\"\n,\n\"1011560\"\n,\n\"1011591\"\n,\n\"1011720\"\n,\n\"1011893\"\n,\n\"1011956\"\n,\n\"1011973\"\n,\n\"1012174\"\n,\n\"1012587\"\n,\n\"1012605\"\n,\n\"1012684\"\n,\n\"1013014\"\n,\n\"1013093\"\n,\n\"1013489\"\n,\n\"1013670\"\n,\n\"1014000\"\n,\n\"1014044\"\n,\n\"1014058\"\n,\n\"1014061\"\n,\n\"1014092\"\n,\n\"1014138\"\n,\n\"1014141\"\n,\n\"1014350\"\n,\n\"1015091\"\n,\n\"1015616\"\n,\n\"1015678\"\n,\n\"1015730\"\n,\n\"1015918\"\n,\n\"1016220\"\n,\n\"1016375\"\n,\n\"1016469\"\n,\n\"1016632\"\n,\n\"1016694\"\n,\n\"1016709\"\n,\n\"1016810\"\n,\n\"1016982\"\n,\n\"1016996\"\n,\n\"1017007\"\n,\n\"1017038\"\n,\n\"1017069\"\n,\n\"1017170\"\n,\n\"1017232\"\n,\n\"1017277\"\n,\n\"1017485\"\n,\n\"1017631\"\n,\n\"1017805\"\n,\n\"1017836\"\n,\n\"1017950\"\n,\n\"1017964\"\n,\n\"1017978\"\n,\n\"1018228\"\n,\n\"1018422\"\n,\n\"1018436\"\n,\n\"1018453\"\n,\n\"1018484\"\n,\n\"1018520\"\n,\n\"1018658\"\n,\n\"1018741\"\n,\n\"1018818\"\n,\n\"1018849\"\n,\n\"1018932\"\n,\n\"1019022\"\n,\n\"1019084\"\n,\n\"1019466\"\n,\n\"1019515\"\n,\n\"1019737\"\n,\n\"1019785\"\n,\n\"1020659\"\n,\n\"1022515\"\n,\n\"1023368\"\n,\n\"1024239\"\n,\n\"1024287\"\n,\n\"1024447\"\n,\n\"1026622\"\n,\n\"1027156\"\n,\n\"1027395\"\n,\n\"1029487\"\n,\n\"1029810\"\n,\n\"1030427\"\n,\n\"1030809\"\n,\n\"1031350\"\n,\n\"1031620\"\n,\n\"1031745\"\n,\n\"1032091\"\n,\n\"1032279\"\n,\n\"1032300\"\n,\n\"1032439\"\n,\n\"1033073\"\n,\n\"1033438\"\n,\n\"1033566\"\n,\n\"1034330\"\n,\n\"1034485\"\n,\n\"1034978\"\n,\n\"1035786\"\n,\n\"1035963\"\n,\n\"1036740\"\n,\n\"1036993\"\n,\n\"1037209\"\n,\n\"1037274\"\n,\n\"1037496\"\n,\n\"1038287\"\n,\n\"1039450\"\n,\n\"1039814\"\n,\n\"1040180\"\n,\n\"1040260\"\n,\n\"1040323\"\n,\n\"1040385\"\n,\n\"1041561\"\n,\n\"1041607\"\n,\n\"1042113\"\n,\n\"1042352\"\n,\n\"1043365\"\n,\n\"1043476\"\n,\n\"1043750\"\n,\n\"1043907\"\n,\n\"1044683\"\n,\n\"1044910\"\n,\n\"1045092\"\n,\n\"1045808\"\n,\n\"1046217\"\n,\n\"1046570\"\n,\n\"1047250\"\n,\n\"1048170\"\n,\n\"1048548\"\n,\n\"1048551\"\n,\n\"1049280\"\n,\n\"1049308\"\n,\n\"1049738\"\n,\n\"1049866\"\n,\n\"1049929\"\n,\n\"1050073\"\n,\n\"1051485\"\n,\n\"1052804\"\n,\n\"1054291\"\n,\n\"1054690\"\n,\n\"1056020\"\n,\n\"1056290\"\n,\n\"1056318\"\n,\n\"1057431\"\n,\n\"1057702\"\n,\n\"1058028\"\n,\n\"1058298\"\n,\n\"1058826\"\n,\n\"1059488\"\n,\n\"1059762\"\n,\n\"1059970\"\n,\n\"1060619\"\n,\n\"1060653\"\n,\n\"1060667\"\n,\n\"1061350\"\n,\n\"1061461\"\n,\n\"1062839\"\n,\n\"1064136\"\n,\n\"1064140\"\n,\n\"1064389\"\n,\n\"1064521\"\n,\n\"1064552\"\n,\n\"1064774\"\n,\n\"1066897\"\n,\n\"1067230\"\n,\n\"1067418\"\n,\n\"1067803\"\n,\n\"1068083\"\n,\n\"1068194\"\n,\n\"1068354\"\n,\n\"1068500\"\n,\n\"1069003\"\n,\n\"1069051\"\n,\n\"1069225\"\n,\n\"1070660\"\n,\n\"1070785\"\n,\n\"1070896\"\n,\n\"1070962\"\n,\n\"1071021\"\n,\n\"1071083\"\n,\n\"1071163\"\n,\n\"1071528\"\n,\n\"1072020\"\n,\n\"1072558\"\n,\n\"1072561\"\n,\n\"1072669\"\n,\n\"1073925\"\n,\n\"1074206\"\n,\n\"1074924\"\n,\n\"1075028\"\n,\n\"1075604\"\n,\n\"1076409\"\n,\n\"1076510\"\n,\n\"1077012\"\n,\n\"1077248\"\n,\n\"1077380\"\n,\n\"1077456\"\n,\n\"1077490\"\n,\n\"1078389\"\n,\n\"1079072\"\n,\n\"1080376\"\n,\n\"1081167\"\n,\n\"1081410\"\n,\n\"1081694\"\n,\n\"1081726\"\n,\n\"1082391\"\n,\n\"1082739\"\n,\n\"1082978\"\n,\n\"1083724\"\n,\n\"1083929\"\n,\n\"1084404\"\n,\n\"1085021\"\n,\n\"1086079\"\n,\n\"1086575\"\n,\n\"1086783\"\n,\n\"1087002\"\n,\n\"1087033\"\n,\n\"1087349\"\n,\n\"1088334\"\n,\n\"1088941\"\n,\n\"1089843\"\n,\n\"1090383\"\n,\n\"1090637\"\n,\n\"1090734\"\n,\n\"1091029\"\n,\n\"1091619\"\n,\n\"1091640\"\n,\n\"1092076\"\n,\n\"1092729\"\n,\n\"1092794\"\n,\n\"1093554\"\n,\n\"1093617\"\n,\n\"1094043\"\n,\n\"1094345\"\n,\n\"1094490\"\n,\n\"1094505\"\n,\n\"1095504\"\n,\n\"1096055\"\n,\n\"1096503\"\n,\n\"1097259\"\n,\n\"1097627\"\n,\n\"1097661\"\n,\n\"1098404\"\n,\n\"1098706\"\n,\n\"1099323\"\n,\n\"1099528\"\n,\n\"1099767\"\n,\n\"1099881\"\n,\n\"1100870\"\n,\n\"1100920\"\n,\n\"1101675\"\n,\n\"1101835\"\n,\n\"1101866\"\n,\n\"1102310\"\n,\n\"1103004\"\n,\n\"1103226\"\n,\n\"1103448\"\n,\n\"1103531\"\n,\n\"1103833\"\n,\n\"1103878\"\n,\n\"1103989\"\n,\n\"1104260\"\n,\n\"1104721\"\n,\n\"1105318\"\n,\n\"1106428\"\n,\n\"1107413\"\n,\n\"1107697\"\n,\n\"1108141\"\n,\n\"1108873\"\n,\n\"1108940\"\n,\n\"1109519\"\n,\n\"1110222\"\n,\n\"1110524\"\n,\n\"1110906\"\n,\n\"1112456\"\n,\n\"1112872\"\n,\n\"1113056\"\n,\n\"1113140\"\n,\n\"1113344\"\n,\n\"1113629\"\n,\n\"1114152\"\n,\n\"1114884\"\n,\n\"1115915\"\n,\n\"1116710\"\n,\n\"1116737\"\n,\n\"1118114\"\n,\n\"1118145\"\n,\n\"1118495\"\n,\n\"1118766\"\n,\n\"1119637\"\n,\n\"1119814\"\n,\n\"1120129\"\n,\n\"1120417\"\n,\n\"1120753\"\n,\n\"1120927\"\n,\n\"1121159\"\n,\n\"1122286\"\n,\n\"1122911\"\n,\n\"1123050\"\n,\n\"1123698\"\n,\n\"1123907\"\n,\n\"1123986\"\n,\n\"1124187\"\n,\n\"1124586\"\n,\n\"1125620\"\n,\n\"1125873\"\n,\n\"1125936\"\n,\n\"1126282\"\n,\n\"1126362\"\n,\n\"1126598\"\n,\n\"1127486\"\n,\n\"1128055\"\n,\n\"1128330\"\n,\n\"1128600\"\n,\n\"1129533\"\n,\n\"1129818\"\n,\n\"1130791\"\n,\n\"1131760\"\n,\n\"1132006\"\n,\n\"1132120\"\n,\n\"1132245\"\n,\n\"1132325\"\n,\n\"1132550\"\n,\n\"1132870\"\n,\n\"1133261\"\n,\n\"1134260\"\n,\n\"1134288\"\n,\n\"1134660\"\n,\n\"1134784\"\n,\n\"1134961\"\n,\n\"1137698\"\n,\n\"1138430\"\n,\n\"1138750\"\n,\n\"1139679\"\n,\n\"1139696\"\n,\n\"1139728\"\n,\n\"1139970\"\n,\n\"1140240\"\n,\n\"1140351\"\n,\n\"1140445\"\n,\n\"1141427\"\n,\n\"1141510\"\n,\n\"1142634\"\n,\n\"1142682\"\n,\n\"1142922\"\n,\n\"1144407\"\n,\n\"1146068\"\n,\n\"1146564\"\n,\n\"1147372\"\n,\n\"1147497\"\n,\n\"1147710\"\n,\n\"1148660\"\n,\n\"1149065\"\n,\n\"1149176\"\n,\n\"1149319\"\n,\n\"1150529\"\n,\n\"1150660\"\n,\n\"1151212\"\n,\n\"1151230\"\n,\n\"1151740\"\n,\n\"1152096\"\n,\n\"1152735\"\n,\n\"1153210\"\n,\n\"1153509\"\n,\n\"1153543\"\n,\n\"1153637\"\n,\n\"1154365\"\n,\n\"1154476\"\n,\n\"1154861\"\n,\n\"1155586\"\n,\n\"1155670\"\n,\n\"1156186\"\n,\n\"1157789\"\n,\n\"1158119\"\n,\n\"1158300\"\n,\n\"1158583\"\n,\n\"1159069\"\n,\n\"1160168\"\n,\n\"1160234\"\n,\n\"1161281\"\n,\n\"1162024\"\n,\n\"1162041\"\n,\n\"1163006\"\n,\n\"1163099\"\n,\n\"1163356\"\n,\n\"1163422\"\n,\n\"1164022\"\n,\n\"1164452\"\n,\n\"1165021\"\n,\n\"1165230\"\n,\n\"1165528\"\n,\n\"1165913\"\n,\n\"1166766\"\n,\n\"1166877\"\n,\n\"1167192\"\n,\n\"1167318\"\n,\n\"1168094\"\n,\n\"1168191\"\n,\n\"1168299\"\n,\n\"1168542\"\n,\n\"1172205\"\n,\n\"1172780\"\n,\n\"1173998\"\n,\n\"1174296\"\n,\n\"1175295\"\n,\n\"1176055\"\n,\n\"1176790\"\n,\n\"1177550\"\n,\n\"1178116\"\n,\n\"1178768\"\n,\n\"1179864\"\n,\n\"1180099\"\n,\n\"1180547\"\n,\n\"1181740\"\n,\n\"1182642\"\n,\n\"1183544\"\n,\n\"1183850\"\n,\n\"1184734\"\n,\n\"1185525\"\n,\n\"1187523\"\n,\n\"1189504\"\n,\n\"1189982\"\n,\n\"1191199\"\n,\n\"1191904\"\n,\n\"1192549\"\n,\n\"1193548\"\n,\n\"1196070\"\n,\n\"1196753\"\n,\n\"1196770\"\n,\n\"1196820\"\n,\n\"1197353\"\n,\n\"1197530\"\n,\n\"1197589\"\n,\n\"1197943\"\n,\n\"1197988\"\n,\n\"1198095\"\n,\n\"1198911\"\n,\n\"1200274\"\n,\n\"1200337\"\n,\n\"1200340\"\n,\n\"1200687\"\n,\n\"1203063\"\n,\n\"1203720\"\n,\n\"1203990\"\n,\n\"1204697\"\n,\n\"1204860\"\n,\n\"1204906\"\n,\n\"1205457\"\n,\n\"1205460\"\n,\n\"1205700\"\n,\n\"1205873\"\n,\n\"1205936\"\n,\n\"1206522\"\n,\n\"1207140\"\n,\n\"1207220\"\n,\n\"1207410\"\n,\n\"1208038\"\n,\n\"1208565\"\n,\n\"1209502\"\n,\n\"1209950\"\n,\n\"1210136\"\n,\n\"1210344\"\n,\n\"1210760\"\n,\n\"1210774\"\n,\n\"1211884\"\n,\n\"1212134\"\n,\n\"1212262\"\n,\n\"1212484\"\n,\n\"1212595\"\n,\n\"1213036\"\n,\n\"1213470\"\n,\n\"1213515\"\n,\n\"1214642\"\n,\n\"1215589\"\n,\n\"1215735\"\n,\n\"1215880\"\n,\n\"1215909\"\n,\n\"1216557\"\n,\n\"1216703\"\n,\n\"1217396\"\n,\n\"1217653\"\n,\n\"1217941\"\n,\n\"1218139\"\n,\n\"1218173\"\n,\n\"1218489\"\n,\n\"1218715\"\n,\n\"1218812\"\n,\n\"1219013\"\n,\n\"1219141\"\n,\n\"1219940\"\n,\n\"1220210\"\n,\n\"1220875\"\n,\n\"1220955\"\n,\n\"1221062\"\n,\n\"1221080\"\n,\n\"1221111\"\n,\n\"1222696\"\n,\n\"1222890\"\n,\n\"1222905\"\n,\n\"1223248\"\n,\n\"1223886\"\n,\n\"1223890\"\n,\n\"1224632\"\n,\n\"1224810\"\n,\n\"1224868\"\n,\n\"1225440\"\n,\n\"1226228\"\n,\n\"1226689\"\n,\n\"1227195\"\n,\n\"1227421\"\n,\n\"1227817\"\n,\n\"1228340\"\n,\n\"1228559\"\n,\n\"1228798\"\n,\n\"1228881\"\n,\n\"1229051\"\n,\n\"1229260\"\n,\n\"1229322\"\n,\n\"1229370\"\n,\n\"123 456 \"\n,\n\"1230882\"\n,\n\"1230959\"\n,\n\"1231288\"\n,\n\"1231310\"\n,\n\"1231451\"\n,\n\"1231895\"\n,\n\"1232096\"\n,\n\"1232100\"\n,\n\"1232398\"\n,\n\"1233290\"\n,\n\"1233734\"\n,\n\"1234567\"\n,\n\"12345678\"\n,\n\"1235187\"\n,\n\"1235381\"\n,\n\"1236571\"\n,\n\"1236984\"\n,\n\"1237952\"\n,\n\"1238233\"\n,\n\"1238583\"\n,\n\"1238774\"\n,\n\"1239118\"\n,\n\"1240057\"\n,\n\"1240106\"\n,\n\"1240282\"\n,\n\"1240473\"\n,\n\"1240681\"\n,\n\"1242659\"\n,\n\"1242773\"\n,\n\"1242853\"\n,\n\"1243068\"\n,\n\"1243578\"\n,\n\"1243929\"\n,\n\"1244532\"\n,\n\"1244626\"\n,\n\"1244820\"\n,\n\"1245385\"\n,\n\"1245451\"\n,\n\"1247210\"\n,\n\"1247238\"\n,\n\"1247383\"\n,\n\"1247717\"\n,\n\"1248268\"\n,\n\"1248619\"\n,\n\"1248972\"\n,\n\"1249444\"\n,\n\"1249697\"\n,\n\"1249763\"\n,\n\"1249937\"\n,\n\"1249940\"\n,\n\"1250241\"\n,\n\"1250925\"\n,\n\"1252028\"\n,\n\"1252062\"\n,\n\"1252590\"\n,\n\"1253474\"\n,\n\"1253571\"\n,\n\"1253998\"\n,\n\"1254088\"\n,\n\"1254331\"\n,\n\"1254553\"\n,\n\"1254570\"\n,\n\"1254761\"\n,\n\"1254890\"\n,\n\"1254949\"\n,\n\"1255917\"\n,\n\"1256170\"\n,\n\"1256579\"\n,\n\"1256582\"\n,\n\"1256760\"\n,\n\"1256950\"\n,\n\"1257360\"\n,\n\"1257502\"\n,\n\"1257755\"\n,\n\"1257804\"\n,\n\"1257932\"\n,\n\"1258754\"\n,\n\"1258803\"\n,\n\"1258900\"\n,\n\"1258928\"\n,\n\"1259115\"\n,\n\"1259310\"\n,\n\"1259878\"\n,\n\"1260245\"\n,\n\"1260280\"\n,\n\"1260516\"\n,\n\"1261019\"\n,\n\"1261594\"\n,\n\"1262066\"\n,\n\"1263020\"\n,\n\"1263176\"\n,\n\"1263208\"\n,\n\"1263607\"\n,\n\"1264158\"\n,\n\"1265143\"\n,\n\"1265268\"\n,\n\"1265428\"\n,\n\"1265969\"\n,\n\"1265972\"\n,\n\"1266093\"\n,\n\"1266320\"\n,\n\"1266492\"\n,\n\"1266812\"\n,\n\"1267013\"\n,\n\"1267172\"\n,\n\"1267412\"\n,\n\"1267430\"\n,\n\"1267443\"\n,\n\"1267523\"\n,\n\"1267554\"\n,\n\"1267762\"\n,\n\"1267793\"\n,\n\"1267856\"\n,\n\"1269136\"\n,\n\"1269726\"\n,\n\"1269840\"\n,\n\"1270443\"\n,\n\"1270887\"\n,\n\"1270998\"\n,\n\"1271456\"\n,\n\"1272136\"\n,\n\"1272646\"\n,\n\"1272823\"\n,\n\"1274099\"\n,\n\"1274182\"\n,\n\"1274196\"\n,\n\"1274373\"\n,\n\"1274453\"\n,\n\"1274470\"\n,\n\"1275005\"\n,\n\"1275019\"\n,\n\"1275470\"\n,\n\"1275959\"\n,\n\"1276403\"\n,\n\"1276989\"\n,\n\"1277096\"\n,\n\"1277353\"\n,\n\"1277641\"\n,\n\"1277669\"\n,\n\"1277850\"\n,\n\"1279188\"\n,\n\"1279365\"\n,\n\"1279400\"\n,\n\"1279781\"\n,\n\"1280162\"\n,\n\"1280655\"\n,\n\"1280672\"\n,\n\"1280686\"\n,\n\"1280991\"\n,\n\"1281671\"\n,\n\"1281828\"\n,\n\"1282400\"\n,\n\"1282476\"\n,\n\"1282542\"\n,\n\"1283031\"\n,\n\"1283538\"\n,\n\"1284506\"\n,\n\"1284603\"\n,\n\"1284873\"\n,\n\"1284887\"\n,\n\"1286025\"\n,\n\"1286136\"\n,\n\"1287870\"\n,\n\"1287947\"\n,\n\"1288963\"\n,\n\"1288980\"\n,\n\"1289019\"\n,\n\"1289098\"\n,\n\"1289851\"\n,\n\"1289914\"\n,\n\"1291228\"\n,\n\"1291484\"\n,\n\"1291852\"\n,\n\"1292550\"\n,\n\"1292609\"\n,\n\"1292626\"\n,\n\"1293802\"\n,\n\"1293895\"\n,\n\"1294225\"\n,\n\"1295717\"\n,\n\"1295814\"\n,\n\"1295942\"\n,\n\"1296348\"\n,\n\"1296462\"\n,\n\"1296778\"\n,\n\"1296800\"\n,\n\"1297045\"\n,\n\"1297108\"\n,\n\"1297604\"\n,\n\"1298027\"\n,\n\"1298249\"\n,\n\"1299203\"\n,\n\"1299279\"\n,\n\"1299393\"\n,\n\"1299647\"\n,\n\"1299855\"\n,\n\"1300348\"\n,\n\"1301142\"\n,\n\"1301267\"\n,\n\"1302350\"\n,\n\"1302540\"\n,\n\"1303584\"\n,\n\"1304056\"\n,\n\"1305614\"\n,\n\"1306179\"\n,\n\"1306200\"\n,\n\"1307098\"\n,\n\"1307390\"\n,\n\"1307834\"\n,\n\"1308576\"\n,\n\"1309256\"\n,\n\"1309718\"\n,\n\"1310563\"\n,\n\"1310737\"\n,\n\"1310980\"\n,\n\"1311021\"\n,\n\"1311260\"\n,\n\"1311451\"\n,\n\"1311479\"\n,\n\"1311559\"\n,\n\"1311944\"\n,\n\"1312079\"\n,\n\"1312880\"\n,\n\"1314303\"\n,\n\"1315031\"\n,\n\"1315059\"\n,\n\"1315125\"\n,\n\"1315139\"\n,\n\"1315670\"\n,\n\"1316426\"\n,\n\"1316460\"\n,\n\"1316665\"\n,\n\"1318090\"\n,\n\"1318615\"\n,\n\"1319250\"\n,\n\"1319565\"\n,\n\"1323259\"\n,\n\"1323276\"\n,\n\"1324133\"\n,\n\"1324754\"\n,\n\"1326208\"\n,\n\"1326242\"\n,\n\"1328046\"\n,\n\"1328174\"\n,\n\"1329732\"\n,\n\"1330779\"\n,\n\"1331029\"\n,\n\"1331560\"\n,\n\"1331670\"\n,\n\"1332378\"\n,\n\"1332381\"\n,\n\"1333013\"\n,\n\"1334328\"\n,\n\"1334810\"\n,\n\"1334997\"\n,\n\"1336007\"\n,\n\"1336902\"\n,\n\"1336947\"\n,\n\"1337148\"\n,\n\"1337259\"\n,\n\"1337390\"\n,\n\"1338053\"\n,\n\"1338706\"\n,\n\"1339531\"\n,\n\"1339625\"\n,\n\"1339913\"\n,\n\"1340627\"\n,\n\"1341609\"\n,\n\"1341706\"\n,\n\"1343051\"\n,\n\"1343704\"\n,\n\"1344397\"\n,\n\"1344717\"\n,\n\"1345969\"\n,\n\"1347585\"\n,\n\"1348251\"\n,\n\"1348362\"\n,\n\"1348966\"\n,\n\"1350839\"\n,\n\"1351123\"\n,\n\"1351872\"\n,\n\"1352025\"\n,\n\"1352247\"\n,\n\"1353884\"\n,\n\"1354179\"\n,\n\"1355612\"\n,\n\"1357384\"\n,\n\"1358779\"\n,\n\"1359126\"\n,\n\"1359720\"\n,\n\"1360638\"\n,\n\"1362955\"\n,\n\"1363604\"\n,\n\"1363780\"\n,\n\"1364905\"\n,\n\"1365185\"\n,\n\"1367822\"\n,\n\"1370007\"\n,\n\"1370947\"\n,\n\"1371470\"\n,\n\"1372310\"\n,\n\"1373310\"\n,\n\"1373496\"\n,\n\"1373767\"\n,\n\"1373784\"\n,\n\"1374305\"\n,\n\"1374367\"\n,\n\"1374450\"\n,\n\"1374589\"\n,\n\"1374974\"\n,\n\"1375238\"\n,\n\"1376143\"\n,\n\"1376240\"\n,\n\"1376396\"\n,\n\"1376508\"\n,\n\"1376844\"\n,\n\"1377541\"\n,\n\"1377683\"\n,\n\"1377906\"\n,\n\"1377937\"\n,\n\"1378651\"\n,\n\"1378728\"\n,\n\"1378762\"\n,\n\"1380729\"\n,\n\"1384149\"\n,\n\"1384197\"\n,\n\"1384312\"\n,\n\"1385037\"\n,\n\"1385308\"\n,\n\"1385498\"\n,\n\"1386150\"\n,\n\"1386213\"\n,\n\"1386723\"\n,\n\"1389286\"\n,\n\"1390451\"\n,\n\"1390545\"\n,\n\"1392796\"\n,\n\"1392908\"\n,\n\"1393414\"\n,\n\"1394458\"\n,\n\"1394732\"\n,\n\"1396970\"\n,\n\"1397837\"\n,\n\"1399037\"\n,\n\"1399120\"\n,\n\"1399200\"\n,\n\"1399692\"\n,\n\"1400393\"\n,\n\"1401278\"\n,\n\"1403484\"\n,\n\"1403520\"\n,\n\"1403804\"\n,\n\"1405212\"\n,\n\"1406877\"\n,\n\"1409857\"\n,\n\"1410349\"\n,\n\"1410828\"\n,\n\"1416471\"\n,\n\"1419656\"\n,\n\"1421133\"\n,\n\"1421550\"\n,\n\"1421660\"\n,\n\"1422451\"\n,\n\"1422642\"\n,\n\"1423322\"\n,\n\"1425268\"\n,\n\"1425560\"\n,\n\"1428505\"\n,\n\"1428966\"\n,\n\"1430409\"\n,\n\"1430762\"\n,\n\"1432663\"\n,\n\"1432951\"\n,\n\"1433902\"\n,\n\"1435338\"\n,\n\"1435865\"\n,\n\"1437752\"\n,\n\"1439126\"\n,\n\"1441880\"\n,\n\"1443621\"\n,\n\"1445966\"\n,\n\"1446300\"\n,\n\"1449594\"\n,\n\"1450739\"\n,\n\"1451440\"\n,\n\"1451821\"\n,\n\"1457014\"\n,\n\"1457794\"\n,\n\"1460350\"\n,\n\"1460381\"\n,\n\"1460492\"\n,\n\"1462331\"\n,\n\"1463039\"\n,\n\"1463202\"\n,\n\"1463597\"\n,\n\"1463810\"\n,\n\"1463920\"\n,\n\"1464645\"\n,\n\"1467420\"\n,\n\"1469512\"\n,\n\"1469530\"\n,\n\"1469911\"\n,\n\"1470274\"\n,\n\"1470420\"\n,\n\"1470482\"\n,\n\"1470496\"\n,\n\"1470562\"\n,\n\"1470847\"\n,\n\"1471211\"\n,\n\"1471305\"\n,\n\"1471340\"\n,\n\"1471416\"\n,\n\"1471749\"\n,\n\"1472210\"\n,\n\"1472224\"\n,\n\"1472610\"\n,\n\"1472814\"\n,\n\"1472973\"\n,\n\"1473240\"\n,\n\"1473254\"\n,\n\"1473636\"\n,\n\"1474461\"\n,\n\"1474524\"\n,\n\"1474572\"\n,\n\"1475027\"\n,\n\"1475172\"\n,\n\"1476411\"\n,\n\"1478135\"\n,\n\"1478215\"\n,\n\"1478360\"\n,\n\"1478410\"\n,\n\"1479661\"\n,\n\"1479901\"\n,\n\"1480327\"\n,\n\"1480358\"\n,\n\"1483053\"\n,\n\"1483164\"\n,\n\"1484850\"\n,\n\"1489491\"\n,\n\"1489634\"\n,\n\"1489731\"\n,\n\"1490382\"\n,\n\"1491302\"\n,\n\"1491413\"\n,\n\"1491937\"\n,\n\"1492890\"\n,\n\"1493168\"\n,\n\"1493203\"\n,\n\"1493248\"\n,\n\"1493345\"\n,\n\"1493380\"\n,\n\"1493620\"\n,\n\"1493761\"\n,\n\"1493789\"\n,\n\"1493810\"\n,\n\"1493855\"\n,\n\"1493872\"\n,\n\"1493949\"\n,\n\"1494136\"\n,\n\"1494278\"\n,\n\"1494313\"\n,\n\"1496707\"\n,\n\"1497040\"\n,\n\"1497195\"\n,\n\"1497418\"\n,\n\"1497470\"\n,\n\"1497550\"\n,\n\"1497643\"\n,\n\"1497660\"\n,\n\"1497688\"\n,\n\"1497706\"\n,\n\"1498576\"\n,\n\"1499894\"\n,\n\"1500630\"\n,\n\"1501102\"\n,\n\"1501310\"\n,\n\"1501532\"\n,\n\"1502115\"\n,\n\"1504987\"\n,\n\"1505160\"\n,\n\"1505590\"\n,\n\"1505733\"\n,\n\"1505972\"\n,\n\"1506395\"\n,\n\"1506541\"\n,\n\"1508030\"\n,\n\"1509840\"\n,\n\"1510058\"\n,\n\"1511185\"\n,\n\"1513853\"\n,\n\"1513884\"\n,\n\"1514293\"\n,\n\"1514520\"\n,\n\"1514849\"\n,\n\"1515386\"\n,\n\"1515580\"\n,\n\"1515612\"\n,\n\"1515980\"\n,\n\"1516531\"\n,\n\"1516639\"\n,\n\"1517145\"\n,\n\"1517305\"\n,\n\"1517607\"\n,\n\"1517672\"\n,\n\"1518318\"\n,\n\"1518321\"\n,\n\"1518623\"\n,\n\"1518720\"\n,\n\"1518734\"\n,\n\"1519015\"\n,\n\"1519046\"\n,\n\"1519379\"\n,\n\"1519511\"\n,\n\"1519556\"\n,\n\"1519778\"\n,\n\"1519858\"\n,\n\"1519990\"\n,\n\"1520193\"\n,\n\"1520513\"\n,\n\"1520641\"\n,\n\"1520669\"\n,\n\"1520752\"\n,\n\"1521020\"\n,\n\"1521144\"\n,\n\"1521161\"\n,\n\"1521238\"\n,\n\"1521272\"\n,\n\"1521349\"\n,\n\"1521640\"\n,\n\"1521911\"\n,\n\"1522174\"\n,\n\"1522237\"\n,\n\"1522254\"\n,\n\"1522511\"\n,\n\"1522720\"\n,\n\"1522800\"\n,\n\"1522830\"\n,\n\"1523045\"\n,\n\"1523173\"\n,\n\"1523302\"\n,\n\"1523590\"\n,\n\"1523683\"\n,\n\"1524075\"\n,\n\"1525060\"\n,\n\"1525110\"\n,\n\"1525490\"\n,\n\"1525650\"\n,\n\"1526295\"\n,\n\"1526410\"\n,\n\"1526760\"\n,\n\"1527118\"\n,\n\"1527437\"\n,\n\"1528068\"\n,\n\"1528929\"\n,\n\"1529879\"\n,\n\"1529931\"\n,\n\"1530277\"\n,\n\"1530468\"\n,\n\"1531950\"\n,\n\"1532771\"\n,\n\"1532820\"\n,\n\"1533129\"\n,\n\"1533274\"\n,\n\"1533288\"\n,\n\"1533465\"\n,\n\"1533611\"\n,\n\"1534319\"\n,\n\"1534735\"\n,\n\"1535415\"\n,\n\"1535925\"\n,\n\"1536080\"\n,\n\"1536379\"\n,\n\"1536396\"\n,\n\"1537059\"\n,\n\"1537701\"\n,\n\"1537968\"\n,\n\"1538682\"\n,\n\"1538776\"\n,\n\"1539248\"\n,\n\"1539393\"\n,\n\"1539505\"\n,\n\"1540812\"\n,\n\"1540860\"\n,\n\"1543025\"\n,\n\"1543330\"\n,\n\"1543472\"\n,\n\"1543726\"\n,\n\"1543743\"\n,\n\"1544471\"\n,\n\"1545037\"\n,\n\"1545293\"\n,\n\"1545360\"\n,\n\"1545453\"\n,\n\"1545533\"\n,\n\"1545710\"\n,\n\"1546449\"\n,\n\"1546900\"\n,\n\"1547340\"\n,\n\"1547434\"\n,\n\"1547660\"\n,\n\"1548176\"\n,\n\"1548260\"\n,\n\"1549016\"\n,\n\"1549127\"\n,\n\"1549845\"\n,\n\"1549990\"\n,\n\"1550642\"\n,\n\"1550816\"\n,\n\"1550878\"\n,\n\"1551145\"\n,\n\"1551829\"\n,\n\"1551850\"\n,\n\"1551880\"\n,\n\"1553334\"\n,\n\"1554489\"\n,\n\"1554569\"\n,\n\"1554826\"\n,\n\"1554888\"\n,\n\"1555110\"\n,\n\"1555297\"\n,\n\"1555350\"\n,\n\"1555394\"\n,\n\"1555890\"\n,\n\"1555905\"\n,\n\"1556203\"\n,\n\"1556727\"\n,\n\"1557552\"\n,\n\"1558104\"\n,\n\"1558423\"\n,\n\"1558437\"\n,\n\"1558485\"\n,\n\"1558950\"\n,\n\"1559134\"\n,\n\"1559245\"\n,\n\"1559325\"\n,\n\"1559772\"\n,\n\"1560119\"\n,\n\"1560570\"\n,\n\"1560760\"\n,\n\"1561041\"\n,\n\"1561055\"\n,\n\"1561170\"\n,\n\"1561229\"\n,\n\"1561263\"\n,\n\"1561790\"\n,\n\"1561853\"\n,\n\"1562120\"\n,\n\"1562419\"\n,\n\"1562578\"\n,\n\"1563292\"\n,\n\"1563497\"\n,\n\"1563546\"\n,\n\"1564070\"\n,\n\"1564288\"\n,\n\"1564306\"\n,\n\"1564420\"\n,\n\"1564500\"\n,\n\"1564545\"\n,\n\"1564611\"\n,\n\"1564798\"\n,\n\"1564900\"\n,\n\"1565145\"\n,\n\"1565336\"\n,\n\"1565770\"\n,\n\"1566224\"\n,\n\"1566272\"\n,\n\"1566446\"\n,\n\"1566828\"\n,\n\"1566845\"\n,\n\"1566939\"\n,\n\"1567015\"\n,\n\"1567050\"\n,\n\"1567334\"\n,\n\"1567365\"\n,\n\"1567764\"\n,\n\"1568031\"\n,\n\"1568298\"\n,\n\"1568492\"\n,\n\"1568555\"\n,\n\"1568701\"\n,\n\"1568860\"\n,\n\"1569679\"\n,\n\"1569811\"\n,\n\"1570094\"\n,\n\"1570684\"\n,\n\"1571173\"\n,\n\"1571621\"\n,\n\"1571746\"\n,\n\"1572061\"\n,\n\"1572266\"\n,\n\"1572430\"\n,\n\"1573983\"\n,\n\"1574726\"\n,\n\"1575343\"\n,\n\"1575499\"\n,\n\"1575503\"\n,\n\"1576419\"\n,\n\"1576689\"\n,\n\"1576883\"\n,\n\"1576963\"\n,\n\"1577529\"\n,\n\"1577851\"\n,\n\"1578115\"\n,\n\"1578337\"\n,\n\"1578371\"\n,\n\"1578385\"\n,\n\"1578927\"\n,\n\"1579051\"\n,\n\"1579319\"\n,\n\"1579336\"\n,\n\"1579402\"\n,\n\"1579686\"\n,\n\"1580164\"\n,\n\"1580372\"\n,\n\"1581323\"\n,\n\"1581673\"\n,\n\"1582048\"\n,\n\"1582193\"\n,\n\"1582273\"\n,\n\"1582290\"\n,\n\"1583828\"\n,\n\"1584400\"\n,\n\"1584539\"\n,\n\"1585111\"\n,\n\"1585971\"\n,\n\"1586190\"\n,\n\"1586270\"\n,\n\"1586332\"\n,\n\"1586651\"\n,\n\"1587074\"\n,\n\"1587168\"\n,\n\"1587536\"\n,\n\"1587620\"\n,\n\"1587966\"\n,\n\"1588264\"\n,\n\"1588615\"\n,\n\"1590140\"\n,\n\"1590584\"\n,\n\"1590620\"\n,\n\"1590918\"\n,\n\"1591677\"\n,\n\"1592197\"\n,\n\"1592468\"\n,\n\"1593179\"\n,\n\"1593786\"\n,\n\"1593835\"\n,\n\"1593852\"\n,\n\"1594563\"\n,\n\"1594580\"\n,\n\"1595243\"\n,\n\"1596079\"\n,\n\"1596082\"\n,\n\"1596096\"\n,\n\"1596433\"\n,\n\"1596610\"\n,\n\"1597064\"\n,\n\"1598077\"\n,\n\"1598365\"\n,\n\"1598396\"\n,\n\"1598636\"\n,\n\"1598795\"\n,\n\"1599028\"\n,\n\"1599298\"\n,\n\"1599302\"\n,\n\"1599427\"\n,\n\"1599590\"\n,\n\"1599906\"\n,\n\"1600322\"\n,\n\"1600669\"\n,\n\"1600718\"\n,\n\"1600721\"\n,\n\"1600829\"\n,\n\"1602365\"\n,\n\"1603891\"\n,\n\"1604523\"\n,\n\"1605009\"\n,\n\"1605185\"\n,\n\"1606264\"\n,\n\"1607201\"\n,\n\"1607374\"\n,\n\"1607534\"\n,\n\"1607711\"\n,\n\"1609435\"\n,\n\"1610534\"\n,\n\"1611214\"\n,\n\"1611293\"\n,\n\"1611390\"\n,\n\"1611502\"\n,\n\"1611578\"\n,\n\"1611804\"\n,\n\"1611977\"\n,\n\"1612626\"\n,\n\"1612674\"\n,\n\"1612834\"\n,\n\"1612879\"\n,\n\"1613209\"\n,\n\"1613545\"\n,\n\"1613639\"\n,\n\"1613673\"\n,\n\"1614225\"\n,\n\"1614464\"\n,\n\"1614478\"\n,\n\"1614513\"\n,\n\"1615161\"\n,\n\"1615366\"\n,\n\"1615480\"\n,\n\"1615862\"\n,\n\"1615908\"\n,\n\"1615956\"\n,\n\"1616508\"\n,\n\"1616733\"\n,\n\"1616795\"\n,\n\"1617302\"\n,\n\"1617316\"\n,\n\"1617444\"\n,\n\"1617541\"\n,\n\"1618728\"\n,\n\"1619030\"\n,\n\"1619171\"\n,\n\"1619296\"\n,\n\"1619633\"\n,\n\"1619647\"\n,\n\"1620076\"\n,\n\"1620413\"\n,\n\"1620586\"\n,\n\"1621204\"\n,\n\"1622110\"\n,\n\"1622203\"\n,\n\"1622393\"\n,\n\"1623264\"\n,\n\"1624628\"\n,\n\"1624680\"\n,\n\"1626147\"\n,\n\"1626164\"\n,\n\"1626200\"\n,\n\"1626386\"\n,\n\"1626563\"\n,\n\"1626710\"\n,\n\"1626834\"\n,\n\"1627035\"\n,\n\"1627194\"\n,\n\"1627403\"\n,\n\"1627625\"\n,\n\"1627740\"\n,\n\"1628003\"\n,\n\"1628176\"\n,\n\"1628527\"\n,\n\"1628797\"\n,\n\"1629033\"\n,\n\"1629717\"\n,\n\"1631561\"\n,\n\"1631957\"\n,\n\"1632530\"\n,\n\"1632574\"\n,\n\"1632800\"\n,\n\"1633525\"\n,\n\"1633924\"\n,\n\"1634604\"\n,\n\"1634809\"\n,\n\"1635138\"\n,\n\"1635380\"\n,\n\"1636935\"\n,\n\"1636952\"\n,\n\"1637650\"\n,\n\"1638950\"\n,\n\"1639165\"\n,\n\"1639373\"\n,\n\"1639613\"\n,\n\"1639661\"\n,\n\"1641600\"\n,\n\"1641853\"\n,\n\"1642165\"\n,\n\"1645544\"\n,\n\"1648302\"\n,\n\"1648320\"\n,\n\"1648750\"\n,\n\"1651236\"\n,\n\"1651937\"\n,\n\"1653380\"\n,\n\"1653761\"\n,\n\"1654757\"\n,\n\"1654774\"\n,\n\"1654951\"\n,\n\"1655277\"\n,\n\"1655388\"\n,\n\"1655790\"\n,\n\"1655822\"\n,\n\"1655836\"\n,\n\"1656120\"\n,\n\"1657147\"\n,\n\"1657404\"\n,\n\"1657577\"\n,\n\"1657626\"\n,\n\"1658018\"\n,\n\"1658212\"\n,\n\"1658323\"\n,\n\"1658385\"\n,\n\"1658642\"\n,\n\"1658958\"\n,\n\"1659128\"\n,\n\"1660133\"\n,\n\"1660390\"\n,\n\"1660928\"\n,\n\"1661066\"\n,\n\"1661368\"\n,\n\"1661496\"\n,\n\"1661660\"\n,\n\"1661798\"\n,\n\"1662020\"\n,\n\"1662051\"\n,\n\"1662128\"\n,\n\"1662180\"\n,\n\"1662336\"\n,\n\"1662815\"\n,\n\"1663047\"\n,\n\"1663800\"\n,\n\"1663911\"\n,\n\"1664029\"\n,\n\"1664050\"\n,\n\"1664285\"\n,\n\"1664990\"\n,\n\"1665475\"\n,\n\"1665524\"\n,\n\"1665538\"\n,\n\"1665666\"\n,\n\"1665777\"\n,\n\"1666000\"\n,\n\"1666075\"\n,\n\"1666332\"\n,\n\"1666762\"\n,\n\"1666919\"\n,\n\"1667137\"\n,\n\"1667140\"\n,\n\"1667154\"\n,\n\"1667345\"\n,\n\"1667393\"\n,\n\"1667490\"\n,\n\"1667519\"\n,\n\"1667584\"\n,\n\"1667647\"\n,\n\"1667807\"\n,\n\"1668025\"\n,\n\"1669978\"\n,\n\"1670380\"\n,\n\"1670439\"\n,\n\"1670540\"\n,\n\"1670647\"\n,\n\"1671566\"\n,\n\"1671601\"\n,\n\"1671788\"\n,\n\"1672072\"\n,\n\"1672326\"\n,\n\"1672388\"\n,\n\"1672503\"\n,\n\"1672805\"\n,\n\"1673040\"\n,\n\"1673068\"\n,\n\"1673308\"\n,\n\"1673484\"\n,\n\"1673644\"\n,\n\"1674372\"\n,\n\"1674532\"\n,\n\"1674768\"\n,\n\"1674771\"\n,\n\"1675528\"\n,\n\"1675611\"\n,\n\"1675820\"\n,\n\"1675881\"\n,\n\"1676416\"\n,\n\"1676783\"\n,\n\"1676797\"\n,\n\"1676832\"\n,\n\"1676846\"\n,\n\"1676930\"\n,\n\"1676960\"\n,\n\"1677286\"\n,\n\"1677876\"\n,\n\"1678670\"\n,\n\"1679139\"\n,\n\"1679381\"\n,\n\"1679746\"\n,\n\"1679906\"\n,\n\"1679937\"\n,\n\"1680637\"\n,\n\"1680654\"\n,\n\"1680828\"\n,\n\"1681379\"\n,\n\"1681400\"\n,\n\"1681556\"\n,\n\"1681733\"\n,\n\"1681813\"\n,\n\"1682777\"\n,\n\"1683107\"\n,\n\"1683266\"\n,\n\"1683329\"\n,\n\"1683460\"\n,\n\"1684251\"\n,\n\"1684872\"\n,\n\"1685220\"\n,\n\"1685486\"\n,\n\"1685730\"\n,\n\"1686010\"\n,\n\"1686440\"\n,\n\"1687099\"\n,\n\"1687196\"\n,\n\"1687630\"\n,\n\"1687707\"\n,\n\"1687741\"\n,\n\"1687772\"\n,\n\"1687980\"\n,\n\"1688546\"\n,\n\"1688691\"\n,\n\"1688882\"\n,\n\"1689004\"\n,\n\"1689129\"\n,\n\"1689576\"\n,\n\"1690134\"\n,\n\"1690627\"\n,\n\"1690658\"\n,\n\"1690835\"\n,\n\"1690870\"\n,\n\"1691070\"\n,\n\"1691133\"\n,\n\"1691310\"\n,\n\"1691515\"\n,\n\"1691834\"\n,\n\"1692146\"\n,\n\"1692257\"\n,\n\"1692306\"\n,\n\"1693930\"\n,\n\"1694255\"\n,\n\"1694290\"\n,\n\"1694366\"\n,\n\"1694383\"\n,\n\"1694415\"\n,\n\"1694509\"\n,\n\"1694588\"\n,\n\"1694717\"\n,\n\"1694973\"\n,\n\"1695109\"\n,\n\"1695400\"\n,\n\"1695431\"\n,\n\"1695476\"\n,\n\"1696156\"\n,\n\"1696489\"\n,\n\"1696524\"\n,\n\"1696541\"\n,\n\"1696780\"\n,\n\"1696830\"\n,\n\"1696888\"\n,\n\"1696910\"\n,\n\"1697270\"\n,\n\"1697460\"\n,\n\"1697474\"\n,\n\"1697634\"\n,\n\"1697887\"\n,\n\"1697940\"\n,\n\"1698331\"\n,\n\"1698584\"\n,\n\"1698970\"\n,\n\"1699011\"\n,\n\"1699025\"\n,\n\"1699167\"\n,\n\"1699361\"\n,\n\"1699455\"\n,\n\"1699486\"\n,\n\"1699615\"\n,\n\"1699760\"\n,\n\"1699979\"\n,\n\"1700080\"\n,\n\"1700108\"\n,\n\"1700715\"\n,\n\"1700860\"\n,\n\"1701266\"\n,\n\"1701270\"\n,\n\"1701350\"\n,\n\"1701488\"\n,\n\"1701568\"\n,\n\"1701599\"\n,\n\"1701665\"\n,\n\"1701780\"\n,\n\"1702110\"\n,\n\"1702282\"\n,\n\"1702700\"\n,\n\"1703056\"\n,\n\"1703198\"\n,\n\"1703264\"\n,\n\"1703791\"\n,\n\"1703837\"\n,\n\"1704360\"\n,\n\"1704499\"\n,\n\"1704548\"\n,\n\"1704756\"\n,\n\"1705440\"\n,\n\"1705600\"\n,\n\"1705630\"\n,\n\"1705852\"\n,\n\"1705977\"\n,\n\"1706147\"\n,\n\"1706258\"\n,\n\"1706550\"\n,\n\"1706626\"\n,\n\"1706723\"\n,\n\"1706993\"\n,\n\"1707194\"\n,\n\"1707209\"\n,\n\"1707260\"\n,\n\"1707593\"\n,\n\"1707642\"\n,\n\"1707992\"\n,\n\"1708384\"\n,\n\"1708544\"\n,\n\"1708669\"\n,\n\"1708909\"\n,\n\"1709591\"\n,\n\"1709925\"\n,\n\"1710018\"\n,\n\"1710066\"\n,\n\"1710608\"\n,\n\"1710625\"\n,\n\"1711079\"\n,\n\"1711287\"\n,\n\"1711655\"\n,\n\"1711690\"\n,\n\"1711766\"\n,\n\"1712654\"\n,\n\"1712703\"\n,\n\"1713001\"\n,\n\"1713240\"\n,\n\"1713764\"\n,\n\"1713795\"\n,\n\"1713830\"\n,\n\"1713910\"\n,\n\"1714489\"\n,\n\"1714715\"\n,\n\"1714985\"\n,\n\"1715460\"\n,\n\"1715967\"\n,\n\"1715984\"\n,\n\"1716009\"\n,\n\"1716057\"\n,\n\"1716265\"\n,\n\"1716376\"\n,\n\"1716890\"\n,\n\"1716997\"\n,\n\"1717119\"\n,\n\"1717136\"\n,\n\"1717327\"\n,\n\"1717344\"\n,\n\"1717518\"\n,\n\"1717680\"\n,\n\"1717791\"\n,\n\"1718197\"\n,\n\"1718263\"\n,\n\"1718517\"\n,\n\"1718628\"\n,\n\"1718631\"\n,\n\"1718884\"\n,\n\"1718898\"\n,\n\"1719502\"\n,\n\"1719564\"\n,\n\"1719595\"\n,\n\"1719818\"\n,\n\"1720504\"\n,\n\"1720663\"\n,\n\"1720677\"\n,\n\"1720979\"\n,\n\"1721565\"\n,\n\"1721693\"\n,\n\"1722010\"\n,\n\"1722120\"\n,\n\"1723098\"\n,\n\"1723307\"\n,\n\"1723501\"\n,\n\"1723865\"\n,\n\"1723882\"\n,\n\"1723976\"\n,\n\"1724209\"\n,\n\"1724212\"\n,\n\"1724385\"\n,\n\"1724465\"\n,\n\"1724479\"\n,\n\"1724531\"\n,\n\"1724864\"\n,\n\"1725145\"\n,\n\"1725353\"\n,\n\"1725495\"\n,\n\"1725863\"\n,\n\"1726113\"\n,\n\"1726290\"\n,\n\"1726304\"\n,\n\"1726668\"\n,\n\"1727268\"\n,\n\"1727271\"\n,\n\"1727379\"\n,\n\"1727431\"\n,\n\"1727667\"\n,\n\"1727733\"\n,\n\"1728045\"\n,\n\"1728187\"\n,\n\"1728524\"\n,\n\"1728715\"\n,\n\"1728843\"\n,\n\"1729155\"\n,\n\"1729218\"\n,\n\"1729221\"\n,\n\"1729235\"\n,\n\"1729554\"\n,\n\"1729651\"\n,\n\"1730112\"\n,\n\"1730157\"\n,\n\"1730268\"\n,\n\"1730285\"\n,\n\"1730334\"\n,\n\"1730573\"\n,\n\"1731809\"\n,\n\"1731860\"\n,\n\"1732092\"\n,\n\"1732603\"\n,\n\"1732617\"\n,\n\"1732651\"\n,\n\"1732856\"\n,\n\"1733012\"\n,\n\"1733251\"\n,\n\"1733570\"\n,\n\"1734042\"\n,\n\"1734170\"\n,\n\"1734313\"\n,\n\"1734570\"\n,\n\"1734920\"\n,\n\"1735055\"\n,\n\"1735135\"\n,\n\"1736120\"\n,\n\"1736339\"\n,\n\"1736467\"\n,\n\"1736932\"\n,\n\"1737258\"\n,\n\"1737275\"\n,\n\"1738129\"\n,\n\"1738690\"\n,\n\"1738719\"\n,\n\"1738722\"\n,\n\"1738958\"\n,\n\"1739290\"\n,\n\"1739416\"\n,\n\"1739530\"\n,\n\"1739575\"\n,\n\"1739610\"\n,\n\"1739669\"\n,\n\"1740181\"\n,\n\"1740195\"\n,\n\"1740213\"\n,\n\"1740803\"\n,\n\"1741066\"\n,\n\"1741900\"\n,\n\"1744112\"\n,\n\"1744813\"\n,\n\"1744830\"\n,\n\"1745666\"\n,\n\"1745812\"\n,\n\"1745891\"\n,\n\"1746297\"\n,\n\"1746412\"\n,\n\"1746679\"\n,\n\"1746682\"\n,\n\"1747030\"\n,\n\"1748344\"\n,\n\"1748410\"\n,\n\"1749072\"\n,\n\"1751615\"\n,\n\"1751632\"\n,\n\"1751726\"\n,\n\"1751760\"\n,\n\"1751840\"\n,\n\"1754470\"\n,\n\"1754691\"\n,\n\"1754879\"\n,\n\"1755816\"\n,\n\"1756530\"\n,\n\"1756766\"\n,\n\"1757113\"\n,\n\"1757130\"\n,\n\"1757158\"\n,\n\"1757401\"\n,\n\"1757720\"\n,\n\"1757779\"\n,\n\"1758223\"\n,\n\"1761493\"\n,\n\"1762538\"\n,\n\"1762572\"\n,\n\"1762763\"\n,\n\"1762985\"\n,\n\"1765490\"\n,\n\"1768150\"\n,\n\"1768418\"\n,\n\"1769740\"\n,\n\"1769850\"\n,\n\"1770581\"\n,\n\"1772465\"\n,\n\"1772611\"\n,\n\"1772642\"\n,\n\"1773863\"\n,\n\"1773877\"\n,\n\"1774100\"\n,\n\"1774175\"\n,\n\"1774782\"\n,\n\"1775160\"\n,\n\"1775210\"\n,\n\"1775223\"\n,\n\"1775972\"\n,\n\"1775990\"\n,\n\"1776059\"\n,\n\"1776350\"\n,\n\"1776618\"\n,\n\"1778009\"\n,\n\"1778140\"\n,\n\"1778775\"\n,\n\"1779220\"\n,\n\"1779920\"\n,\n\"1780599\"\n,\n\"1780808\"\n,\n\"1781598\"\n,\n\"1781904\"\n,\n\"1782597\"\n,\n\"1783437\"\n,\n\"1783756\"\n,\n\"1784613\"\n,\n\"1784901\"\n,\n\"1784994\"\n,\n\"1785550\"\n,\n\"1785577\"\n,\n\"1785580\"\n,\n\"1786243\"\n,\n\"1786417\"\n,\n\"1786958\"\n,\n\"1786975\"\n,\n\"1787641\"\n,\n\"1789188\"\n,\n\"1789320\"\n,\n\"1789972\"\n,\n\"1790131\"\n,\n\"1791530\"\n,\n\"1791543\"\n,\n\"1791893\"\n,\n\"1793400\"\n,\n\"1794665\"\n,\n\"1794842\"\n,\n\"1795584\"\n,\n\"1796060\"\n,\n\"1796250\"\n,\n\"1796840\"\n,\n\"1797468\"\n,\n\"1799067\"\n,\n\"1799421\"\n,\n\"1799737\"\n,\n\"1800281\"\n,\n\"1800726\"\n,\n\"1800774\"\n,\n\"1800788\"\n,\n\"1801229\"\n,\n\"1801406\"\n,\n\"1802915\"\n,\n\"1803914\"\n,\n\"1804097\"\n,\n\"1805960\"\n,\n\"1806127\"\n,\n\"1806304\"\n,\n\"1806321\"\n,\n\"1806446\"\n,\n\"1806751\"\n,\n\"1808205\"\n,\n\"1808320\"\n,\n\"1808395\"\n,\n\"1808621\"\n,\n\"1809235\"\n,\n\"1809759\"\n,\n\"1810046\"\n,\n\"1810109\"\n,\n\"1811572\"\n,\n\"1811891\"\n,\n\"1812460\"\n,\n\"1814441\"\n,\n\"1815950\"\n,\n\"1815981\"\n,\n\"1816010\"\n,\n\"1816311\"\n,\n\"1816405\"\n,\n\"1816453\"\n,\n\"1816498\"\n,\n\"1816520\"\n,\n\"1816600\"\n,\n\"1816790\"\n,\n\"1816821\"\n,\n\"1817195\"\n,\n\"1817213\"\n,\n\"1817227\"\n,\n\"1817310\"\n,\n\"1817497\"\n,\n\"1817515\"\n,\n\"1817529\"\n,\n\"1817546\"\n,\n\"1817550\"\n,\n\"1817563\"\n,\n\"1817577\"\n,\n\"1817609\"\n,\n\"1817612\"\n,\n\"1817674\"\n,\n\"1817785\"\n,\n\"1817799\"\n,\n\"1818132\"\n,\n\"1818150\"\n,\n\"1818288\"\n,\n\"1818354\"\n,\n\"1818465\"\n,\n\"1818559\"\n,\n\"1818593\"\n,\n\"1818753\"\n,\n\"1818802\"\n,\n\"1818927\"\n,\n\"1818958\"\n,\n\"1819034\"\n,\n\"1819065\"\n,\n\"1819100\"\n,\n\"1819145\"\n,\n\"1819176\"\n,\n\"1819211\"\n,\n\"1819242\"\n,\n\"1819256\"\n,\n\"1819260\"\n,\n\"1819305\"\n,\n\"1819340\"\n,\n\"1819433\"\n,\n\"1819669\"\n,\n\"1819690\"\n,\n\"1819783\"\n,\n\"1819926\"\n,\n\"1819957\"\n,\n\"1819974\"\n,\n\"1820040\"\n,\n\"1820070\"\n,\n\"1820084\"\n,\n\"1820181\"\n,\n\"1820421\"\n,\n\"1820435\"\n,\n\"1820550\"\n,\n\"1820660\"\n,\n\"1820674\"\n,\n\"1820691\"\n,\n\"1820706\"\n,\n\"1820723\"\n,\n\"1820737\"\n,\n\"1820740\"\n,\n\"1820754\"\n,\n\"1820799\"\n,\n\"1820882\"\n,\n\"1820959\"\n,\n\"1820962\"\n,\n\"1821146\"\n,\n\"1821434\"\n,\n\"1821465\"\n,\n\"1821528\"\n,\n\"1821559\"\n,\n\"1821608\"\n,\n\"1821705\"\n,\n\"1821719\"\n,\n\"1821798\"\n,\n\"1821847\"\n,\n\"1822145\"\n,\n\"1822162\"\n,\n\"1822225\"\n,\n\"1822273\"\n,\n\"1822290\"\n,\n\"1822481\"\n,\n\"1822592\"\n,\n\"1822641\"\n,\n\"1822721\"\n,\n\"1822749\"\n,\n\"1822770\"\n,\n\"1822801\"\n,\n\"1822943\"\n,\n\"1822988\"\n,\n\"1823033\"\n,\n\"1823047\"\n,\n\"1823064\"\n,\n\"1823130\"\n,\n\"1823349\"\n,\n\"1823450\"\n,\n\"1823509\"\n,\n\"1823640\"\n,\n\"1823925\"\n,\n\"1824094\"\n,\n\"1824210\"\n,\n\"1824237\"\n,\n\"1824271\"\n,\n\"1824365\"\n,\n\"1824382\"\n,\n\"1824938\"\n,\n\"1825267\"\n,\n\"1825427\"\n,\n\"1825670\"\n,\n\"1825732\"\n,\n\"1826092\"\n,\n\"1826301\"\n,\n\"1826412\"\n,\n\"1826648\"\n,\n\"1826696\"\n,\n\"1827123\"\n,\n\"1827171\"\n,\n\"1827248\"\n,\n\"1827328\"\n,\n\"1827456\"\n,\n\"1827522\"\n,\n\"1827553\"\n,\n\"1827921\"\n,\n\"1828220\"\n,\n\"1828344\"\n,\n\"1828441\"\n,\n\"1828854\"\n,\n\"1829551\"\n,\n\"1829600\"\n,\n\"1829933\"\n,\n\"1830009\"\n,\n\"1830123\"\n,\n\"1830540\"\n,\n\"1830602\"\n,\n\"1830713\"\n,\n\"1831965\"\n,\n\"1832294\"\n,\n\"1832357\"\n,\n\"1832596\"\n,\n\"1832628\"\n,\n\"1832645\"\n,\n\"1832805\"\n,\n\"1832840\"\n,\n\"1833006\"\n,\n\"1833068\"\n,\n\"1833405\"\n,\n\"1833804\"\n,\n\"1834227\"\n,\n\"1834230\"\n,\n\"1834341\"\n,\n\"1834418\"\n,\n\"1834452\"\n,\n\"1834529\"\n,\n\"1834771\"\n,\n\"1835323\"\n,\n\"1835479\"\n,\n\"1835545\"\n,\n\"1836672\"\n,\n\"1836894\"\n,\n\"1836974\"\n,\n\"1837207\"\n,\n\"1837318\"\n,\n\"1837429\"\n,\n\"1837862\"\n,\n\"1837880\"\n,\n\"1837973\"\n,\n\"1838015\"\n,\n\"1838046\"\n,\n\"1838191\"\n,\n\"1838764\"\n,\n\"1839125\"\n,\n\"1839381\"\n,\n\"1840130\"\n,\n\"1840494\"\n,\n\"1840703\"\n,\n\"1840908\"\n,\n\"1840956\"\n,\n\"1841077\"\n,\n\"1841160\"\n,\n\"1841556\"\n,\n\"1841587\"\n,\n\"1842142\"\n,\n\"1842430\"\n,\n\"1842461\"\n,\n\"1843155\"\n,\n\"1843297\"\n,\n\"1843460\"\n,\n\"1843491\"\n,\n\"1844012\"\n,\n\"1844057\"\n,\n\"1844248\"\n,\n\"1844279\"\n,\n\"1844376\"\n,\n\"1844584\"\n,\n\"1844620\"\n,\n\"1844664\"\n,\n\"1844713\"\n,\n\"1844838\"\n,\n\"1845136\"\n,\n\"1845264\"\n,\n\"1845389\"\n,\n\"1846250\"\n,\n\"1846676\"\n,\n\"1846693\"\n,\n\"1847010\"\n,\n\"1847151\"\n,\n\"1847520\"\n,\n\"1847547\"\n,\n\"1847581\"\n,\n\"1848213\"\n,\n\"1848227\"\n,\n\"1848230\"\n,\n\"1848275\"\n,\n\"1848289\"\n,\n\"1848609\"\n,\n\"1848820\"\n,\n\"1849066\"\n,\n\"1849500\"\n,\n\"1849593\"\n,\n\"1850453\"\n,\n\"1850484\"\n,\n\"1850502\"\n,\n\"1850644\"\n,\n\"1850769\"\n,\n\"1851053\"\n,\n\"1851164\"\n,\n\"1851227\"\n,\n\"1851386\"\n,\n\"1851688\"\n,\n\"1851931\"\n,\n\"1852434\"\n,\n\"1852690\"\n,\n\"1852736\"\n,\n\"1853003\"\n,\n\"1853930\"\n,\n\"1854113\"\n,\n\"1854161\"\n,\n\"1854290\"\n,\n\"1854304\"\n,\n\"1854321\"\n,\n\"1854480\"\n,\n\"1854623\"\n,\n\"1854685\"\n,\n\"1854751\"\n,\n\"1854796\"\n,\n\"1855001\"\n,\n\"1855210\"\n,\n\"1855396\"\n,\n\"1855459\"\n,\n\"1855716\"\n,\n\"1855750\"\n,\n\"1855972\"\n,\n\"1856427\"\n,\n\"1856732\"\n,\n\"1857044\"\n,\n\"1857603\"\n,\n\"1857745\"\n,\n\"1857776\"\n,\n\"1857936\"\n,\n\"1858009\"\n,\n\"1858185\"\n,\n\"1858203\"\n,\n\"1858505\"\n,\n\"1858536\"\n,\n\"1858602\"\n,\n\"1858681\"\n,\n\"1858997\"\n,\n\"1859122\"\n,\n\"1859170\"\n,\n\"1859472\"\n,\n\"1860092\"\n,\n\"1860218\"\n,\n\"1860249\"\n,\n\"1860266\"\n,\n\"1860332\"\n,\n\"1860394\"\n,\n\"1860620\"\n,\n\"1860825\"\n,\n\"1861442\"\n,\n\"1861473\"\n,\n\"1861567\"\n,\n\"1861664\"\n,\n\"1861904\"\n,\n\"1861935\"\n,\n\"1862042\"\n,\n\"1862056\"\n,\n\"1862090\"\n,\n\"1862632\"\n,\n\"1862760\"\n,\n\"1862788\"\n,\n\"1862791\"\n,\n\"1863038\"\n,\n\"1864259\"\n,\n\"1864308\"\n,\n\"1864339\"\n,\n\"1865150\"\n,\n\"1865178\"\n,\n\"1865244\"\n,\n\"1865452\"\n,\n\"1865609\"\n,\n\"1866288\"\n,\n\"1866580\"\n,\n\"1866642\"\n,\n\"1866736\"\n,\n\"1867319\"\n,\n\"1867450\"\n,\n\"1868064\"\n,\n\"1868144\"\n,\n\"1868734\"\n,\n\"1868973\"\n,\n\"1869029\"\n,\n\"1869317\"\n,\n\"1869365\"\n,\n\"1869493\"\n,\n\"1870100\"\n,\n\"1870176\"\n,\n\"1870500\"\n,\n\"1870530\"\n,\n\"1871189\"\n,\n\"1871463\"\n,\n\"1871591\"\n,\n\"1871610\"\n,\n\"1871782\"\n,\n\"1871796\"\n,\n\"1871990\"\n,\n\"1872130\"\n,\n\"1872605\"\n,\n\"1872640\"\n,\n\"1872716\"\n,\n\"1872969\"\n,\n\"1873173\"\n,\n\"1873236\"\n,\n\"1873364\"\n,\n\"1873538\"\n,\n\"1873572\"\n,\n\"1874235\"\n,\n\"1874301\"\n,\n\"1874315\"\n,\n\"1874714\"\n,\n\"1874842\"\n,\n\"1874953\"\n,\n\"1875137\"\n,\n\"1875570\"\n,\n\"1875727\"\n,\n\"1875761\"\n,\n\"1876087\"\n,\n\"1876090\"\n,\n\"1876583\"\n,\n\"1876743\"\n,\n\"1876791\"\n,\n\"1877007\"\n,\n\"1877121\"\n,\n\"1877330\"\n,\n\"1877357\"\n,\n\"1878054\"\n,\n\"1878196\"\n,\n\"1878356\"\n,\n\"1878373\"\n,\n\"1878390\"\n,\n\"1878564\"\n,\n\"1878710\"\n,\n\"1878769\"\n,\n\"1879150\"\n,\n\"1879740\"\n,\n\"1879980\"\n,\n\"1880135\"\n,\n\"1880388\"\n,\n\"1880410\"\n,\n\"1880423\"\n,\n\"1880787\"\n,\n\"1880840\"\n,\n\"1881308\"\n,\n\"1881547\"\n,\n\"1881600\"\n,\n\"1881772\"\n,\n\"1881883\"\n,\n\"1882404\"\n,\n\"1882418\"\n,\n\"1882740\"\n,\n\"1882834\"\n,\n\"1882851\"\n,\n\"1883576\"\n,\n\"1883722\"\n,\n\"1883847\"\n,\n\"1883958\"\n,\n\"1883961\"\n,\n\"1884079\"\n,\n\"1884239\"\n,\n\"1884398\"\n,\n\"1884495\"\n,\n\"1884589\"\n,\n\"1884638\"\n,\n\"1884655\"\n,\n\"1884690\"\n,\n\"1884880\"\n,\n\"1884894\"\n,\n\"1884926\"\n,\n\"1884974\"\n,\n\"1886334\"\n,\n\"1886348\"\n,\n\"1886351\"\n,\n\"1886382\"\n,\n\"1886445\"\n,\n\"1886480\"\n,\n\"1886493\"\n,\n\"1886508\"\n,\n\"1887190\"\n,\n\"1887812\"\n,\n\"1887843\"\n,\n\"1887910\"\n,\n\"1887923\"\n,\n\"1888443\"\n,\n\"1888474\"\n,\n\"1888793\"\n,\n\"1888856\"\n,\n\"1888873\"\n,\n\"1888887\"\n,\n\"1888953\"\n,\n\"1889921\"\n,\n\"1889935\"\n,\n\"1890031\"\n,\n\"1890683\"\n,\n\"1890826\"\n,\n\"1890843\"\n,\n\"1890940\"\n,\n\"1891107\"\n,\n\"1891110\"\n,\n\"1891283\"\n,\n\"1891301\"\n,\n\"1891825\"\n,\n\"1891953\"\n,\n\"1892171\"\n,\n\"1892952\"\n,\n\"1893566\"\n,\n\"1893663\"\n,\n\"1893726\"\n,\n\"1893730\"\n,\n\"1893837\"\n,\n\"1893840\"\n,\n\"1894229\"\n,\n\"1894343\"\n,\n\"1894360\"\n,\n\"1894374\"\n,\n\"1894659\"\n,\n\"1896449\"\n,\n\"1897049\"\n,\n\"1897163\"\n,\n\"1897310\"\n,\n\"1897323\"\n,\n\"1898128\"\n,\n\"1898162\"\n,\n\"1898832\"\n,\n\"1898880\"\n,\n\"1898974\"\n,\n\"1898991\"\n,\n\"1900084\"\n,\n\"1901323\"\n,\n\"1901722\"\n,\n\"1905569\"\n,\n\"1905860\"\n,\n\"1905971\"\n,\n\"1906092\"\n,\n\"1906793\"\n,\n\"1907217\"\n,\n\"1908552\"\n,\n\"1909600\"\n,\n\"1909773\"\n,\n\"1909822\"\n,\n\"1909836\"\n,\n\"1910137\"\n,\n\"1910234\"\n,\n\"1911951\"\n,\n\"1912149\"\n,\n\"1912343\"\n,\n\"1913627\"\n,\n\"1913883\"\n,\n\"1914053\"\n,\n\"1914070\"\n,\n\"1914289\"\n,\n\"1914307\"\n,\n\"1915399\"\n,\n\"1916100\"\n,\n\"1916114\"\n,\n\"1916145\"\n,\n\"1918334\"\n,\n\"1919111\"\n,\n\"1919333\"\n,\n\"1919395\"\n,\n\"1921459\"\n,\n\"1921542\"\n,\n\"1922777\"\n,\n\"1922906\"\n,\n\"1923412\"\n,\n\"1923457\"\n,\n\"1925264\"\n,\n\"1925278\"\n,\n\"1925330\"\n,\n\"1925490\"\n,\n\"1925504\"\n,\n\"1925677\"\n,\n\"1926819\"\n,\n\"1930151\"\n,\n\"1930498\"\n,\n\"1930502\"\n,\n\"1931928\"\n,\n\"1931959\"\n,\n\"1932070\"\n,\n\"1932097\"\n,\n\"1934335\"\n,\n\"1934352\"\n,\n\"1934397\"\n,\n\"1934432\"\n,\n\"1935636\"\n,\n\"1938855\"\n,\n\"1942198\"\n,\n\"1943517\"\n,\n\"1944010\"\n,\n\"1944148\"\n,\n\"1944245\"\n,\n\"1944564\"\n,\n\"1945275\"\n,\n\"1945289\"\n,\n\"1945660\"\n,\n\"1945706\"\n,\n\"1945945\"\n,\n\"1950957\"\n,\n\"1951020\"\n,\n\"1952800\"\n,\n\"1953586\"\n,\n\"1953701\"\n,\n\"1957739\"\n,\n\"1957916\"\n,\n\"1965960\"\n,\n\"1968092\"\n,\n\"1968936\"\n,\n\"1969376\"\n,\n\"1970173\"\n,\n\"1970732\"\n,\n\"1971297\"\n,\n\"1972137\"\n,\n\"1972171\"\n,\n\"1972553\"\n,\n\"1972570\"\n,\n\"1972761\"\n,\n\"1972810\"\n,\n\"1973184\"\n,\n\"1973198\"\n,\n\"1973216\"\n,\n\"1973791\"\n,\n\"1974201\"\n,\n\"1974250\"\n,\n\"1974902\"\n,\n\"1974916\"\n,\n\"1974920\"\n,\n\"1975006\"\n,\n\"1975422\"\n,\n\"1975453\"\n,\n\"1975550\"\n,\n\"1975738\"\n,\n\"1975852\"\n,\n\"1975866\"\n,\n\"1976067\"\n,\n\"1976133\"\n,\n\"1976768\"\n,\n\"1976803\"\n,\n\"1976945\"\n,\n\"1977049\"\n,\n\"1978051\"\n,\n\"1978575\"\n,\n\"1978638\"\n,\n\"1978894\"\n,\n\"1979033\"\n,\n\"1979100\"\n,\n\"1979127\"\n,\n\"1979397\"\n,\n\"1979429\"\n,\n\"1979717\"\n,\n\"1979876\"\n,\n\"1979990\"\n,\n\"1980101\"\n,\n\"1980115\"\n,\n\"1980371\"\n,\n\"1980403\"\n,\n\"1980673\"\n,\n\"1980687\"\n,\n\"1980784\"\n,\n\"1980816\"\n,\n\"1980833\"\n,\n\"1980930\"\n,\n\"1980992\"\n,\n\"1981020\"\n,\n\"1981114\"\n,\n\"1981159\"\n,\n\"1981176\"\n,\n\"1981420\"\n,\n\"1981669\"\n,\n\"1981672\"\n,\n\"1982238\"\n,\n\"1982370\"\n,\n\"1982494\"\n,\n\"1982717\"\n,\n\"1983191\"\n,\n\"1983605\"\n,\n\"1984378\"\n,\n\"1984381\"\n,\n\"1984492\"\n,\n\"1984538\"\n,\n\"1984604\"\n,\n\"1984618\"\n,\n\"1984729\"\n,\n\"1985346\"\n,\n\"1985377\"\n,\n\"1985457\"\n,\n\"1985474\"\n,\n\"1985491\"\n,\n\"1985510\"\n,\n\"1985887\"\n,\n\"1985970\"\n,\n\"1985984\"\n,\n\"1986473\"\n,\n\"1986487\"\n,\n\"1986789\"\n,\n\"1986810\"\n,\n\"1987615\"\n,\n\"1987726\"\n,\n\"1988149\"\n,\n\"1988201\"\n,\n\"1988246\"\n,\n\"1988485\"\n,\n\"1988499\"\n,\n\"1989994\"\n,\n\"1990438\"\n,\n\"1990566\"\n,\n\"1990791\"\n,\n\"1990810\"\n,\n\"1991596\"\n,\n\"1991659\"\n,\n\"1991867\"\n,\n\"1992117\"\n,\n\"1992228\"\n,\n\"1992231\"\n,\n\"1992325\"\n,\n\"1992342\"\n,\n\"1994833\"\n,\n\"1994864\"\n,\n\"1994895\"\n,\n\"1996668\"\n,\n\"1998076\"\n,\n\"1998940\"\n,\n\"1999762\"\n,\n\"1999905\"\n,\n\"2000154\"\n,\n\"2000602\"\n,\n\"2001469\"\n,\n\"2001646\"\n,\n\"2001650\"\n,\n\"2001694\"\n,\n\"2003006\"\n,\n\"2003360\"\n,\n\"2003373\"\n,\n\"2003387\"\n,\n\"2003516\"\n,\n\"2003741\"\n,\n\"2003755\"\n,\n\"2003849\"\n,\n\"2003870\"\n,\n\"2003977\"\n,\n\"2004019\"\n,\n\"2004230\"\n,\n\"2004289\"\n,\n\"2004341\"\n,\n\"2004355\"\n,\n\"2006447\"\n,\n\"2008653\"\n,\n\"2008667\"\n,\n\"2008702\"\n,\n\"2008716\"\n,\n\"2009780\"\n,\n\"2009985\"\n,\n\"2013728\"\n,\n\"2016790\"\n,\n\"2019306\"\n,\n\"2020738\"\n,\n\"2020741\"\n,\n\"2021928\"\n,\n\"2022066\"\n,\n\"2022070\"\n,\n\"2023287\"\n,\n\"2023319\"\n,\n\"2024016\"\n,\n\"2024130\"\n,\n\"2025206\"\n,\n\"2025237\"\n,\n\"2029601\"\n,\n\"2032629\"\n,\n\"2033069\"\n,\n\"2036354\"\n,\n\"2036608\"\n,\n\"2040655\"\n,\n\"2041269\"\n,\n\"2041973\"\n,\n\"2043333\"\n,\n\"2043510\"\n,\n\"2044887\"\n,\n\"2045970\"\n,\n\"2046233\"\n,\n\"2046570\"\n,\n\"2046583\"\n,\n\"2048738\"\n,\n\"2048755\"\n,\n\"2049550\"\n,\n\"2049710\"\n,\n\"2050867\"\n,\n\"2050870\"\n,\n\"2050898\"\n,\n\"2051484\"\n,\n\"2051502\"\n,\n\"2051516\"\n,\n\"2051835\"\n,\n\"2052230\"\n,\n\"2052289\"\n,\n\"2052404\"\n,\n\"2053194\"\n,\n\"2053257\"\n,\n\"2053274\"\n,\n\"2053288\"\n,\n\"2054336\"\n,\n\"2054960\"\n,\n\"2055050\"\n,\n\"2055078\"\n,\n\"2055189\"\n,\n\"2055450\"\n,\n\"2055990\"\n,\n\"2058426\"\n,\n\"2058460\"\n,\n\"2058936\"\n,\n\"2058970\"\n,\n\"2059408\"\n,\n\"2059838\"\n,\n\"2059872\"\n,\n\"2060014\"\n,\n\"2060028\"\n,\n\"2060059\"\n,\n\"2060111\"\n,\n\"2060142\"\n,\n\"2066785\"\n,\n\"2067881\"\n,\n\"2067958\"\n,\n\"2068003\"\n,\n\"2068340\"\n,\n\"2068370\"\n,\n\"2068384\"\n,\n\"2073351\"\n,\n\"2077264\"\n,\n\"2078246\"\n,\n\"2080837\"\n,\n\"2086158\"\n,\n\"2086512\"\n,\n\"2087830\"\n,\n\"2089762\"\n,\n\"2090015\"\n,\n\"2090605\"\n,\n\"2094837\"\n,\n\"2094899\"\n,\n\"2094951\"\n,\n\"2098021\"\n,\n\"2102833\"\n,\n\"2105317\"\n,\n\"2108442\"\n,\n\"2109823\"\n,\n\"2110540\"\n,\n\"2111872\"\n,\n\"2111983\"\n,\n\"2112982\"\n,\n\"2113312\"\n,\n\"2113410\"\n,\n\"2114390\"\n,\n\"2114804\"\n,\n\"2119750\"\n,\n\"2121699\"\n,\n\"2121765\"\n,\n\"2125540\"\n,\n\"2125678\"\n,\n\"2125761\"\n,\n\"2125970\"\n,\n\"2126646\"\n,\n\"2127104\"\n,\n\"2127933\"\n,\n\"2135654\"\n,\n\"2136493\"\n,\n\"2136619\"\n,\n\"2137031\"\n,\n\"2139439\"\n,\n\"2142279\"\n,\n\"2143948\"\n,\n\"2143979\"\n,\n\"2151638\"\n,\n\"2156203\"\n,\n\"2156220\"\n,\n\"2156265\"\n,\n\"2156282\"\n,\n\"2156296\"\n,\n\"2156345\"\n,\n\"2157712\"\n,\n\"2161534\"\n,\n\"2162231\"\n,\n\"2163244\"\n,\n\"2164465\"\n,\n\"2165096\"\n,\n\"2165159\"\n,\n\"2165974\"\n,\n\"2166189\"\n,\n\"2169537\"\n,\n\"2170320\"\n,\n\"2174011\"\n,\n\"2175121\"\n,\n\"2175197\"\n,\n\"2175357\"\n,\n\"2175596\"\n,\n\"2177785\"\n,\n\"2180386\"\n,\n\"2180959\"\n,\n\"2182020\"\n,\n\"2183144\"\n,\n\"2185652\"\n,\n\"2185794\"\n,\n\"2186474\"\n,\n\"2187359\"\n,\n\"2188281\"\n,\n\"2189582\"\n,\n\"2189600\"\n,\n\"2190376\"\n,\n\"2190380\"\n,\n\"2190408\"\n,\n\"2190439\"\n,\n\"2190442\"\n,\n\"2190553\"\n,\n\"2190598\"\n,\n\"2191011\"\n,\n\"2191042\"\n,\n\"2191198\"\n,\n\"2191490\"\n,\n\"2191518\"\n,\n\"2191521\"\n,\n\"2191712\"\n,\n\"2191774\"\n,\n\"2191810\"\n,\n\"2191823\"\n,\n\"2191840\"\n,\n\"2192007\"\n,\n\"2192118\"\n,\n\"2192294\"\n,\n\"2192309\"\n,\n\"2192312\"\n,\n\"2192410\"\n,\n\"2192423\"\n,\n\"2192565\"\n,\n\"2192614\"\n,\n\"2192853\"\n,\n\"2192978\"\n,\n\"2193023\"\n,\n\"2193103\"\n,\n\"2193200\"\n,\n\"2193214\"\n,\n\"2193308\"\n,\n\"2193564\"\n,\n\"2193595\"\n,\n\"2193613\"\n,\n\"2193627\"\n,\n\"2193707\"\n,\n\"2193741\"\n,\n\"2193769\"\n,\n\"2194036\"\n,\n\"2194164\"\n,\n\"2194244\"\n,\n\"2194483\"\n,\n\"2194501\"\n,\n\"2194803\"\n,\n\"2194900\"\n,\n\"2196880\"\n,\n\"2198493\"\n,\n\"2199444\"\n,\n\"2199701\"\n,\n\"2199954\"\n,\n\"2201304\"\n,\n\"2201591\"\n,\n\"2201637\"\n,\n\"2201703\"\n,\n\"2201717\"\n,\n\"2202206\"\n,\n\"2202590\"\n,\n\"2203732\"\n,\n\"2203746\"\n,\n\"2204221\"\n,\n\"2204634\"\n,\n\"2204665\"\n,\n\"2204856\"\n,\n\"2204922\"\n,\n\"2204940\"\n,\n\"2204970\"\n,\n\"2205220\"\n,\n\"2205331\"\n,\n\"2205473\"\n,\n\"2205681\"\n,\n\"2209369\"\n,\n\"2209657\"\n,\n\"2209865\"\n,\n\"2210410\"\n,\n\"2210423\"\n,\n\"2210520\"\n,\n\"2210565\"\n,\n\"2210582\"\n,\n\"2210600\"\n,\n\"2211325\"\n,\n\"2211453\"\n,\n\"2211467\"\n,\n\"2211980\"\n,\n\"2212098\"\n,\n\"2212577\"\n,\n\"2212594\"\n,\n\"2212609\"\n,\n\"2212740\"\n,\n\"2212817\"\n,\n\"2212851\"\n,\n\"2213018\"\n,\n\"2213021\"\n,\n\"2213115\"\n,\n\"2213260\"\n,\n\"2213288\"\n,\n\"2213465\"\n,\n\"2213479\"\n,\n\"2213820\"\n,\n\"2213833\"\n,\n\"2213961\"\n,\n\"2214290\"\n,\n\"2214433\"\n,\n\"2214592\"\n,\n\"2214957\"\n,\n\"2215161\"\n,\n\"2215321\"\n,\n\"2215366\"\n,\n\"2215415\"\n,\n\"2215429\"\n,\n\"2215450\"\n,\n\"2216001\"\n,\n\"2216063\"\n,\n\"2216237\"\n,\n\"2216379\"\n,\n\"2216459\"\n,\n\"2216670\"\n,\n\"2216861\"\n,\n\"2216907\"\n,\n\"2217031\"\n,\n\"2217045\"\n,\n\"2217059\"\n,\n\"2217236\"\n,\n\"2217240\"\n,\n\"2217320\"\n,\n\"2217333\"\n,\n\"2217489\"\n,\n\"2217572\"\n,\n\"2217590\"\n,\n\"2217729\"\n,\n\"2217732\"\n,\n\"2217809\"\n,\n\"2218315\"\n,\n\"2218350\"\n,\n\"2218363\"\n,\n\"2218585\"\n,\n\"2218682\"\n,\n\"2218696\"\n,\n\"2218762\"\n,\n\"2218825\"\n,\n\"2218887\"\n,\n\"2218890\"\n,\n\"2218919\"\n,\n\"2218936\"\n,\n\"2218998\"\n,\n\"2219043\"\n,\n\"2219140\"\n,\n\"2219300\"\n,\n\"2220729\"\n,\n\"2220809\"\n,\n\"2220826\"\n,\n\"2220830\"\n,\n\"2221270\"\n,\n\"2221430\"\n,\n\"2221617\"\n,\n\"2221651\"\n,\n\"2221679\"\n,\n\"2221984\"\n,\n\"2222234\"\n,\n\"2222425\"\n,\n\"2222855\"\n,\n\"2223008\"\n,\n\"2223011\"\n,\n\"2223087\"\n,\n\"2223105\"\n,\n\"2223170\"\n,\n\"2223184\"\n,\n\"2223198\"\n,\n\"2223202\"\n,\n\"2223504\"\n,\n\"2223518\"\n,\n\"2223535\"\n,\n\"2223566\"\n,\n\"2223663\"\n,\n\"2223868\"\n,\n\"2223885\"\n,\n\"2223951\"\n,\n\"2224454\"\n,\n\"2224534\"\n,\n\"2224628\"\n,\n\"2224920\"\n,\n\"2224933\"\n,\n\"2224950\"\n,\n\"2225120\"\n,\n\"2225436\"\n,\n\"2225502\"\n,\n\"2225533\"\n,\n\"2225550\"\n,\n\"2225578\"\n,\n\"2226213\"\n,\n\"2226258\"\n,\n\"2226261\"\n,\n\"2226307\"\n,\n\"2226324\"\n,\n\"2226338\"\n,\n\"2226435\"\n,\n\"2226688\"\n,\n\"2226691\"\n,\n\"2227150\"\n,\n\"2227177\"\n,\n\"2227291\"\n,\n\"2227340\"\n,\n\"2227354\"\n,\n\"2227403\"\n,\n\"2227417\"\n,\n\"2227434\"\n,\n\"2227802\"\n,\n\"2227958\"\n,\n\"2227992\"\n,\n\"2228020\"\n,\n\"2228048\"\n,\n\"2228079\"\n,\n\"2228420\"\n,\n\"2228464\"\n,\n\"2228481\"\n,\n\"2228850\"\n,\n\"2228943\"\n,\n\"2229512\"\n,\n\"2229956\"\n,\n\"2230115\"\n,\n\"2230129\"\n,\n\"2230132\"\n,\n\"2230163\"\n,\n\"2230177\"\n,\n\"2230194\"\n,\n\"2230403\"\n,\n\"2230420\"\n,\n\"2230465\"\n,\n\"2230736\"\n,\n\"2230740\"\n,\n\"2231020\"\n,\n\"2231079\"\n,\n\"2231544\"\n,\n\"2231575\"\n,\n\"2231624\"\n,\n\"2231641\"\n,\n\"2231752\"\n,\n\"2231815\"\n,\n\"2231832\"\n,\n\"2231877\"\n,\n\"2232078\"\n,\n\"2232144\"\n,\n\"2232210\"\n,\n\"2232241\"\n,\n\"2232255\"\n,\n\"2232269\"\n,\n\"2232352\"\n,\n\"2232366\"\n,\n\"2232401\"\n,\n\"2232429\"\n,\n\"2232779\"\n,\n\"2232862\"\n,\n\"2232908\"\n,\n\"2232911\"\n,\n\"2232942\"\n,\n\"2233046\"\n,\n\"2233126\"\n,\n\"2233191\"\n,\n\"2233320\"\n,\n\"2234333\"\n,\n\"2234347\"\n,\n\"2234400\"\n,\n\"2234507\"\n,\n\"2234524\"\n,\n\"2234937\"\n,\n\"2234940\"\n,\n\"2234971\"\n,\n\"2235061\"\n,\n\"2235089\"\n,\n\"2235221\"\n,\n\"2235235\"\n,\n\"2235252\"\n,\n\"2235283\"\n,\n\"2235412\"\n,\n\"2235426\"\n,\n\"2236300\"\n,\n\"2236314\"\n,\n\"2236855\"\n,\n\"2236918\"\n,\n\"2236921\"\n,\n\"2236935\"\n,\n\"2236952\"\n,\n\"2236966\"\n,\n\"2236970\"\n,\n\"2237153\"\n,\n\"2237247\"\n,\n\"2238343\"\n,\n\"2238406\"\n,\n\"2238410\"\n,\n\"2238468\"\n,\n\"2238503\"\n,\n\"2238579\"\n,\n\"2238725\"\n,\n\"2238739\"\n,\n\"2238760\"\n,\n\"2238773\"\n,\n\"2238819\"\n,\n\"2239946\"\n,\n\"2239977\"\n,\n\"2240042\"\n,\n\"2240056\"\n,\n\"2240060\"\n,\n\"2240087\"\n,\n\"2240216\"\n,\n\"2240694\"\n,\n\"2240730\"\n,\n\"2240743\"\n,\n\"2241517\"\n,\n\"2241840\"\n,\n\"2244420\"\n,\n\"2244434\"\n,\n\"2244448\"\n,\n\"2244608\"\n,\n\"2244625\"\n,\n\"2245367\"\n,\n\"2246432\"\n,\n\"2247109\"\n,\n\"2247334\"\n,\n\"2247351\"\n,\n\"2248923\"\n,\n\"2249443\"\n,\n\"2249491\"\n,\n\"2249506\"\n,\n\"2249537\"\n,\n\"2249759\"\n,\n\"2249776\"\n,\n\"2249780\"\n,\n\"2249808\"\n,\n\"2249811\"\n,\n\"2250590\"\n,\n\"2250684\"\n,\n\"2250698\"\n,\n\"2250702\"\n,\n\"2250733\"\n,\n\"2250750\"\n,\n\"2250795\"\n,\n\"2252252\"\n,\n\"2252283\"\n,\n\"2253616\"\n,\n\"2253713\"\n,\n\"2255933\"\n,\n\"2257227\"\n,\n\"2257261\"\n,\n\"2257292\"\n,\n\"2257310\"\n,\n\"2262957\"\n,\n\"2262960\"\n,\n\"2263685\"\n,\n\"2263720\"\n,\n\"2264240\"\n,\n\"2264511\"\n,\n\"2265125\"\n,\n\"2265205\"\n,\n\"2265219\"\n,\n\"2265236\"\n,\n\"2265253\"\n,\n\"2265267\"\n,\n\"2265635\"\n,\n\"2265701\"\n,\n\"2265729\"\n,\n\"2265809\"\n,\n\"2265812\"\n,\n\"2265843\"\n,\n\"2265860\"\n,\n\"2265910\"\n,\n\"2267570\"\n,\n\"2267584\"\n,\n\"2267713\"\n,\n\"2267789\"\n,\n\"2268140\"\n,\n\"2268216\"\n,\n\"2268220\"\n,\n\"2269739\"\n,\n\"2269756\"\n,\n\"2269870\"\n,\n\"2270043\"\n,\n\"2270057\"\n,\n\"2270060\"\n,\n\"2270074\"\n,\n\"2270088\"\n,\n\"2270359\"\n,\n\"2270442\"\n,\n\"2270487\"\n,\n\"2271073\"\n,\n\"2271105\"\n,\n\"2271264\"\n,\n\"2271281\"\n,\n\"2271313\"\n,\n\"2271327\"\n,\n\"2271570\"\n,\n\"2271583\"\n,\n\"2271597\"\n,\n\"2271601\"\n,\n\"2271646\"\n,\n\"2271650\"\n,\n\"2271663\"\n,\n\"2271730\"\n,\n\"2271760\"\n,\n\"2271837\"\n,\n\"2272166\"\n,\n\"2272246\"\n,\n\"2272357\"\n,\n\"2272503\"\n,\n\"2272582\"\n,\n\"2272676\"\n,\n\"2272756\"\n,\n\"2272787\"\n,\n\"2272819\"\n,\n\"2272822\"\n,\n\"2272902\"\n,\n\"2272933\"\n,\n\"2272964\"\n,\n\"2273259\"\n,\n\"2273262\"\n,\n\"2273293\"\n,\n\"2273308\"\n,\n\"2273311\"\n,\n\"2273356\"\n,\n\"2273467\"\n,\n\"2273484\"\n,\n\"2273502\"\n,\n\"2273520\"\n,\n\"2273550\"\n,\n\"2273595\"\n,\n\"2273897\"\n,\n\"2273901\"\n,\n\"2274120\"\n,\n\"2274404\"\n,\n\"2274452\"\n,\n\"2274466\"\n,\n\"2274501\"\n,\n\"2274550\"\n,\n\"2274879\"\n,\n\"2274896\"\n,\n\"2274931\"\n,\n\"2274945\"\n,\n\"2275083\"\n,\n\"2275399\"\n,\n\"2275403\"\n,\n\"2275465\"\n,\n\"2275479\"\n,\n\"2275482\"\n,\n\"2275496\"\n,\n\"2275593\"\n,\n\"2275625\"\n,\n\"2275992\"\n,\n\"2276159\"\n,\n\"2276162\"\n,\n\"2276193\"\n,\n\"2276447\"\n,\n\"2276464\"\n,\n\"2276686\"\n,\n\"2276749\"\n,\n\"2276766\"\n,\n\"2276770\"\n,\n\"2276930\"\n,\n\"2276943\"\n,\n\"2276957\"\n,\n\"2276960\"\n,\n\"2277002\"\n,\n\"2277047\"\n,\n\"2277050\"\n,\n\"2277207\"\n,\n\"2277210\"\n,\n\"2277241\"\n]\n,\"limit\":5000,\"offsetby\" : 0,\"count\" : 5000,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/active/?pagesize=5000\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/active/?offsetby=5000&pagesize=5000\"\n      }\n     ]\n}\n"},{"id":"d3b8e7a8-62eb-4265-bb2f-a38a8c81aad0","name":"Active Employee's default","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/active/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 13 Mar 2018 13:54:04 GMT","name":"Date","description":""},{"key":"ETag","value":"\"a3jV6vklutu03flmajzx8qS3OWWygg0tIsArMcn8GmM/O05zwDli+czs5I99Gb6pDydjeBpP9eQNJsBH9qIq4A==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-000a7a9e","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"000070\"\n,\n\"000071\"\n,\n\"000072\"\n,\n\"000073\"\n,\n\"000074\"\n,\n\"000075\"\n,\n\"000085\"\n,\n\"0003490\"\n,\n\"000368\"\n,\n\"0006771\"\n,\n\"000881\"\n,\n\"000882\"\n,\n\"000883\"\n,\n\"000885\"\n,\n\"000886\"\n,\n\"0012241\"\n,\n\"001234\"\n,\n\"0013640\"\n,\n\"0014302\"\n,\n\"0014395\"\n,\n\"0014618\"\n,\n\"0015860\"\n,\n\"0016983\"\n,\n\"0020136\"\n,\n\"0022675\"\n,\n\"0023643\"\n,\n\"002488\"\n,\n\"0025846\"\n,\n\"0026047\"\n,\n\"0026512\"\n,\n\"0028524\"\n,\n\"0029922\"\n,\n\"0031794\"\n,\n\"0032061\"\n,\n\"0034934\"\n,\n\"0036755\"\n,\n\"0043130\"\n,\n\"0044941\"\n,\n\"0045780\"\n,\n\"0046457\"\n,\n\"0047664\"\n,\n\"0047681\"\n,\n\"0049534\"\n,\n\"0051140\"\n,\n\"0051979\"\n,\n\"0052853\"\n,\n\"0057845\"\n,\n\"0061351\"\n,\n\"0061813\"\n,\n\"0062746\"\n,\n\"0066995\"\n,\n\"0068421\"\n,\n\"0068674\"\n,\n\"0069559\"\n,\n\"0070741\"\n,\n\"0070866\"\n,\n\"0071150\"\n,\n\"0071612\"\n,\n\"0072944\"\n,\n\"0073960\"\n,\n\"0074880\"\n,\n\"0075046\"\n,\n\"0079056\"\n,\n\"0079965\"\n,\n\"0081043\"\n,\n\"0082008\"\n,\n\"0084707\"\n,\n\"0085976\"\n,\n\"0087686\"\n,\n\"0088814\"\n,\n\"0088859\"\n,\n\"0090624\"\n,\n\"0090669\"\n,\n\"0091081\"\n,\n\"0091560\"\n,\n\"0092955\"\n,\n\"0093219\"\n,\n\"0096743\"\n,\n\"0097038\"\n,\n\"0098467\"\n,\n\"0098707\"\n,\n\"0098977\"\n,\n\"0100521\"\n,\n\"0101600\"\n,\n\"0102390\"\n,\n\"0102707\"\n,\n\"0102901\"\n,\n\"0102915\"\n,\n\"0103310\"\n,\n\"0103710\"\n,\n\"0105180\"\n,\n\"0106480\"\n,\n\"0107351\"\n,\n\"0107396\"\n,\n\"0107508\"\n,\n\"0108080\"\n,\n\"0109714\"\n,\n\"0109922\"\n,\n\"0110029\"\n,\n\"0110844\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/active/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/active/?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"0b4c5e7a-f20c-42f5-953d-79a6533a6243"}],"id":"2c3da13d-0b91-4358-b9c3-4991f1e993bf","description":"<p>This module relates to active employees, and will always only deal with active employees. The objective is to return an employee result set matching certain use cases, common use cases:</p>\n<ul>\n<li>Determine active employees</li>\n<li>Active employees on a particular date</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"4f8c159a-969f-4f03-ba2b-08fec6ecf70c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4125962d-6439-47dd-b649-c7755779d85f","type":"text/javascript","exec":[""]}}],"_postman_id":"2c3da13d-0b91-4358-b9c3-4991f1e993bf"},{"name":"JML","item":[{"name":"Leaver","item":[{"name":"Day","item":[{"name":"/filter/leaver/day/:days?","id":"21254a2d-dbbb-4d1b-9769-66e598726f38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/day/30","description":"<p>Use this service to query employees leaving within the next X number of days, use the parameter <code>:days</code> to set the X value. These employees are currently active, however, they are set to leave within X number of days. The parameter must be positive.</p>\n<p>The service will assume today when supplied with no value for <code>:days</code> or a value of 0, this returns employees leaving today.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","jml","leaver","day","30"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"84b9c377-4459-4c98-afdf-b39bc9a7fac9","name":"Leaving Today","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/day/0"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 13 Mar 2018 12:02:25 GMT","name":"Date","description":""},{"key":"ETag","value":"\"iZE5eFKbFKnZ6UAvakY4osy9aKOhoxFEJdMkYK4pzpYTNPPR0dXUvREJQBZzVjsJG0aJSEmrlhGp/cp9ECeAIg==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-000a2b97","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"1409000\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/leaver/day/0\"\n      }\n    ]\n}\n"},{"id":"e7f9078f-8135-46d1-9855-791d96dde122","name":"Leavers within next 30 days","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/day/30"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 12 Mar 2018 21:13:46 GMT","name":"Date","description":""},{"key":"ETag","value":"\"HEmGvE00e93eT+klCWd8Ob/KpCot3jqSpNBJbI8FS/W1wjXw504P+jl2lZNfxb1b4tAsDakTu8BGMrWulMvw5Q==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-00095ca4","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"1265972\"\n,\n\"1266093\"\n,\n\"1266320\"\n,\n\"1266812\"\n,\n\"1267013\"\n,\n\"1267172\"\n,\n\"1267412\"\n,\n\"1267430\"\n,\n\"1267443\"\n,\n\"1316426\"\n,\n\"1316460\"\n,\n\"1316665\"\n,\n\"1318090\"\n,\n\"1318615\"\n,\n\"1319250\"\n,\n\"1409000\"\n,\n\"1410828\"\n,\n\"1416471\"\n,\n\"1419656\"\n,\n\"1421133\"\n,\n\"1421660\"\n,\n\"1422451\"\n,\n\"1422642\"\n,\n\"1423322\"\n,\n\"1425268\"\n,\n\"1425560\"\n,\n\"1428505\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 27,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/leaver/day/30\"\n      }\n    ]\n}\n"}],"_postman_id":"21254a2d-dbbb-4d1b-9769-66e598726f38"}],"id":"4507b078-48b9-4679-b9e0-92dc2bea3771","description":"<p>Use this service to query employees leaving within the next X number of days.</p>\n","event":[{"listen":"prerequest","script":{"id":"6dbcd449-9e30-41fd-ae6f-9d249fcf3e30","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"feff06eb-b68c-4a31-9a12-5e0cebf18c3d","type":"text/javascript","exec":[""]}}],"_postman_id":"4507b078-48b9-4679-b9e0-92dc2bea3771"},{"name":"Date","item":[{"name":"/filter/jml/leaver/date/:date?","id":"e984d1f0-5372-4008-ab15-634de275353e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/date/20190101","description":"<p>Use this service to query employees leaving based on a supplied date. By providing a future date the service will check employees who are due to leave between \"now\" and the future date. These employees are currently active, but are set to leave by the date provided.</p>\n<p>Date format is YYYYMMDD and the date should be in the future, and the service treats date inclusive.</p>\n<p>If no date is supplied, by default the service will assume today as the date, i.e. find employees leaving today.</p>\n<p>Providing a date less than \"today\" will always return 0 returns, no error will be provided, simply a response of 0 employees i.e. you must provide a future date.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","jml","leaver","date","20190101"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2c974905-5021-4cc1-99bb-66ad7a4a8df5","name":"Leavers by 10th July 2017","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/date/20180710"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 12 Mar 2018 21:20:49 GMT","name":"Date","description":""},{"key":"ETag","value":"\"n64ZqihwRTaSnvtuJO8evqgaU7E41l1sQh6dvCZ2iJaA88DDSmbv8C/ph/M5S3l9M+IJJjYZ/KhVZTpDuEtdXQ==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-00095dc9","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"1265972\"\n,\n\"1266093\"\n,\n\"1266320\"\n,\n\"1266812\"\n,\n\"1267013\"\n,\n\"1267172\"\n,\n\"1267412\"\n,\n\"1409000\"\n,\n\"1410828\"\n,\n\"1416471\"\n,\n\"1419656\"\n,\n\"1421133\"\n,\n\"1421660\"\n,\n\"1422451\"\n,\n\"1422642\"\n,\n\"1423322\"\n,\n\"1425268\"\n,\n\"1425560\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 18,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/leaver/date/20180324\"\n      }\n    ]\n}\n"}],"_postman_id":"e984d1f0-5372-4008-ab15-634de275353e"}],"id":"c528ebaf-3624-47fa-8783-3c318357d7ee","description":"<p>Use this service to query employees leaving based on a supplied date.</p>\n","event":[{"listen":"prerequest","script":{"id":"93d61e37-2296-47f7-82c6-35224f300284","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"802ce7f5-9b1e-4b69-92d3-9ac4d5f7525d","type":"text/javascript","exec":[""]}}],"_postman_id":"c528ebaf-3624-47fa-8783-3c318357d7ee"},{"name":"Left","item":[{"name":"/filter/jml/leaver/left/:days?","id":"a816fc30-d180-4105-89bd-6d7cdfe42ed3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/left/1","description":"<p>Use this service to query individuals who have left within the previous X number of days, use the parameter <code>:days</code> to set the X value. With this service it is possible to determine historical employees.</p>\n<p>These employees are no longer considered active. The parameter must be positive.</p>\n<p>The service will assume yesterday when supplied with no value for <code>:days</code>.</p>\n<p>Individuals leaving <em>today</em> will not appear in this result set. Those leaving today remain active until <em>tomorrow</em>.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","jml","leaver","left","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a816fc30-d180-4105-89bd-6d7cdfe42ed3"}],"id":"ed0a1fc0-f3ed-4fcc-9915-94a0324f5652","description":"<p>Use this service to query individuals who have previously left i.e. left within the previous X number of days. These individuals are considered inactive and no longer <em>employeed</em>. The service simply querys the date an individual has left. The date queried is the individuals most recent leaving date (catering for the cases where an individual has re-joined and subsequently left).</p>\n","event":[{"listen":"prerequest","script":{"id":"e9dc38b4-cddd-4eb2-a683-8d75fd3390a5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7747b522-5e90-4e95-9f7f-900209d251e5","type":"text/javascript","exec":[""]}}],"_postman_id":"ed0a1fc0-f3ed-4fcc-9915-94a0324f5652"}],"id":"9d65624b-e60f-4c0a-b6a2-14c61d344baf","description":"<p>This module relates to employees leaving, the service will query an individuals leaving date, even though the employee may currently be active.</p>\n<p>Common use cases are:</p>\n<ul>\n<li>Determine individuals leaving within the next X number of days i.e. they are currently active, but have a leave date within the next 10 days.</li>\n<li>Determine individuals who are currently active but will have left by a certain future date i.e. provide a future date and the service will return individuals leaving between now and this future date.</li>\n<li>Determine individuals previously left.</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"ee114aa5-7ad8-4d39-98e4-0f020c646744","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e1e5359f-353a-4f40-97b1-08401059ea20","type":"text/javascript","exec":[""]}}],"_postman_id":"9d65624b-e60f-4c0a-b6a2-14c61d344baf"},{"name":"Joiner","item":[{"name":"recent","item":[{"name":"/filter/jml/joiner/recent/:days","id":"f4436c84-2e4b-4351-87b4-b17e4a0de0d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/joiner/recent/30","description":"<p>This service is focused on recent starters i.e. active individuals who recently joined. With this service you can determine individuals who started within the previous X number of days, i.e. this is a between NOW and - X days.</p>\n<p>in cases where no <code>days</code> parameter has been provided, the service assumes <em>0</em> i.e. who has started <em>today</em>. In most cases it is expected to provide 30 / 60 or 90 days. A max of 36500 is set for the upper limit.</p>\n<p>In all cases employees starting <em>today</em> are included.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","jml","joiner","recent","30"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"00ef7f5e-a369-41c5-8032-f07eb4eb5f80","name":"Previous 30 Days","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/joiner/recent/30"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 15 Mar 2018 11:53:56 GMT","name":"Date","description":""},{"key":"ETag","value":"\"140VlUC1D3FC3GEyZ2rH9bAWqVN9hnlxbHzATll48Aj8fNKuVg9wYkKSP/n3RUXZ+h9hRJFOjMHr+CTw2P3fgQ==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-000df1b3","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"5990404\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/joiner/recent/\"\n      }\n    ]\n}\n"},{"id":"ffea43eb-eb6c-42b9-9d8a-611f19147c87","name":"Exceeding the Max Threshold","originalRequest":{"method":"GET","header":[],"url":"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/joiner/recent/36501"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 15 Mar 2018 12:12:36 GMT","name":"Date","description":""},{"key":"ETag","value":"\"nN2x9d3E41tTPKzxvz7dKw0hP6y+uPBjgI4mv2+zdxx8IXg8lojzVWg23GzD4VkZycVmFyVr/KOQvZWKurl0kA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-000dfe97","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"004\",\"errorMessage\" :\"Validation failed. Max of 36500 (~100 years)\" }}\n"}],"_postman_id":"f4436c84-2e4b-4351-87b4-b17e4a0de0d1"}],"id":"d2db111f-3f6a-4b11-9cb0-c7966af4cd1d","description":"<p>This service is focused on recent starters i.e. active individuals who recently joined. With this service you can determine individuals you started within the previous X number of days.</p>\n<p>in cases where no <code>days</code> parameter has been provided, the service assumes <em>0</em> i.e. who has started <em>today</em>. In most cases it is expected to provide 30 / 60 or 90 days. A max of 36500 is set for the upper limit.</p>\n","event":[{"listen":"prerequest","script":{"id":"97d1ff5d-c726-4053-b660-2fd400e4d7d4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bb0cac64-7698-4727-9485-0f45b4751e70","type":"text/javascript","exec":[""]}}],"_postman_id":"d2db111f-3f6a-4b11-9cb0-c7966af4cd1d"},{"name":"future","item":[{"name":"/filter/jml/joiner/future/:days","id":"e4e2e858-67a6-4b40-919b-9db788baf9ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/joiner/future/5","description":"<p>Determine individuals due to start within the next X number of days.</p>\n<p>In cases where no <code>days</code> parameter has been provided, the service assumes <em>0</em> i.e. who has started <em>today</em>. In most cases it is expected to provide 30 / 60 or 90 days. A max of 36500 is set for the upper limit.</p>\n<p>In all cases employees starting <em>today</em> are included.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","jml","joiner","future","5"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"055bfa37-044a-4092-ac8c-485e15278541","name":"Starting Today","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/joiner/future/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 16 Mar 2018 09:14:11 GMT","name":"Date","description":""},{"key":"ETag","value":"\"uvizmfzh9HbIvg+bU9Db97yB/zZdZHUPZKquXaeGXMz25ZoDudfkO6lH/nfFZrEDkA99VtHMaWK9iAGZnxcWtw==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"cb89685b-0a33-4e88-9829-ed0bf23cf3fc-00005eff","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"1265972\"\n,\n\"1266093\"\n,\n\"1266267\"\n,\n\"1266320\"\n,\n\"1425560\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 5,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/joiner/future/\"\n      }\n    ]\n}\n"},{"id":"484427f1-0167-4a03-b812-0d2f579f50c7","name":"Starting Next 5 Days.","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/joiner/future/5"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 16 Mar 2018 09:06:02 GMT","name":"Date","description":""},{"key":"ETag","value":"\"a57aOwmxwydB4kqrVe87nAzw9DQGCbwJ+w+BGb7ygM2NEY37h+ymWOeSbINkBYdsAjKEEV+GpYdRIyszNKFUXg==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"cb89685b-0a33-4e88-9829-ed0bf23cf3fc-0000597a","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"1409000\"\n,\n\"1410828\"\n,\n\"1416471\"\n,\n\"1419656\"\n,\n\"1421133\"\n,\n\"5990404\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 6,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/joiner/future/5\"\n      }\n    ]\n}\n"}],"_postman_id":"e4e2e858-67a6-4b40-919b-9db788baf9ed"}],"id":"71e3f72c-1eab-480d-8cad-d6f10b8a2a53","description":"<p>This service is focused on individuals starting in the future i.e. individuals who are due to start, but are not currently active. With this service you can determine individuals due to commence <em>within</em> the next X number of days i.e. this is a between NOW and + X days.</p>\n","event":[{"listen":"prerequest","script":{"id":"16643eb1-981a-4086-8aa9-c2059ba33c1f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d3b0e4b9-7363-4b39-82db-a9b19960a64a","type":"text/javascript","exec":[""]}}],"_postman_id":"71e3f72c-1eab-480d-8cad-d6f10b8a2a53"}],"id":"6dfe8004-bfd6-4035-a8b3-dbc021de3220","description":"<p>This module relates to employees joining, the service will query individuals starting date, even though the employee may currently be active. An individuals start date is their most recent start date, in cases where an employee has left and rejoined, their current start date is the most recent date, this service only queries the most recent start date. The service will not look at original start dates aka <code>day Zero</code>.</p>\n<p>Common use cases are:</p>\n<ul>\n<li>Determine individual's recently joined, i.e. started in last 30 days.</li>\n<li>Determine individual's joining at a future date, i.e. starting in the next 30 days.</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"4e2f4846-37bd-4706-ab68-c1a2649ee294","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9d78e3ff-822b-49b7-8fb2-9a25f1ff9786","type":"text/javascript","exec":[""]}}],"_postman_id":"6dfe8004-bfd6-4035-a8b3-dbc021de3220"}],"id":"d39db4bf-6504-4f53-b55d-a86c63c52a84","description":"<p>This modules refers to Joiners, Movers and Leavers hence /JML/. Various use cases exist, for example, use this module to determine:</p>\n<ul>\n<li>recently joined employees</li>\n<li>employee's joining within next X number of days</li>\n<li>employee's due to leave based on dates / date</li>\n</ul>\n<p>In general this module will provide filters for employees joining, moving and leaving. The objective is to return an employee result set matching certain use cases.</p>\n","event":[{"listen":"prerequest","script":{"id":"740af774-1c03-42fd-9252-f23e93b250f1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"250b9e8a-35cd-4052-b893-730bcf6b05dc","type":"text/javascript","exec":[""]}}],"_postman_id":"d39db4bf-6504-4f53-b55d-a86c63c52a84"}],"id":"3a933b20-94cc-4ed0-9d0f-c1091ffe4ca5","description":"<p>The filter's module objective, is to decouple common query requests. Instead of each service supporting the common queries, these queries are decoupled in this filter module.</p>\n<p>Common Queries include get a list (i.e. a result set) of:</p>\n<ul>\n<li>active employees</li>\n<li>employee's due to leave</li>\n<li>employee's recently joined</li>\n<li>employee's due to join in the near future</li>\n<li>employee's appointments (typically the employees Job)</li>\n</ul>\n<p>Use these filers to query for employees under above headings, and then use the result set to feed other services.</p>\n<p><strong>Pagination and Limits</strong></p>\n<p>These filters allow for larger than normal pagesizes. For example, typically the pagesize (i.e. the result set) is 100 results, however you can now set the pagesize to 10,000 (this is a max value). Therefore if you have 10,000 employees you can make one request, if you have more than 10,000 active employees, the filter will provide the first 10,000 and provide a reference link for the next 10,000. </p>\n<p>Do not set the pagesize above 10,000, if you do, only 100 results will be returned. The web services framework will always revert back to the default (i.e. 100) if the max value has been breached.</p>\n<p>Any instances where more than pagesize exist, e.g. (a pagesize of 100 is used, and 1,000 records exist) the response body will include a link array with additonal links for pagination.</p>\n<p>Each GET request includes following </p>\n<ul>\n<li>limit</li>\n</ul>\n<p>represents the maximum number of records returned in one request e.g. 100 (or whatever the pagesize is)</p>\n<ul>\n<li>offsetby</li>\n</ul>\n<p>represents pagination, the first request will always have an offsetby 0 i.e. the start. Where more than the limit exists offsetby controls the starting position, typically in batches of 100. Each GET request can accept the offsetby parameter.</p>\n<ul>\n<li>count</li>\n</ul>\n<p>the number of records for this reponse, the maximum count will equal the limit parameter i.e. 100.</p>\n<ul>\n<li>hasMore</li>\n</ul>\n<p>a boolean representation indicating if more records exist.</p>\n<ul>\n<li>links</li>\n</ul>\n<p>includes links to first and next. The next link is used when pagination is discovered i.e. more than the limit per request.</p>\n","event":[{"listen":"prerequest","script":{"id":"867f1f76-3f87-4d80-ae2c-a13b56555047","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2be39299-a7dd-4daf-ba44-305d6ea9fe7d","type":"text/javascript","exec":[""]}}],"_postman_id":"3a933b20-94cc-4ed0-9d0f-c1091ffe4ca5"},{"name":"Person","item":[{"name":"address","item":[{"name":"home","item":[{"name":"/person/address/home/:personnelNo","id":"b22f6822-e60d-47a4-91f4-d4eafd483505","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/home/5990404","description":"<p>This service simply returns the home address for an individual.</p>\n<p>Home address's have effective dates and have the concept of being active, the current effective and active home address is returned.  </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","address","home","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"de4e1554-605d-4ba7-8578-4861c8b43447","name":"Home Address","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/home/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 26 Jun 2018 17:46:29 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"LHgoPsSqJ5Zp8UqBgh5MgVJG1HOKKCBfPREAx0YMiAa1XGYZQFGCugkHcVG78YpKDshSr27rdW7q+8qo0Xaa1Q==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-0000c169","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"line1\":\"01 Sherringham Avenue\",\"line2\":\"Westmore\",\"line3\":\"Windsor\",\"line4\":\"Tottenham\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N17\",\"postCodeSuffix\":\"9XJ\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/address/home/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"b22f6822-e60d-47a4-91f4-d4eafd483505"}],"id":"ad42b11d-8ebf-4608-a83e-3788543b21f5","description":"<p>This service simply returns the home address for an individual.</p>\n","event":[{"listen":"prerequest","script":{"id":"13f44fb6-3644-43f1-8539-188f9eea14f7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a2e2e134-0c18-4141-aca4-c7c0e252e263","type":"text/javascript","exec":[""]}}],"_postman_id":"ad42b11d-8ebf-4608-a83e-3788543b21f5"},{"name":"nextOfKin","item":[{"name":"/person/address/nextofkin/:personnelNo","id":"0800b457-a2c8-4b5d-ab91-efc019fe16e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/nextofkin/5990404","description":"<p>This service simply returns the next of kin address for an individual.</p>\n<p>Next of Kin address's have effective dates and have the concept of being active, the current effective and active Next of Kin address is returned.  </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","address","nextofkin","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0ef3d830-4ba3-4a86-ad83-ec7e595f3ec5","name":"Next Of Kin Address","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/nextofkin/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 26 Jun 2018 17:47:03 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"GH0Ws6A72ZRA9hGnM/hkQzulABHsxNo+6L4wYBM7/01GxS47hp98GWrAUk1Z3T0UyQgnPFcoFtJlDKvttTJzwQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=99","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-0000c1be","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"line1\":\"01 Windsor Street\",\"line2\":\"East Bridge\",\"line3\":\"Kings Avenue\",\"line4\":\"Windsor\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N18\",\"postCodeSuffix\":\"8ZJ\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/address/nextofkin/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"0800b457-a2c8-4b5d-ab91-efc019fe16e8"}],"id":"87caf662-165a-43e8-94ef-a1099e32719a","description":"<p>This service simply returns the next of kin address for an individual.</p>\n","event":[{"listen":"prerequest","script":{"id":"c8571320-f5af-44fd-b6a8-ce3604a6bf1f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2a9e756b-8925-4668-acaf-0209f9c14c5e","type":"text/javascript","exec":[""]}}],"_postman_id":"87caf662-165a-43e8-94ef-a1099e32719a"},{"name":"work ","item":[{"name":"/person/address/work/:personnelNo","id":"083a0499-27b2-4fb7-90e9-acd025b1770c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/work/5990404","description":"<p>This service simply returns the work address for an individual.</p>\n<p>Work address's have effective dates and have the concept of being active, the current effective and active work address is returned.  </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","address","work","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b8b62b9c-6ee2-4cde-b3bb-706eac799f75","name":"Work Address","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/work/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 26 Jun 2018 17:50:18 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"BfvMfrRK99guHS+1Cxo2GDYQj7LsqayBrWRnoH+84jV80kgOOa38STTJaL7oNDTYQNuu9qlKrJPfMDqZZfKWeg==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-0000c393","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"line1\":\"100 Fleetmore Street\",\"line2\":\"West Kings State\",\"line3\":\"Queens Avenue\",\"line4\":\"Windsor\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N17\",\"postCodeSuffix\":\"9SD\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/address/work/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"083a0499-27b2-4fb7-90e9-acd025b1770c"}],"id":"f1e09a47-bbe1-45e5-bf5f-ba8e8ad519a7","description":"<p>This service simply returns the work address for an individual. The address type of 'work' is not deafult address type as part of CoreHR. However, this address type is often created by system Administrators. For this web service to return an Address, the address type must be 'WORK'. </p>\n","event":[{"listen":"prerequest","script":{"id":"aaa944bb-d23a-4b17-934b-a3c94d9dae0f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"19992f97-2a88-472a-a38f-0d2fa7320b2d","type":"text/javascript","exec":[""]}}],"_postman_id":"f1e09a47-bbe1-45e5-bf5f-ba8e8ad519a7"},{"name":"all","item":[{"name":"/person/address/all/:personnelNo","id":"c1686ac0-f128-48b2-8e44-510c42b44ad9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/all/5990404","description":"<p>This service returns all active addresses for an individual currently ineffective. This includes home, next of kin and <em>other</em> address. </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","address","all","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0fff4fe9-79e3-40d0-8275-c42a4d1a9970","name":"All Addresses","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/all/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 26 Jun 2018 17:54:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"whBYl/hO41707uWg37s7brO+oRGWKVUVCArWwHkfSzyVWhRscn+I6GNpgMHTDembglIL4AUg8sl4ShdOw6gEhQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-0000c5f8","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"WORK\",\"line1\":\"100 Fleetmore Street\",\"line2\":\"West Kings State\",\"line3\":\"Queens Avenue\",\"line4\":\"Windsor\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N17\",\"postCodeSuffix\":\"9SD\"}\n,\n{\"type\":\"home\",\"line1\":\"01 Sherringham Avenue\",\"line2\":\"Westmore\",\"line3\":\"Windsor\",\"line4\":\"Tottenham\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N17\",\"postCodeSuffix\":\"9XJ\"}\n,\n{\"type\":\"nextOfKin\",\"line1\":\"01 Windsor Street\",\"line2\":\"East Bridge\",\"line3\":\"Kings Avenue\",\"line4\":\"Windsor\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N18\",\"postCodeSuffix\":\"8ZJ\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 3,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/address/all/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"c1686ac0-f128-48b2-8e44-510c42b44ad9"}],"id":"f4192cba-2f5f-4ecf-9797-403efbf2202d","description":"<p>Use this service for all addresses associated with an individual. A tenant has the ability to create several additional address types. This service will return a result set of additional addresses i.e. all addresses associated with the individual including Home and NextOfKin.</p>\n<p>To determine descriptions for these additional address type, one can use the reference module. </p>\n<p>If a web service app has access to the reference module, and your administrator has whitelisted the reference type <code>ADDTYP</code> the app can query the reference module using the type <code>ADDTYP</code>. These additional <em>other</em> address types are best explained by the HR administrators of the CoreHR application.</p>\n","event":[{"listen":"prerequest","script":{"id":"2baa0a73-f3dd-4152-b76f-dc0a70d62b07","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b1e9b2ab-a271-4a0d-a961-bd91f3482d0d","type":"text/javascript","exec":[""]}}],"_postman_id":"f4192cba-2f5f-4ecf-9797-403efbf2202d"}],"id":"b762f636-c81b-4bb1-83c6-6bfd6d638105","description":"<p>The address module's objective is to determine individual's addresses. CoreHR provides a complete and detailed module for defining different types of addresses. Individual's may have several different addresses, typically referred to as <em>address types</em> e.g. home, business, next of kin, overseas etc. Not all personnel will have each of these address types. Assigning addresses to each person is a matter for each tenant. The CoreHR app also faciliates tenants adding various additional addresses.</p>\n<p>In general, use cases for these services include obtaining:</p>\n<ol>\n<li>an individual's home address</li>\n<li>an individual's next of kin address</li>\n<li>an individual's work address</li>\n<li>other address types associated with an individual</li>\n</ol>\n<p>This module has been split into different easy to use scenarios:</p>\n<ul>\n<li>Home Address</li>\n<li>Next of Kin</li>\n<li>Work</li>\n<li>All</li>\n</ul>\n<p>Home and Next of Kin addresses are simple and explicit. While <em>others</em> are slightly more completex. If the requirement is home address simply use the home address service, and for next of kin use next of kin service. For <em>Other</em> address types refer to the <em>all</em> address service below. Work address has been added as it's a typical use case, however, work address may or may not be in use.</p>\n<p><strong>Address Templating</strong></p>\n<p>This service does <strong>not</strong> implement address templating. Address type templating is a higher level display facility, providing options around the order of how to display an address e.g. display address line 3 before address line 1. Instead, the address is displayed in order 1 through 5.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<p>Each of the address web services use the following parameters:</p>\n<ul>\n<li>personnelNo</li>\n</ul>\n<p>Manadatory</p>\n<p>Type: AlphaNumeric </p>\n<p>Max Length : 12</p>\n","event":[{"listen":"prerequest","script":{"id":"ce9c2773-4d46-44b4-b091-44385ce9cdf1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a8ac244e-e24e-44cc-ae6b-4afda0d85d6a","type":"text/javascript","exec":[""]}}],"_postman_id":"b762f636-c81b-4bb1-83c6-6bfd6d638105"},{"name":"allowances","item":[{"name":"/person/allowances/paid/currentperiod/:personnelNo","id":"f0c23924-c70d-4add-a6b6-1f520d3b5bab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/allowances/paid/currentperiod/4956040","description":"<p>The specific end point will provide allowances that have been processed for the employee's most recent period that has been completed i.e. from the employees most recent payslip that has been completed for the employees pay group.</p>\n<p><strong>Parameters</strong></p>\n<p>requires personnelNumber, use the /filter/* endpoints to obtain personnelNumbers</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li><p>appointmenId </p>\n<p>A unique reference identifier for the appointment, this is a system generated identifier.</p>\n</li>\n<li><p>payCode</p>\n</li>\n</ul>\n<p>Represents the actual payCode used to process this item.</p>\n<ul>\n<li>payCodeDescription</li>\n</ul>\n<p>This attribute represents a free text description associated with the paycode.</p>\n<ul>\n<li>analysisCode</li>\n</ul>\n<p>Represents the associated anylsis code associated with the paycode. Analysis codes are used to represent a distinction or grouping of payCodes and are typically used for reporting and grouping purposes.</p>\n<ul>\n<li>analysisCodeDescription</li>\n</ul>\n<p>This attribute represents a free text description associated with the analysisCode.</p>\n<ul>\n<li>value</li>\n</ul>\n<p>This represents the amount on the employee's payslip, in most cases the allowances will be a positive amount, but there can be cases where this amount will be negative.</p>\n<ul>\n<li>payrollPeriod</li>\n</ul>\n<p>This attribute represents the payroll period that the allowance included. This should represent the payroll period associated with the employees pay group that is marked as 'Completed Update'.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","allowances","paid","currentperiod","4956040"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"edbc0f38-d3d0-4f4d-a059-80e773ead388","name":"success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/allowances/paid/currentperiod/4956040"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Nov 2018 15:37:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-00171402"},{"key":"ETag","value":"\"CzWVSoBAGGzx6TAhnBF94Nn1BjnGS+22nCwEWwo0RBzizYGZmXu8kL2iCZVsL8TsMa63EWIkj4bHVKIOfuE7XQ==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"items\": [\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"2001\",\n            \"payCodeDescription\": \"OVERTIME @ 1.00\",\n            \"analysisCode\": \"2000\",\n            \"analysisCodeDescription\": \"OVERTIME\",\n            \"value\": \"147.2\"\n        },\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"6017\",\n            \"payCodeDescription\": \"USC\",\n            \"analysisCode\": \"6000\",\n            \"analysisCodeDescription\": \"STATUTORY DEDUCTIONS\",\n            \"value\": \"-327.4\"\n        },\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"9500\",\n            \"payCodeDescription\": \"EMPLOYER PRSI\",\n            \"analysisCode\": \"9000\",\n            \"analysisCodeDescription\": \"EMPLOYER NI\",\n            \"value\": \"-.74\"\n        },\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"6500\",\n            \"payCodeDescription\": \"EMPLOYEE PRSI\",\n            \"analysisCode\": \"6000\",\n            \"analysisCodeDescription\": \"STATUTORY DEDUCTIONS\",\n            \"value\": \"0\"\n        },\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"6000\",\n            \"payCodeDescription\": \"PAYE\",\n            \"analysisCode\": \"6000\",\n            \"analysisCodeDescription\": \"STATUTORY DEDUCTIONS\",\n            \"value\": \"-1862.48\"\n        },\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"625\",\n            \"payCodeDescription\": \"ADVANCE MISC\",\n            \"analysisCode\": \"7000\",\n            \"analysisCodeDescription\": \"VOLUNTARY DEDUCTIONS\",\n            \"value\": \"-74.34\"\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 6,\n    \"hasMore\": false,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/allowances/paid/currentperiod/4956040\"\n        }\n    ]\n}"}],"_postman_id":"f0c23924-c70d-4add-a6b6-1f520d3b5bab"}],"id":"af8ec75b-2415-49ae-9b80-a7cc585b6f36","description":"<p>This module has only been made available from <strong>CoreHR 26.0.6</strong> and is not available in older versions.</p>\n<p>The allowance module deals with providing allowance information associated with an employee. At this time the module only deals with allowances that have been paid, and is not aware of future allowances.</p>\n","event":[{"listen":"prerequest","script":{"id":"a96caf6c-ea79-449d-a12d-456227d04c06","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9d0418f3-c47a-4720-b159-df3bd8d9fe6f","type":"text/javascript","exec":[""]}}],"_postman_id":"af8ec75b-2415-49ae-9b80-a7cc585b6f36"},{"name":"appointment","item":[{"name":"/person/appointment/:personnelNo","id":"1afa81ec-9ef4-4bf9-a758-5bae35fc26a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/appointment/5990404","description":"<p>This service returns an individuals appointment related information. An appointment has various different descriptions including Contract, Post, Job, Position etc. Individuals may have more than one appointment at any given moment, though typically an individual will hold one appointment at any one time.</p>\n<p><strong>Parameters</strong></p>\n<p>requires personnelNumber, use the /filter/* endpoints to obtain personnelNumbers</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li><p>appointmenId </p>\n<p>A unique reference identifier for the appointment, this is a system generated identifier.</p>\n</li>\n<li><p>appointmentStatus - following explains the details:</p>\n</li>\n</ul>\n<ul>\n<li><p><code>PL</code> (Planned) - When a new appointment is created it will have the status of PL. This is like a placeholder appointment. You can enter planned details like the planned contract dates. <strong>No person</strong> is linked to the appointment at this stage. As such for this service you should never see this status.</p>\n</li>\n<li><p><code>AU</code> (Authorised) - When the post administrator authorises a planned appointment, the appointment status changes to AU. This is a placeholder appointment that has been authorised. <strong>No person</strong> is linked to the appointment at this stage. As such for this service you should never see this status.</p>\n</li>\n<li><p><code>RE</code> (Recruitment in Progress) - If the recruitment module is in use, you can optionally link an authorised appointment to an open vacancy. The appointment status changes to RE. A person gets linked to the appointment via the recruitment module when they are offered and accept a vacancy offer.</p>\n</li>\n<li><p><code>AP</code> (Appointed) - The appointment status changes to AP when an employee new or existing is appointed to the appointment. Further contract details can be entered at this stage. It is usually indicative of a person accepting the contract but has not yet started it. The post can be configured that when you link an employee to the appointment that this stage is bypassed and the status goes straight to commenced. </p>\n</li>\n<li><p><code>CO</code> Commenced - The person has started on the appointment. A salary record is generated. For new starters they cannot be brought on to payroll until they are commenced. This should be the most common status encountered.</p>\n</li>\n<li><p><code>CF</code> Commenced Future - The person is commencing the appointment at a future date. The status reverts to CO when the start date of the appointment becomes effective.</p>\n</li>\n<li><p><code>EN</code> Ended - The appointment has been ended because the person has left the organisation or has started in a new appointment.</p>\n</li>\n</ul>\n<ul>\n<li>category</li>\n</ul>\n<p> Categorises appointments based on an organisations requirements. E.g. Categorising employees who are entitled to additional levels of annual leave. For associated descriptions use the Reference Module with the reference type <code>CATG</code>.</p>\n<ul>\n<li><p>subCategory</p>\n<p>Typically used to further break down the Category. For associated descriptions use the Reference Module with the reference type <code>SUBC</code>.</p>\n</li>\n<li><p>startDate</p>\n</li>\n</ul>\n<p> The appointment start date.</p>\n<ul>\n<li>endDate</li>\n</ul>\n<p> The appointment start date.</p>\n<ul>\n<li>lastAmendedDate</li>\n</ul>\n<p>(requires v27.0.3)</p>\n<p> This date indicated a changed has been made to the appointment.</p>\n<ul>\n<li>targetEndDate</li>\n</ul>\n<p> The appointment target end date.</p>\n<ul>\n<li>FTE</li>\n</ul>\n<p> Full Time Eqivalence of the appointment between 0 and 1 (inclusive).</p>\n<ul>\n<li><p>contractId</p>\n<p>provides ability to set a contract identifier and associate with the appiointment.</p>\n</li>\n<li><p>jobTitle</p>\n</li>\n</ul>\n<p> The title of the apponitment ad used to describe the name of the position.</p>\n<ul>\n<li>jobCategory</li>\n</ul>\n<p> This is an appointment level field used to categorise job titles into groups of similar job titles. For associated descriptions use the Reference Module with the reference type <code>JOBCAT</code>.</p>\n<ul>\n<li>postNumber</li>\n</ul>\n<p> the is the post profile number from which the appointmnet is based on. A post is essentially a blue print for the appointments.</p>\n<ul>\n<li>primaryFlag</li>\n</ul>\n<p> this attribute will simply indicate if the appointment is the \"Substantive\" appointment as of today, this is an employees primary appointment.</p>\n<ul>\n<li>project</li>\n</ul>\n<p> this attribute is populated when the appointment is associated with a project</p>\n<ul>\n<li>Hierarchy / Structure Related - explains where the appointment fits within an organisation, not all of these fields will be populated. The number of fields populated depend on the the configuration of the organisation structure. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</li>\n</ul>\n<ul>\n<li><p><code>structureCode</code> - ability to map back to the Organisation Hierarchy end point /organisation</p>\n</li>\n<li><p><code>company</code> - Used to indicate the company / organisation on the structure of where the person's appointment sits. This is usually the highest level of the organisation. For associated descriptions use the Reference Module with the reference type <code>ORGZ</code>.</p>\n</li>\n<li><p><code>managementUnit</code> - Used to indicate the management unit within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>MGTU</code>.</p>\n</li>\n<li><p><code>department</code> - Used to indicate the department within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DEPT</code>.</p>\n</li>\n<li><p><code>costCentre</code> - The cost centre associated with this appointment. For associated descriptions use the Reference Module with the reference type <code>COST</code>.</p>\n</li>\n<li><p><code>division</code> - Used to indicate the division within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DIV</code>.</p>\n</li>\n<li><p><code>location</code> - Used to indicate the location within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>LOC</code>.</p>\n</li>\n<li><p><code>workGroup</code> - Used to indicate the workGroup within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>WRKGRP</code>.</p>\n</li>\n<li><p><code>user1</code> .. <code>user5</code> - Additional customized fields, how these are mapped and defined refer to the web service /organisation, using the provided structure code.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","appointment","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"435b3d1c-2abb-440b-9d4a-d12a40623c12","name":"Appointments","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/appointment/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS","name":"Access-Control-Allow-Methods-Age","description":"Custom header"},{"key":"Access-Control-Max-Age","value":"600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 13 Sep 2018 16:53:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"6uEzXT1L1a7EIjGqPALAQgc9J/ltVCH+5VWSSPcILmIbcvZSnpH8IsU7NQnEpM2ryVKA3gvPMQcMIw2sgvZILA==-gzip\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"b0b00ddc-b960-4e37-b4b3-3d5446e9ff5e-0008a914","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"appointments\" : [\n{\"appointmentId\":\"SS0151-2004\",\"appointmentStatus\":\"CO\",\"employeeStatus\":\"UF\",\"jobDescription\":\"\",\"primaryFlag\":\"N\",\"category\":\"ST_P\",\"subCategory\":\"0006\",\"startDate\":\"20170901\",\"endDate\":\"\",\"lastAmendedDate\":\"20160102\",\"targetEndDate\":\"20200102\",\"FTE\":\"1\",\"contractId\":\"SS0151-2004\",\"jobTitle\":\"J00151\",\"jobCategory\":\"PT\",\"project\":\"\",\"postNumber\":\"SS0151\",\"reasonCode\":\"IHRS\",\"action\":\"\",\"hierarchy\" : {\"structureCode\":\"5\",\"company\":\"1\",\"managementUnit\":\"1024\",\"department\":\"9054\",\"costCentre\":\"OU73523\",\"division\":\"\",\"location\":\"4661\",\"workGroup\":\"H00055\",\"user1\":\"\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"9439\"}}\n,\n{\"appointmentId\":\"502630-2\",\"appointmentStatus\":\"AP\",\"employeeStatus\":\"UF\",\"jobDescription\":\"\",\"primaryFlag\":\"N\",\"category\":\"ST_P\",\"subCategory\":\"0006\",\"startDate\":\"20170717\",\"endDate\":\"\",\"lastAmendedDate\":\"20160102\",\"targetEndDate\":\"20200102\",\"FTE\":\"1\",\"contractId\":\"502630-2\",\"jobTitle\":\"J01018\",\"jobCategory\":\"PT\",\"project\":\"\",\"postNumber\":\"502630\",\"reasonCode\":\"ST_JT\",\"action\":\"\",\"hierarchy\" : {\"structureCode\":\"5050\",\"company\":\"5050\",\"managementUnit\":\"50543\",\"department\":\"SC10\",\"costCentre\":\"BM40031\",\"division\":\"5401\",\"location\":\"3065\",\"workGroup\":\"H00029\",\"user1\":\"SD01\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"\"}}\n,\n{\"appointmentId\":\"599014-25\",\"appointmentStatus\":\"CO\",\"employeeStatus\":\"UF\",\"jobDescription\":\"\",\"primaryFlag\":\"Y\",\"category\":\"ST_P\",\"subCategory\":\"0006\",\"startDate\":\"20170102\",\"endDate\":\"\",\"lastAmendedDate\":\"20160102\",\"targetEndDate\":\"20200102\",\"FTE\":\"1\",\"contractId\":\"599014-25\",\"jobTitle\":\"NC13\",\"jobCategory\":\"PT\",\"project\":\"\",\"postNumber\":\"599014\",\"reasonCode\":\"\",\"action\":\"\",\"hierarchy\" : {\"structureCode\":\"5990\",\"company\":\"5990\",\"managementUnit\":\"59941\",\"department\":\"NC01\",\"costCentre\":\"NC01\",\"division\":\"5991\",\"location\":\"5991\",\"workGroup\":\"NC02\",\"user1\":\"NC26\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"\"}}\n,\n{\"appointmentId\":\"SS0093-2093\",\"appointmentStatus\":\"EN\",\"employeeStatus\":\"UF\",\"jobDescription\":\"\",\"primaryFlag\":\"N\",\"category\":\"ST_P\",\"subCategory\":\"0006\",\"startDate\":\"20170101\",\"endDate\":\"20170714\",\"lastAmendedDate\":\"20160102\",\"targetEndDate\":\"20200102\",\"FTE\":\"1\",\"contractId\":\"SS0093-2093\",\"jobTitle\":\"J00093\",\"jobCategory\":\"PT\",\"project\":\"5\",\"postNumber\":\"SS0093\",\"reasonCode\":\"SR\",\"action\":\"AC\",\"hierarchy\" : {\"structureCode\":\"5\",\"company\":\"1\",\"managementUnit\":\"1023\",\"department\":\"9043\",\"costCentre\":\"MS71120\",\"division\":\"\",\"location\":\"3079\",\"workGroup\":\"H00044\",\"user1\":\"\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"9408\"}}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 4,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/appointment/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"1afa81ec-9ef4-4bf9-a758-5bae35fc26a3"}],"id":"7106f0f0-0bd6-4b59-8b33-052da49828a9","description":"<p>This service provides the ability to obtain an employees list of appointments, an employee can have more than one appointment. All appointments are returned, however each individual movement is <strong>not</strong> returned. The most recent detail associated with the appointment is returned. </p>\n<p>An appointment has various different descriptions including Contract, Post, Job, Position etc. Individuals may have more than one appointment at any given moment, though typically an individual will hold one appointment at any one time.</p>\n<p><strong>Example</strong></p>\n<p>On 1st Jan 2018, employee Marco is a software engineer and his appoointment has a cost centre 100.</p>\n<p>Appointment - 001</p>\n<p>Title - Software Engineer</p>\n<p>Cost Centre - 100</p>\n<p>All requests for Marcos appointment will return one appointmnet for Marco with a cost of <strong>100</strong>.</p>\n<p>On 10th July 2018, management decide to move all engineering to a new cost centre 200, this is called a movement i.e. some change of attribute associated with Marco's appointment. In this case the change relates to a cost centre.</p>\n<p>Appointment - 001</p>\n<p>Title - Software Engineer</p>\n<p>Cost Centre - 200</p>\n<p>All requests (from 10th July 2018) for Marcos appointment will return one appointment for Marco with a cost of <strong>200</strong>.</p>\n","event":[{"listen":"prerequest","script":{"id":"55a63e07-159b-4426-8102-5b829da55ec0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3f29a3ec-ba77-409f-91ff-62712a851950","type":"text/javascript","exec":[""]}}],"_postman_id":"7106f0f0-0bd6-4b59-8b33-052da49828a9"},{"name":"bank","item":[{"name":"/person/bank/:personnelNo","id":"ac8622dd-1c1a-4045-9e9f-ce4f711eb092","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/bank/5990404","description":"<p>Provides an employees bank account details both Salary and Expense. In addition the building society number is also available form this web service.</p>\n<p>NB - relates to tenants implementing HR, no special consideration has been provided to <em>Payroll Only Special tenants</em>.</p>\n<p>Tenant's implement different approaches to storing an individual's bank account detail. This service provides both traditional sort code / bank account code's and the newer BIC and IBAN. </p>\n<p>No conversion process takes place, instead the information held in CoreHR is displayed i.e. if the tenant has not provided BIC and IBAN for an individual, the expectation for this service is not to display same.</p>\n<ul>\n<li>personnelNo</li>\n</ul>\n<p>this is manadatory, at a minimum this parameter must be provided.</p>\n<p>Returns following information for both Salary and Expense:</p>\n<ul>\n<li>Sort Code</li>\n</ul>\n<p>An individual's traditional Bank Branch identification. This is left padded with 0's for values less than 6 characters. (requires v27.0.8 for the left padding).</p>\n<ul>\n<li>Bank Account Number</li>\n</ul>\n<p>An individual's traditional Bank Account Number. This is left padded with 0's for values less than 8 characters (requires v27.0.8 for the left padding).</p>\n<ul>\n<li>BIC</li>\n</ul>\n<p>An individual's Bank Identification code</p>\n<ul>\n<li>IBAN</li>\n</ul>\n<p>An individual's International Bank Account Number</p>\n<ul>\n<li>Building Society Reference</li>\n</ul>\n<p>An individual's building society reference number </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","bank","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"54f3bdb5-75cd-4dd9-a38b-6362379137f8","name":"Salary and Expense","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/bank/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 05 Apr 2018 14:24:56 GMT","name":"Date","description":""},{"key":"ETag","value":"\"kPah9YnLuQejW3/UQrmaws6hdxEb5O4JN3azU8xWPt3TOpcq+1RDvvJdvW8ILk19RiBm3x/Ypr/sHf/UhfyiiQ==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"d99bff8e-c042-4720-8fb9-2dea429dc7ce-0001db16","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"accounts\" : [\n{\"type\":\"salary\",\"bankSortCode\":\"902813\",\"bankAccountNumber\":\"12345678\",\"bic\":\"AIBKIE2DXXX\",\"iBan\":\"IE49AIBK93015612345678\"}\n,\n{\"type\":\"expense\",\"bankSortCode\":\"912314\",\"bankAccountNumber\":\"87235622\",\"bic\":\"AIBKIE2DXXX\",\"iBan\":\"IE49AIBK93015612345678\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/bank/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"ac8622dd-1c1a-4045-9e9f-ce4f711eb092"}],"id":"605a81a3-971d-4b3b-a268-4abc42efdb7c","description":"<p>A simply service to retrieve an individuals bank account details. </p>\n<p>An individual may have more than one bank account, e.g. one for Salary payments and another for Expense. These account details maybe the same or different. </p>\n<p>This service caters for both Salary and Expense bank accounts.</p>\n","event":[{"listen":"prerequest","script":{"id":"2916e4c0-b3de-4767-9816-ef62123fae04","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d110070d-c249-4cd9-9558-940ff2073595","type":"text/javascript","exec":[""]}}],"_postman_id":"605a81a3-971d-4b3b-a268-4abc42efdb7c"},{"name":"basicAttributes","item":[{"name":"/person/basicattributes/:personnelNo","id":"5bc343bb-ad4d-4fab-af0a-deae4007670a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/basicattributes/","description":"<p>This module returns some of the employee's most basic attributes, however, certain basic attributes are not include in this service for privacy reasons e.g. Social Security Number (SSN). To obtain SSN a separate service is available. The person module typically accepts only <code>personnelNo</code>. Use the filter module to obtain a result sets for various employees status e.g. recently joined, left , active etc.</p>\n<p>Most of these attributes are provied by the tenant, the descriptions may not exactly match with the value provided. For example: A field exists known as \"Home Telephone Number\" a tenant may use this for a Landline Number, a personal business number, a mobile number etc.  </p>\n<p>NB No confirmation takes place on the personnelNo, if an incorrect personnelNo is presented the service will simply respond with no data.</p>\n<p>Following attributes are returned:</p>\n<h2 id=\"general\">General</h2>\n<ul>\n<li>First Name</li>\n</ul>\n<p>Indicates a persons first name.</p>\n<ul>\n<li>Middle Name</li>\n</ul>\n<p>Indicates a persons middle name.</p>\n<ul>\n<li>Last Name</li>\n</ul>\n<p>Indicates a persons middle name.</p>\n<ul>\n<li>Previous Surname</li>\n</ul>\n<p>Indicates a persons previous surname.</p>\n<ul>\n<li>Known As</li>\n</ul>\n<p>Sometimes a person is known as a slightly different name that first, last or middle name. This field represents such sceanrios.</p>\n<ul>\n<li>Title</li>\n</ul>\n<p>Indicates the persons full title description.</p>\n<ul>\n<li>Active</li>\n</ul>\n<p>Simply indicates Y or N, answering the question at this point in time ( i.e. when the serice is called) \"Is Person Currently active?\". In cases where an individual has a leaving date on the same date the service is executed i.e. <em>today</em> the individual is considered active and will have a value of 'Y'.</p>\n<ul>\n<li>OnBoarding Completed</li>\n</ul>\n<p>This attribute will be flagged as 'Y' indicating individual has completed their onboarding process, otherwise this will be flagged as 'N'. </p>\n<ul>\n<li>Next of Kin Name</li>\n</ul>\n<p>The name in CoreHR provided for the individual's next of kin.</p>\n<ul>\n<li>Next of Kin Relationship</li>\n</ul>\n<p>The name in CoreHR provided for the individual's next of kin relationship.</p>\n<ul>\n<li>Next of Kin Contact Number</li>\n</ul>\n<p>The contact number associated with the next of kin.</p>\n<ul>\n<li>Home Telephone Number</li>\n</ul>\n<p>An individuals home telephone number, the area code is included in this field.</p>\n<ul>\n<li>salaryPayMethod</li>\n</ul>\n<p>Represents the method of payment for one's salary. This is a code e.g 'PP', to obtain the description use the reference module web service using a <code>type</code> of <code>PAYM</code>. Your system administrator will have to ensure this reference type is whitelisted.</p>\n<p><strong>NB</strong> To obtain Next of Kin Address use the address module.</p>\n<ul>\n<li>loginId</li>\n</ul>\n<p>An individuals login identifier for self service and mobile applications. NB for SAML enabled sites this attribute will display N/A (SAML enabled site).</p>\n<h2 id=\"dates\">Dates</h2>\n<p>All dates are represented as : YYYYMMDD</p>\n<ul>\n<li>Date of Birth</li>\n</ul>\n<p>An individuals date of birth formated</p>\n<ul>\n<li>Termination Date</li>\n</ul>\n<p>Indicates an individuals most recent date for leaving. In cases where a person has left and rejoined and is flag to leave again this date will alsways be the most recent date for leaving. This may not be populated, this date can be in the futrue.</p>\n<ul>\n<li>Current start Date</li>\n</ul>\n<p>An individuals most recent date started. This will cater for sceanrios where an individual has left and rejoined. It will always represent the current start date.</p>\n<ul>\n<li>Original Start Date</li>\n</ul>\n<p>An individuals first time starting with an organisation. This can cater for scnearioes where an employee has left and rejoined. This date never changes, if an individual is currently active and has never left, this is the same date as Current Start Date. If this date is differnt to current start date, this typically means an individual has rejoined.</p>\n<ul>\n<li>Continuous Service Date</li>\n</ul>\n<p>This date is used for calculating an individual length of service. Within the CorEHR engine this can be a complex process. This field represents the correct continuous service date, there should be no need to attempt to derive this date from the various other dates supplied.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","basicattributes",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3e2e5aaa-2dc7-48e5-ae05-fa0bdef6872f","name":"Mandatory Field Missing","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/basicattributes/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 22 Jun 2018 11:05:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"Xv9lRXYEJ7eVD2nC2gIUqerGRIFOD81+JnHtfOxPQgWOYt9i+LRFxXCLUSr7Xr8sssp6vyRHeKI0cUBgSxjMyg==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001439db","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"This field is mandatory.\",\n                    \"code\": \"9001\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"697f6b09-5087-4837-985c-5e60b863215c","name":"Working Example","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/basicattributes/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 26 Jun 2018 16:16:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"QozGpjQ/pokQfFuXCrLby9Kfov86tifSFSwitSSyqwRrHSB0VIhvBagWvIthkxz1i96lihX/dAAhFAsj+KzgJQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-000062cb","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"firstName\":\"Marco\",\"middleName\":\"Rufus\",\"lastName\":\"Donnini\",\"previousSurname\":\"Radinski\",\"knownAs\":\"Marco\",\"title\":\"Professor\",\"active\":\"Y\",\"onboardingCompleted\":\"N\",\"dateOfBirth\":\"19700101\",\"currentStartDate\":\"20180315\",\"terminationDate\":\"\",\"originalStartDate\":\"20170102\",\"continuousServiceDate\":\"20180315\",\"nextOfKinName\":\"Rufus Stravous\",\"nextOfKinContactNumber\":\"+44 765892350\",\"nextOfKinRelationship\":\"Partner\",\"salaryPayMethod\":\"PP\",\"homeTelehoneNumber\":\"4401892350\",\"loginId\":\"N/A (SAML enabled site)\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/basicattributes/5990404\"\n      }\n    ]\n}\n"},{"id":"960ac313-caa4-49c7-9922-17f271e142c2","name":"Validation Failed Wrong Field Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/basicattributes/1234567890123"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 22 Jun 2018 11:07:28 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"T2L98k5uY4oOIYGERPhm/fRFFPlBFj5IYfwnRplcyTaCuRCN5aZXRLqBxQjdHdbnstHQbumRWP7agQ3j8kc0FA==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-00143c86","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"The maximum length of this field is 12\",\n                    \"code\": \"9011\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"a5b37dfb-ece2-43bb-a1ba-6e63a614bcfb","name":"Validation Failed AlphaNumeric ","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/basicattributes/123!!"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 22 Jun 2018 11:06:40 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"RmAmWESpjPx1HQcC4yM3LakCm1+pazrdxEpor92H2/Bbgfn5+PkfVrR1SNs1fnfVhP7f+MscIk1F07yw1loGjw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-00143b6d","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Alphanumeric characters only.\",\n                    \"code\": \"9002\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"}],"_postman_id":"5bc343bb-ad4d-4fab-af0a-deae4007670a"}],"id":"d1c390ac-9090-4c69-94c7-b32db3027283","description":"<p>This section deals with an individuals most basic attributes e.g. name, title, date of birth etc. As CoreHR is a HR system, every field within the app could be argued to be included. Our objective is to provide services for use cases and not expose all fields in one monolithic web service. We also have to consider privacy and security e.g. not every third party service app requires Social Security Number or Bank Account Details etc. Hence, such fields are not included in the basicAttributes service, instead they are available via specific services.</p>\n<p>You might ask <em>where are email, mobile numbers etc and why are they not provided here?</em> </p>\n<p>Instead they are provided via the <code>Contact</code> module (<em>such detail is highly configurable</em>)</p>\n<p>Following attributes are provided as part of this basicAttribute module:</p>\n<h2 id=\"general\">General</h2>\n<ul>\n<li>First Name</li>\n</ul>\n<p>Indicates an individuals first name.</p>\n<ul>\n<li>Middle Name</li>\n</ul>\n<p>Indicates an individuals middle name.</p>\n<ul>\n<li>Last Name</li>\n</ul>\n<p>Indicates an individuals middle name.</p>\n<ul>\n<li>Known As</li>\n</ul>\n<p>Sometimes a person is known as a slightly different name thatn their first, last or middle name. This field represents such scenarios.</p>\n<ul>\n<li>Title</li>\n</ul>\n<p>Indicates an individuals full title description.</p>\n<ul>\n<li>Active</li>\n</ul>\n<p>Simply indicates Y or N, answering the question at this point in time ( i.e. when the serice is called) <em>Is Person Currently active?</em></p>\n<ul>\n<li>Onabording Completed</li>\n</ul>\n<p>Simply indicates Y or N, representing if the individual has completed their onboarding.  </p>\n<ul>\n<li>Next Of Kin</li>\n</ul>\n<p>Information regarding the individuals next of kin.</p>\n<h2 id=\"dates\">Dates</h2>\n<p>All dates are represented as : YYYYMMDD</p>\n<ul>\n<li>Date of Birth</li>\n</ul>\n<p>An individuals date of birth.</p>\n<ul>\n<li>Termination Date</li>\n</ul>\n<p>Indicates an individuals most recent date for leaving. In cases where a person has left, and rejoined, and is flagged to leave again, this date will always represent the most recent date for leaving. This date field may not be populated, this date can be in the futrue.</p>\n<ul>\n<li>Current start Date</li>\n</ul>\n<p>An individuals most recent date started. This will cater for scenarios where an individual has left and rejoined. It will always represent the current start date.</p>\n<ul>\n<li>Original Start Date</li>\n</ul>\n<p>Represents an individuals first date, when they started <em>Day Zero</em> with an organisation. This can cater for scenarios where an employee has left and rejoined. This date never changes, if an individual is currently active and has never left, this is the same date as Current Start Date. If this date is different to current start date, typically suggests an individual has rejoined.</p>\n<ul>\n<li>Continuous Service Date</li>\n</ul>\n<p>This date is used for calculating an individual length of service. Within the CoreHR engine this can be a complex process. This field represents the correct continuous service date, there should be no need to attempt to derive this date from the various other dates supplied.</p>\n","event":[{"listen":"prerequest","script":{"id":"768fc846-3703-4af3-a677-2c9498eb309c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6b1d93a0-7421-460c-9bfb-c6c41c00c48d","type":"text/javascript","exec":[""]}}],"_postman_id":"d1c390ac-9090-4c69-94c7-b32db3027283"},{"name":"costAllocation","item":[{"name":"/person/costallocation/:personnelNo","id":"3e3e1397-d5d3-4279-b924-333ae8bdfa4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/costallocation/5990404","description":"<p>This service provides the ability to obtain an employees cost allocations, all cost allocations are returned both current and historic (dates are provided to distinguish open / closed allocations). Generally this service not return 100's of cost allocations, and therefore no special filters are created. </p>\n<p>Cost Alloactions can be defined at the employee or appointment level.This service is defined at the employee level, but will return appointment ID's where appropriate.</p>\n<p><strong>Parameters</strong></p>\n<p>requires personnelNumber, use the /filter/* endpoints to obtain personnelNumbers</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li>costCentre</li>\n</ul>\n<p>the cost centre, this code can be mapped to the reference module, using <code>COST</code>. This attribute should always be populated.</p>\n<ul>\n<li>percent</li>\n</ul>\n<p>the percentage applied to this cost allocation. This attribute should always be populated.</p>\n<ul>\n<li>location</li>\n</ul>\n<p>the location applied to this cost allocation, this code can be mapped to the reference module, using <code>LOC</code></p>\n<ul>\n<li>project</li>\n</ul>\n<p>the project applied to this cost allocation, this code can be mapped to the reference module, using <code>PROJ</code></p>\n<ul>\n<li>expense</li>\n</ul>\n<p>the expense applied to this cost allocation, this code can be mapped to the reference module, using <code>EXPS</code></p>\n<ul>\n<li>allocationId</li>\n</ul>\n<p>unique identifier for a cost allocation. Provides an ability to link directly back to the cost allocation. This attribute should always be populated.</p>\n<p>  Example:</p>\n<p>  An employees salary is calculated and associated with three different cost centres, and query where the value at cost centre   X comes from, the allocation ID (if present) can link back to the exact cost allocation that triggered it, e.g. 25% of costs to cost centre X.</p>\n<ul>\n<li>appointmentId</li>\n</ul>\n<p> The appointment associated with this cost allocation</p>\n<ul>\n<li>startDate</li>\n</ul>\n<p>the date this cost allocation comes into affect, format YYYYMMDD</p>\n<ul>\n<li>endDate</li>\n</ul>\n<p>the date this cost allocation is no longer in effect, format YYYYMMDD</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","costallocation","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"010016cd-6ebc-48e3-b108-2cfafaaf56c6","name":"Success Cost Allocations","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/costallocation/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 02 May 2018 11:00:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"6XCcIUTnTS/FuB7jjB/DDFRD/fz8jTWUTGZDWvK6rZuE8/isin3lnJogmwcCAHD4IuCST8s+6cRPWCA2FDMbCw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"d99bff8e-c042-4720-8fb9-2dea429dc7ce-003c1ddc","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"attributes\" : [\n{\"costCentre\":\"BM40008\",\"startDate\":\"20170715\",\"endDate\":\"20170831\",\"percent\":\"100\",\"location\":\"\",\"allocationId\":2017071974748241,\"appointmentId\":\"502629-3\",\"expense\":\"40290\",\"project\":\"7\"}\n,\n{\"costCentre\":\"BM40008\",\"startDate\":\"20170711\",\"endDate\":\"20170714\",\"percent\":\"100\",\"location\":\"\",\"allocationId\":2017071974745300,\"appointmentId\":\"502629-1\",\"expense\":\"40290\",\"project\":\"7\"}\n,\n{\"costCentre\":\"BM40014\",\"startDate\":\"20170704\",\"endDate\":\"20170710\",\"percent\":\"50\",\"location\":\"\",\"allocationId\":2017071974745296,\"appointmentId\":\"502629-1\",\"expense\":\"40560\",\"project\":\"5\"}\n,\n{\"costCentre\":\"BM00000\",\"startDate\":\"20170704\",\"endDate\":\"20170710\",\"percent\":\"50\",\"location\":\"1\",\"allocationId\":2017071974745298,\"appointmentId\":\"502629-1\",\"expense\":\"40290\",\"project\":\"7\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 4,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/costallocation/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"3e3e1397-d5d3-4279-b924-333ae8bdfa4f"}],"id":"4b46a5fa-c842-451d-bf71-557a6243f24b","description":"<p>This service provides the ability to obtain an employees cost allocations, all cost allocations are returned both current and historic (dates are provided to distinguish open / closed allocations). Generally this service not return 100's of cost allocations, and therefore no special filters are created. </p>\n<p>Cost Alloactions can be defined at the employee or appointment level.This service is defined at the employee level, but will return appointment ID's where appropriate.</p>\n","event":[{"listen":"prerequest","script":{"id":"e955a6b8-45e0-4a0b-8116-18664b7cad8c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3017f5a8-333f-43cd-b0c8-60ed611ca8bb","type":"text/javascript","exec":[""]}}],"_postman_id":"4b46a5fa-c842-451d-bf71-557a6243f24b"},{"name":"genderIdentity","item":[{"name":"/person/genderidentity/:personnelNo","id":"b22f91e3-d9e7-4605-9c74-bf574d1a75bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/genderidentity/5990404","description":"<p>Provides an individuals legal sex and gender identification detail. </p>\n<ul>\n<li>personnelNo</li>\n</ul>\n<p>this is manadatory, at a minimum this parameter must be provided.</p>\n<p>Returns following attributes:</p>\n<ul>\n<li><p>Legal Sex</p>\n</li>\n<li><p>Gender Identity</p>\n</li>\n</ul>\n<p>This is a gender identification code, for associated descriptions use the Reference Module with the reference type <code>GNDRID</code>.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","genderidentity","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"459c112a-325d-46fa-8cab-80e6dedfcf94","name":"Success Gender Identification","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/genderidentity/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 05 Apr 2018 16:34:48 GMT","name":"Date","description":""},{"key":"ETag","value":"\"V20dpEGbShAmexMXpHDLO2Wsz4XNGFYA3rmIn8tc+dkrLG1ZvUMnMenBkRzynWnOxsex8AhDqrvLl+g1IlS8vg==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"d99bff8e-c042-4720-8fb9-2dea429dc7ce-0002537e","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"genderIdentity\" : [\n{\"legalSex\":\"M\",\"genderIdentity\":\"ANDR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/genderidentity/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"b22f91e3-d9e7-4605-9c74-bf574d1a75bd"}],"id":"0b2d28c4-47d1-4c5a-9ac6-0d995dc5be04","description":"<p>This service provides information relating to an individual's gender identification.</p>\n","_postman_id":"0b2d28c4-47d1-4c5a-9ac6-0d995dc5be04"},{"name":"maritalstatus","item":[{"name":"/person/maritalstatus/:personnelNo","id":"32079e8d-bfb9-4494-90bc-47521b19139d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}]},"isInherited":false},"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/maritalstatus/000004","description":"<p>Provides an individuals Marital Status information.</p>\n<ul>\n<li>Marital Status Code</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","maritalstatus","000004"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ddf34047-1357-4f74-afd7-902e95861cae","name":"MaritalStatus","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/maritalstatus/7202000006"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 20 Mar 2018 12:22:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"QWb+46LohvrS7+AouGLdijCxrGl+3X3XqEryvEgVUAlwh1p2ucoj2InMoYM0rnREohHy9bq6w+aQ5oAQSUGJ7Q==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"cb89685b-0a33-4e88-9829-ed0bf23cf3fc-0005bfb6","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"maritalstatus\": [\n    {\n      \"maritalstatus\": \"S\"\n    }\n  ],\n  \"limit\": 100,\n  \"offsetby\": 0,\n  \"count\": 1,\n  \"hasMore\": false,\n  \"links\": [\n    {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/pmipdev/corehr/v1/person/maritalstatus/7202000006\"\n    }\n  ]\n}\n"}],"_postman_id":"32079e8d-bfb9-4494-90bc-47521b19139d"}],"id":"4c713f61-3368-4284-97f2-e138d79d5366","description":"<p>Provides an individuals martial status information.</p>\n<ul>\n<li>Marital Status Code</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"f64455a3-16de-4706-a361-bdea929117ae","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a2f67c26-59be-47e7-a654-8d93da6a367a","type":"text/javascript","exec":[""]}}],"_postman_id":"4c713f61-3368-4284-97f2-e138d79d5366"},{"name":"nationality","item":[{"name":"/person/nationality/:personnelNo","id":"d045569e-9199-4b1e-a2a4-8b425e375224","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}]},"isInherited":false},"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/nationality/000004","description":"<p>Provides an individuals nationality information.</p>\n<ul>\n<li>Nationality Code</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","nationality","000004"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3783d4a9-ab23-4924-b768-6d82f0743257","name":"Nationality","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/nationality/7202000006"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 20 Mar 2018 12:22:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"QWb+46LohvrS7+AouGLdijCxrGl+3X3XqEryvEgVUAlwh1p2ucoj2InMoYM0rnREohHy9bq6w+aQ5oAQSUGJ7Q==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"cb89685b-0a33-4e88-9829-ed0bf23cf3fc-0005bfb6","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"nationality\": [\n    {\n      \"nationality\": \"IE\"\n    }\n  ],\n  \"limit\": 100,\n  \"offsetby\": 0,\n  \"count\": 1,\n  \"hasMore\": false,\n  \"links\": [\n    {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/pmipdev/corehr/v1/person/nationality/7202000006\"\n    }\n  ]\n}"}],"_postman_id":"d045569e-9199-4b1e-a2a4-8b425e375224"}],"id":"a06b18ff-8411-426f-8f8c-0f6a226b216f","description":"<p>Provides an individuals nationality information.</p>\n<ul>\n<li>Nationality Code</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"365cf161-3738-4f94-aa25-66f78a31e937","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f601941c-8305-467f-9997-9c4d8358f170","type":"text/javascript","exec":[""]}}],"_postman_id":"a06b18ff-8411-426f-8f8c-0f6a226b216f"},{"name":"pension","item":[{"name":"/person/pension/:personnelNo","id":"101bc03f-6c9b-4049-a65b-cd424fb6fb80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/pension/5990404","description":"<p>This is a very simple web service returning basic information for an individuals pension. All entries related to an employee pension will be returned including active and ended.</p>\n<p><strong>Parameters</strong></p>\n<ul>\n<li>personnelNo</li>\n</ul>\n<p>Manadatory</p>\n<p>Type: AlphaNumeric </p>\n<p>Max Length : 12</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of all pension schemes associated with the individual is returned, the most recently joined pension scheme is returned first.</p>\n<ul>\n<li>schemeCode</li>\n</ul>\n<p>A unique code associated with the pension scheme.</p>\n<ul>\n<li>appointmentID</li>\n</ul>\n<p>this attribute is populated if the individual's pension scheme is associated with a particular appointment. </p>\n<ul>\n<li>dateEnd</li>\n</ul>\n<p>indicates when the pension scheme ended for the individual, returned in format YYYYMMDD.</p>\n<ul>\n<li>dateJoined</li>\n</ul>\n<p>indicates when the employee joined the pension scheme, returned in format YYYYMMDD</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","pension","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9e4644fb-957f-492d-ac1b-788f8b9e5073","name":"Pension Information","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/pension/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 28 Jun 2018 14:23:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"W5TPVaB+Aiz7z+FMBASz6aWxLjN19XWifM8GIKX9g1eWI9T7Qvo5y/XuEu4PwXTwb3XEpiy20o/FgtMMdrJRdQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-0006b88a","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"schemeCode\":16,\"dateJoined\":\"20170601\",\"dateEnd\":\"\",\"appointmentID\":\"DP0007-2077\"}\n,\n{\"schemeCode\":15,\"dateJoined\":\"20161022\",\"dateEnd\":\"20170901\",\"appointmentID\":\"SD88712-1\"}\n,\n{\"schemeCode\":16,\"dateJoined\":\"20151019\",\"dateEnd\":\"\",\"appointmentID\":\"FD4005-1\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 3,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/pension/5990404\"\n      }\n    ]\n}\n"},{"id":"a5f9c40d-3e30-4957-bb49-06b6146c873d","name":"Mandatory Data Missing","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/pension/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 28 Jun 2018 16:05:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"IIhsxH2Ji400+QeroRmFt6gc2g7b1QHixhZywWjc6NIWGfPAw4CjTnzhC2v+lA38covxOStmFbtsMyf36pPvsw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-00073eeb","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"This field is mandatory.\",\n                    \"code\": \"9001\",\n                    \"jsonKey\": \"personnelNo\",\n                    \"isWarning\": false\n}\n]}\n"}],"_postman_id":"101bc03f-6c9b-4049-a65b-cd424fb6fb80"}],"id":"fe369fc1-57f3-41d9-a4bc-f74ef69830a2","description":"<p>This web service returns data related to an individual's pension.</p>\n","event":[{"listen":"prerequest","script":{"id":"70839c2a-7e05-4b47-9555-0cdcbf25cf26","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9585ef9e-6604-44bc-be53-f36ca1100999","type":"text/javascript","exec":[""]}}],"_postman_id":"fe369fc1-57f3-41d9-a4bc-f74ef69830a2"},{"name":"probation","item":[{"name":"/person/probation/:personnelNo","id":"5828fb79-c7fa-453d-adaa-44c5e8ac0060","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/probation/:personnelNo","description":"<p>The following attributes are associated with an individual's probabtion detail. Not all attributes will be populated.</p>\n<p>All dates presented in 'YYYYMMDD' format.</p>\n<ul>\n<li>Date Complete</li>\n</ul>\n<p>The probabtion completion date is the date which the individuals  probstion is completed.</p>\n<ul>\n<li>Date Expires</li>\n</ul>\n<p>The probation expiry date is the date which the individual's probation is due to expire.</p>\n<ul>\n<li>Date Review One</li>\n</ul>\n<p>The probation review date is the first review date for the individuals probation.</p>\n<ul>\n<li>Date Review Two</li>\n</ul>\n<p>This probation review date is the second review date for the individual's probation. </p>\n<ul>\n<li>Date Extension</li>\n</ul>\n<p>This date represents the individual's probation extension where applicable.</p>\n<ul>\n<li>Extension Reason</li>\n</ul>\n<p>The probation extension reason represents the reason for extending the persons probation. This is a reference related attribute, the associated desription is available from the reference module under the reference type <code>PEXRSN</code>. Note, in order to obtain the description your system administrator will be required to whitelist the reference type <code>PEXRSN</code> and granted the app approrpiate privileges.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","probation",":personnelNo"],"host":["{{url}}"],"query":[],"variable":[{"id":"59bfeaef-f378-47cf-b94f-d5046cd80a5e","type":"any","value":"","key":"personnelNo"}]}},"response":[{"id":"72f5100c-4418-4b6f-86f6-c5133c1f94f3","name":"Mandatory Fields missing","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/probation/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 20 Mar 2018 15:15:48 GMT","name":"Date","description":""},{"key":"ETag","value":"\"3F7/81J6deTDSBftnwxU8UmVgbSZ7BSqwntempYXk1fI6MFsiZmdCZzjpIKEAqYZdbMr1ZBKUzs+YvjwwKlhjQ==\"","name":"ETag","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"cb89685b-0a33-4e88-9829-ed0bf23cf3fc-000651f3","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing (PersonnelNo is required) \" }}\n"}],"_postman_id":"5828fb79-c7fa-453d-adaa-44c5e8ac0060"}],"id":"736a037e-44d8-4a33-b93a-4e51faf32f26","description":"<p>This module provides an individual's probation detail.</p>\n","event":[{"listen":"prerequest","script":{"id":"ab353ade-0209-4af2-a4e6-192224b2ec49","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c945bd6c-26d9-4850-9216-8662ef365934","type":"text/javascript","exec":[""]}}],"_postman_id":"736a037e-44d8-4a33-b93a-4e51faf32f26"},{"name":"reportsTo","item":[{"name":"person/reportsto/:personnelNumber/:appointmentid?","id":"88b24c9b-2562-4049-8e8e-a4a50536b39d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/5990404/","description":"<p><strong>Parameters</strong></p>\n<ul>\n<li>personnelNumber</li>\n</ul>\n<p>This attribute is the personnelNumber of the individual to find their reportsTo / manager.</p>\n<p>Manadatory</p>\n<p>Type : AlphaNumeric </p>\n<p>Max Length : 12</p>\n<ul>\n<li>appointmentId</li>\n</ul>\n<p>This attribute can be any of the individuals appointmentId's. An individual is required to have at least one appointmentID and is often referred to as substantive / primary appointmentId.</p>\n<p>Optional</p>\n<p>Type : AlphaNumeric </p>\n<p>(this field is typically XXXXX-XX, even though it is flagged as alpha Numberic, the '-' (dash) is excluded from a validation perspective i.e. when validation / sanitisation is performed the dash is excluded)</p>\n<p>Max Length : 16</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<ul>\n<li>reportsToPersonnelNumber</li>\n</ul>\n<p>This attribute represents the individual's 'Report To Personnel Number', typically their manager / line manager / Supervisor etc. You can use this attribute as the personnelNumber for any other web service requesting personnelNumber. As such it is possible to obtain further information for the 'ReportsTo'. </p>\n<ul>\n<li>reportsToName</li>\n</ul>\n<p>This attribute represents the individual's 'Report To Name' i.e. typically the name of their manager / line manager / Supervisor etc.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","reportsto","5990404",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0542c831-e4a6-4276-bcff-9ad8fafe9208","name":"Invalid AppointmentID Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/5990404/12345678901234567"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 10:39:34 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"2hERA1Oq6h48UWWRIfHmdaguVn33swa/4feFw1P/coF2t3J4ZczHKP+Kd64JweIz++0TdVUF4Bh+ni899eavNw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-00140659","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"The maximum length of this field is 16\",\n                    \"code\": \"9008\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"212f25af-dbd3-4615-889e-534b81613a84","name":"PersonnelNumber and AppointmentID","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/5990404/599014-25"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 10:21:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"31sy6J0QsiwFzAdrVi7qAyzs+hvz6E2rE/5kyizpDEhT65JmvEMorDrEovo3NLM/eYUCQmpmBAz06mwdCt2Yew==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-0013edca","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"reportsToPersonnelNumber\":\"5990181\",\"reportsToName\":\"Sasha Digweed\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/reportsto/5990404/599014-25\"\n      }\n    ]\n}\n"},{"id":"26092c85-73d7-4d62-99cb-845ead18a7d4","name":"PersonnelNumber Only","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/5990404/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 09:43:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"pZVLqJiJtJRnx3Q2SNnEn7mzHsEJE7h3AYFTFFddSSAABwOp+IfG7nt/RNZwkio5FpXtWJPuYQ8Vk8/lKfjWkw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-0013bc9c","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"reportsToPersonnelNumber\":\"5990181\",\"reportsToName\":\"Sasha Digweed\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/reportsto/5990404/\"\n      }\n    ]\n}\n"},{"id":"6c9b2ff5-090c-4d4d-aeb2-9472ffe79b88","name":"Invalid PersonnelNumber Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/1234567890123/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 10:37:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"U1TQYcXzLmuMBybM9sxQnH+pnJ45yfK9QyLZfZerGvSE8XpFYujUbMeaYutfoYGti5eB8XXY1L1Zsc/zuvTYJQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-00140369","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"The maximum length of this field is 12\",\n                    \"code\": \"9008\",\n                    \"jsonKey\": \"personnelNo\",\n                    \"isWarning\": false\n}\n]}\n"},{"id":"726440ae-78e0-42cd-b7c2-fc8fe3973878","name":"Invalid PersonnelNumber Type","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/12345678[]/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 10:36:25 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"l61gq8U/3Ddnb8zX5veO7cQVtiR39qcu0L0AUV3aYxGLsn2WfS2frH7+m+AsDD+dAiRYTAdNcYd29zRxkhBYKA==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-00140227","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Alphanumeric characters only.\",\n                    \"code\": \"9002\",\n                    \"jsonKey\": \"personnelNo\",\n                    \"isWarning\": false\n}\n]}\n"},{"id":"af2d8f57-c765-40ab-9b3c-977663f40477","name":"Invalid AppointmentID Type","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/5990404/123!"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 10:40:29 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"RmAmWESpjPx1HQcC4yM3LakCm1+pazrdxEpor92H2/Bbgfn5+PkfVrR1SNs1fnfVhP7f+MscIk1F07yw1loGjw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-0014079d","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Alphanumeric characters only.\",\n                    \"code\": \"9002\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"}],"_postman_id":"88b24c9b-2562-4049-8e8e-a4a50536b39d"}],"id":"f3903f09-8ee9-4c05-a6a9-135362db37ef","description":"<p>This web service returns an individual's Reporting to manager / supervisor etc. It is a very simple web service, simply provide the personnel number and the individual's 'ReportTo' is returned. By only providing the personnelNumber, the individuals substantive (primary) appointment is used. </p>\n<p>Optionally provide an appointment ID, this will then indicate to the service to return an individuals 'ReportTo' for the person and the specific appointment provided.</p>\n<p>With respect to the 'ReportsTo' effective date, in all cases this web service uses the current date i.e. the date the web service is called.</p>\n","_postman_id":"f3903f09-8ee9-4c05-a6a9-135362db37ef"},{"name":"salary","item":[{"name":"/person/salary/:personnelNo/:date?","id":"538dd291-0072-4ee8-9256-fb76cfa38a7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/","description":"<p>Provides an employees salary, has the ability to get an employees full salary history along with Salary for a specific date. It is therefore possible to determine current, full history or salary for a specfic date across all of an employees appointments.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li>personnelNo</li>\n</ul>\n<p>Manadatory</p>\n<p>Type: AlphaNumeric </p>\n<p>Max Length : 12</p>\n<ul>\n<li>date</li>\n</ul>\n<p>Optional</p>\n<p>Format : YYYYMMDD</p>\n<p>When no date is provided, the service assumes current active salary details. When populated \n(note the date formatted must be YYYYMMDD) this will provide employees salary for the specfic date. While providing <code>0</code> indicates to the service to return a result set of employees entire salary history. </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","salary","5990404",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0edb5125-3abe-47a6-8ba8-d6113bd54718","name":"Invalid Date","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/1"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 16:22:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"sKp2ti/R6sLLoutzkCNGLcmb5Tgu8M4GSKUF7A5kfUdkL+yEkKA/2pZtdOyezXWgsUt5nVH3zz322P2KeYn4IQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001a7b8e","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Date must be in the format of YYYYMMDD and exactly 8 digits in length.\",\n                    \"code\": \"9008\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"53fe184a-b6eb-429d-b7a8-b60e86051576","name":"Current Active Salary","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 16:20:34 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"e7BB/yedq9rerTQdSLeQ546D+ECPnESt8lJBTo3F8kTFzbMW1WN+7Dr008eqa0kPKsX4VZ/+SPhBMnTlkegoQg==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001a7975","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"annual\":\"30000\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"0\",\"dateActive\":\"20170102\",\"dateExpire\":\"\",\"multiplier\":\"1\",\"annualised\":\"30000\",\"actualPay\":\"30000\",\"actualAnnualisedPay\":\"30000\",\"grade\":\"5990\",\"point\":\"1\",\"appointmentID\":\"599014-25\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20170108\",\"dateExpire\":\"\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"TS0011-18339\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/\"\n      }\n    ]\n}\n"},{"id":"54a51462-c658-4b7e-87e0-5729edd39b8d","name":"Invalid Date - Month","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/20011301"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 17:38:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"sKp2ti/R6sLLoutzkCNGLcmb5Tgu8M4GSKUF7A5kfUdkL+yEkKA/2pZtdOyezXWgsUt5nVH3zz322P2KeYn4IQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001ac8d1","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Date must be in the format of YYYYMMDD and exactly 8 digits in length.\",\n                    \"code\": \"9008\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"ada57b21-4a36-4495-beef-7c9a07d528f4","name":"All Salary History","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/0"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 16:19:22 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"aaipex3HQSzjyVZfbQvaUtOFP/KkzJkt8NzYnXaX1NaFg1kSRoPNLrZbzCfvAtiG74NPxNGZvD4HRaIDZ2lCIg==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001a77c5","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"annual\":\"30000\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"0\",\"dateActive\":\"20170102\",\"dateExpire\":\"\",\"multiplier\":\"1\",\"annualised\":\"30000\",\"actualPay\":\"30000\",\"actualAnnualisedPay\":\"30000\",\"grade\":\"5990\",\"point\":\"1\",\"appointmentID\":\"599014-25\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20130718\",\"dateExpire\":\"20160401\",\"multiplier\":\"1\",\"annualised\":\"14448.25\",\"actualPay\":\"14448.25\",\"actualAnnualisedPay\":\"14448.25\",\"grade\":\"KM\",\"point\":\"19\",\"appointmentID\":\"JXXXXX-4347\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161211\",\"dateExpire\":\"20170107\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"OU0011-12458\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20160402\",\"dateExpire\":\"20160915\",\"multiplier\":\".25641\",\"annualised\":\"14448.25\",\"actualPay\":\"3704.67578\",\"actualAnnualisedPay\":\"3704.67578\",\"grade\":\"KM\",\"point\":\"19\",\"appointmentID\":\"OU0011-2694\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20160916\",\"dateExpire\":\"20160922\",\"multiplier\":\".25641\",\"annualised\":\"14448.25\",\"actualPay\":\"3704.67578\",\"actualAnnualisedPay\":\"3704.67578\",\"grade\":\"KM\",\"point\":\"19\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15262.24\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.5\",\"dateActive\":\"20160923\",\"dateExpire\":\"20160924\",\"multiplier\":\".25641\",\"annualised\":\"15262.24\",\"actualPay\":\"3913.39096\",\"actualAnnualisedPay\":\"3913.39096\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"\",\"daily\":\"\",\"hourly\":\"0\",\"dateActive\":\"20160925\",\"dateExpire\":\"20160925\",\"multiplier\":\".25641\",\"annualised\":\"15770.98\",\"actualPay\":\"4043.83698\",\"actualAnnualisedPay\":\"4043.83698\",\"grade\":\"99\",\"point\":\"9999\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"\",\"daily\":\"\",\"hourly\":\"0\",\"dateActive\":\"20160926\",\"dateExpire\":\"20160930\",\"multiplier\":\".410256\",\"annualised\":\"15770.98\",\"actualPay\":\"6470.13917\",\"actualAnnualisedPay\":\"6470.13917\",\"grade\":\"99\",\"point\":\"9999\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161001\",\"dateExpire\":\"20161029\",\"multiplier\":\".410256\",\"annualised\":\"15770.98\",\"actualPay\":\"6470.13917\",\"actualAnnualisedPay\":\"6470.13917\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161030\",\"dateExpire\":\"20161210\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20170108\",\"dateExpire\":\"\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"TS0011-18339\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 11,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/0\"\n      }\n    ]\n}\n"},{"id":"c18a047a-f28b-47dd-a38a-3c36d76105cb","name":"Invalid Personnel Number - Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/1234567890123/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 17:42:37 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"+llSfzdC1UDE9v+iRPeAlBVlFgq6jlBrZm+oQrpwg3sLsH1ovzcy5gYcg93hrn0/l47Mr+b9yiMQo5YOngCBLA==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001acb0b","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"The maximum length of this field is 12\",\n                    \"code\": \"9008\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"f1bda889-4eb1-45b0-8b42-983dfc64d720","name":"Specific Date Salary","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/20170101"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 16:21:20 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"GPVEgtqrfadY/x/zVrU/vGpIU19mAeLjYUtW+8+eKmjCPgv1cvoOcAKyE4rsyx8Kj6WsYYihxI5ogozL+pTvKw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001a7a8d","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161211\",\"dateExpire\":\"20170107\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"OU0011-12458\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/20170101\"\n      }\n    ]\n}\n"},{"id":"f3cb6613-2f70-4f63-8054-f98298d1477b","name":"Invalid Personnel Number","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/599[0/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 17:41:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"RmAmWESpjPx1HQcC4yM3LakCm1+pazrdxEpor92H2/Bbgfn5+PkfVrR1SNs1fnfVhP7f+MscIk1F07yw1loGjw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001aca5d","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Alphanumeric characters only.\",\n                    \"code\": \"9002\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"}],"_postman_id":"538dd291-0072-4ee8-9256-fb76cfa38a7c"}],"id":"c829e8e9-b377-48ca-938d-c8107db6b7ff","description":"<p>This module will provide salary detail for an individual. Salary information can be a complex topic,  outlined explains in as simply terms as possible how an employees rate of pay is determined. </p>\n<p>Uses Cases determine</p>\n<ol>\n<li>an employee's current salary detail</li>\n<li>an employee's historical salary detail</li>\n<li>an employee's salary per appointment </li>\n<li>an employee's salary on a specific date</li>\n</ol>\n<p>This salary module is aware of multi-appointments i.e. in cases where an individual has more than one active position (i.e. more than one appointment) two entries or more, will be included in the results set. In cases where only one position is associated with an employee only one entry will be returned.</p>\n<p>Employee's rates of pay can be based on various frequencies:</p>\n<ul>\n<li>Hourly</li>\n<li>Daily</li>\n<li>Weekly</li>\n<li>Annual</li>\n</ul>\n<p>Not all attributes will be populated, the fields populated are dependent on how your system administrators have configured salary / pay details.</p>\n<p>Following attributes are returned:</p>\n<ul>\n<li>annual</li>\n</ul>\n<p>An annual salary rate, typically used for salary based employees. Each month this rate is divided by 12.</p>\n<ul>\n<li>weekly</li>\n</ul>\n<p>A weekly based rate of pay. </p>\n<ul>\n<li>daily</li>\n</ul>\n<p>A daily based rate of pay.</p>\n<ul>\n<li>hourly</li>\n</ul>\n<p>An hourly based rate of pay.</p>\n<ul>\n<li>dateActive</li>\n</ul>\n<p>The date when the rate(s) of pay are effective for employee. An employee can only have one set of active pay rates per appointment.</p>\n<ul>\n<li>dateExpire</li>\n</ul>\n<p>The date when the rate(s) of pay have ended and are no longer active for employee. Useful when viewing historical rates of pay.</p>\n<ul>\n<li>multiplier</li>\n</ul>\n<p>This is a number applied to the rate of pay, typically set to 1, indicating the individual is paid the (rate of pay * 1), often used in cases where employee is part time.</p>\n<ul>\n<li>annualised</li>\n</ul>\n<p>The annual rate of pay, in cases where weekly rate is only provided, this figure presents an annual rate. In cases where the annual rate is defined, this annualised figure is the same value.</p>\n<ul>\n<li>actualPay</li>\n</ul>\n<p>Takes the provided rate(s) of pay and applies the multiplier.</p>\n<ul>\n<li>actualAnnualisedPay</li>\n</ul>\n<p>Takes the annualised figure and applies the multiplier.</p>\n<ul>\n<li>appointmentID</li>\n</ul>\n<p>Employee's unique Job identifier, typically referred to as appointment ID. It is possible an individual has more than one Job/Appointment, if this is the case more the result set will reflect this. </p>\n<ul>\n<li>grade</li>\n</ul>\n<p>This attribute reprsents an employee's salary grade, typically this represents one's Role / Job.</p>\n<ul>\n<li>point</li>\n</ul>\n<p>This attribute represents a level within the Grade, sometimes termed Spine Point. In some cases this value can be '9999', this represents an individual has been assigned a personal point.</p>\n","event":[{"listen":"prerequest","script":{"id":"625cc7af-f7b7-453a-8f81-5d97de553579","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"26ff0e77-0de1-4438-8830-01e66ffa626b","type":"text/javascript","exec":[""]}}],"_postman_id":"c829e8e9-b377-48ca-938d-c8107db6b7ff"},{"name":"socialSecurityNumber","item":[{"name":"/person/socialsecuritynumber/:personnelNo","id":"756ce314-3194-46ec-a14b-4e5deda279d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/socialsecuritynumber/5990404","description":"<p>Simply gets an individuals Social Security Number.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","socialsecuritynumber","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1efee1cc-b9ab-4a98-9261-d21201dd6940","name":"All Salary History","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/0"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 21 Mar 2018 17:58:04 GMT","name":"Date","description":""},{"key":"ETag","value":"\"hkaOE4XQSbYdfEu/G4B7X3hnwbEZbElMx/uzYF1NoEK/tWmjE8dhIE0XKrxzA2nxzOD+upOc7BFrs9bjOQsoyw==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-00011b92","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"salary\" : [\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20130718\",\"dateExpire\":\"20160401\",\"multiplier\":\"1\",\"annualised\":\"14448.25\",\"actualPay\":\"14448.25\",\"actualAnnualisedPay\":\"14448.25\",\"appointmentID\":\"JXXXXX-4347\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161211\",\"dateExpire\":\"20170107\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"appointmentID\":\"OU0011-12458\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20160402\",\"dateExpire\":\"20160923\",\"multiplier\":\".25641\",\"annualised\":\"14448.25\",\"actualPay\":\"3704.67578\",\"actualAnnualisedPay\":\"3704.67578\",\"appointmentID\":\"OU0011-2694\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20160924\",\"dateExpire\":\"20160915\",\"multiplier\":\".25641\",\"annualised\":\"14448.25\",\"actualPay\":\"3704.67578\",\"actualAnnualisedPay\":\"3704.67578\",\"appointmentID\":\"OU0011-2694\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20160916\",\"dateExpire\":\"20160922\",\"multiplier\":\".25641\",\"annualised\":\"14448.25\",\"actualPay\":\"3704.67578\",\"actualAnnualisedPay\":\"3704.67578\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15262.24\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.5\",\"dateActive\":\"20160923\",\"dateExpire\":\"20160924\",\"multiplier\":\".25641\",\"annualised\":\"15262.24\",\"actualPay\":\"3913.39096\",\"actualAnnualisedPay\":\"3913.39096\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"\",\"daily\":\"\",\"hourly\":\"\",\"dateActive\":\"20160925\",\"dateExpire\":\"20160925\",\"multiplier\":\".25641\",\"annualised\":\"15770.98\",\"actualPay\":\"4043.83698\",\"actualAnnualisedPay\":\"4043.83698\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"\",\"daily\":\"\",\"hourly\":\"\",\"dateActive\":\"20160926\",\"dateExpire\":\"20160930\",\"multiplier\":\".410256\",\"annualised\":\"15770.98\",\"actualPay\":\"6470.13917\",\"actualAnnualisedPay\":\"6470.13917\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161001\",\"dateExpire\":\"20161029\",\"multiplier\":\".410256\",\"annualised\":\"15770.98\",\"actualPay\":\"6470.13917\",\"actualAnnualisedPay\":\"6470.13917\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161030\",\"dateExpire\":\"20161210\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20170108\",\"dateExpire\":\"\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"appointmentID\":\"TS0011-18339\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 11,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/0\"\n      }\n    ]\n}\n"},{"id":"c82bbdce-54c8-4cc1-824c-f53fcd05ec9b","name":"Current Active Salary","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 21 Mar 2018 17:57:37 GMT","name":"Date","description":""},{"key":"ETag","value":"\"FDsnzuXPBRCYJbbDVL2OyeQ9P2HxpYUXcZyf2t1OE5u8nKCRru6K48Y/V+cXg/9KPl/nUAaF7IDq1H8s3HEVSA==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-00011b68","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"salary\" : [\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20170108\",\"dateExpire\":\"\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"appointmentID\":\"TS0011-18339\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/\"\n      }\n    ]\n}\n"},{"id":"f93d4bd7-6c78-4520-a01e-9fe86629c3af","name":"Salary on Specific Date ","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/20170101"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 21 Mar 2018 17:58:29 GMT","name":"Date","description":""},{"key":"ETag","value":"\"X8DO7XKppamdtc8NWRGV4/oL9G8Xqsj7zouGAbNqDV2Y9g4Wwdl3gRdBM3iciy40xCIPV9WwIQRbWiWwY0QFKg==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-00011bba","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"salary\" : [\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161211\",\"dateExpire\":\"20170107\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"appointmentID\":\"OU0011-12458\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/20170101\"\n      }\n    ]\n}\n"}],"_postman_id":"756ce314-3194-46ec-a14b-4e5deda279d1"}],"id":"9d2359f7-fb2c-4775-9e0e-a75059e8115f","description":"<p>An individuals National Social number e.g. Social Security Number.</p>\n","event":[{"listen":"prerequest","script":{"id":"336a0031-27a3-4e1e-b558-68d220a6bb7c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"730958fd-954c-4c2b-aa15-4e4339632ede","type":"text/javascript","exec":[""]}}],"_postman_id":"9d2359f7-fb2c-4775-9e0e-a75059e8115f"},{"name":"workpermit","item":[{"name":"/person/workpermit/:personnelNo","id":"05214fe1-6392-4ed2-848f-69964de93131","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/workpermit/5990404","description":"<p>Provides an individuals work permit information.</p>\n<ul>\n<li><p>Work Permit Number</p>\n</li>\n<li><p>Work Permit</p>\n</li>\n<li><p>Date Work Permit Issued</p>\n</li>\n<li><p>Date Work Permit Expires</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","workpermit","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ea25a65a-c98a-4cd7-980b-0b23fb9f0a0b","name":"WorkPermit","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/workpermit/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 20 Mar 2018 12:22:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"QWb+46LohvrS7+AouGLdijCxrGl+3X3XqEryvEgVUAlwh1p2ucoj2InMoYM0rnREohHy9bq6w+aQ5oAQSUGJ7Q==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"cb89685b-0a33-4e88-9829-ed0bf23cf3fc-0005bfb6","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"workPermit\" : [\n{\"workPermitNumber\":\"S234F567\",\"workPermit\":\"J1 Visa\",\"dateWorkPermitIssued\":\"20180310\",\"dateWorkPermitExpires\":\"20190420\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/workpermit/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"05214fe1-6392-4ed2-848f-69964de93131"}],"id":"8b32482a-c5dc-469d-8a78-8a84bd680339","description":"<p>Provides an individuals work permit information.</p>\n<ul>\n<li><p>Work Permit Number</p>\n</li>\n<li><p>Work Permit</p>\n</li>\n<li><p>Date Work Permit Issued</p>\n</li>\n<li><p>Date Work Permit Expires</p>\n</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"5ab409d6-9c8a-40df-b50e-9cd45cdf323e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bf2f9607-edc8-418b-aa12-4eb8b0cadfff","type":"text/javascript","exec":[""]}}],"_postman_id":"8b32482a-c5dc-469d-8a78-8a84bd680339"}],"id":"81481731-deaf-42fc-bc23-db7650fa00e3","description":"<p>This person module is all about personnel associated with an organisation, typically employee's, though sometimes contractors. </p>\n<p>All personnel entities have a <code>personnelNo</code>. Each of these services will accept a <code>personnelNo</code> as an atttrbute. To obtain sets of <code>personnelNo</code> use the <code>filter</code> module. The person module is typically used to determine following detail regarind an organisations personnel:</p>\n<ul>\n<li>basic attributes (name, joined date etc.)</li>\n<li>address detail</li>\n<li>probation information</li>\n<li>work permit details</li>\n<li>bank Account information</li>\n<li>salary information</li>\n</ul>\n<p>Separate services are defined for each of above, rather than one large service.</p>\n<p>NB : as this module only accepts the primary identifer <code>personnelNo</code> the <code>pagesize</code> option has no affect.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<p>personnelNo</p>\n<p>Mandatory: Yes</p>\n<p>Expected Type: AlphaNumeric</p>\n<p>Length Max : 12</p>\n","event":[{"listen":"prerequest","script":{"id":"9ad45a85-28fc-4571-91ea-59dbf08e9b73","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"83d5c06c-2c44-4fc0-bbdb-72948b478c10","type":"text/javascript","exec":[""]}}],"_postman_id":"81481731-deaf-42fc-bc23-db7650fa00e3"},{"name":"Organisation","item":[{"name":"structure","item":[{"name":"config","item":[{"name":"/organisation/structure/config","id":"d7a4fc5b-5cad-4c08-98a1-9893c7ae9c3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/organisation/structure/config","description":"<p><strong>Parameters</strong></p>\n<p>no parameters are required to call this service.</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of organisational structures are returned.</p>\n<ul>\n<li>structureCode</li>\n</ul>\n<p>A unique identifier associated with this specfic organisations hierarchy.</p>\n<ul>\n<li>hierarchyName</li>\n</ul>\n<p>A description for this structure / hierarchy. The description will be defined by your HR Administration colleagues.</p>\n<ul>\n<li>level1Type .. level12Type</li>\n</ul>\n<p>This is a list from 1 through 12. These will list the types for each of the levels of hierarchy, for example Level One might by Company, Level 2 might be Management unit etc. These levels will be based on Reference data and can be mapped back to the reference module. In general it it is possible to use this type and reference back to the reference module.</p>\n<ul>\n<li>hierarchyInd1 .. hierarchyInd12</li>\n</ul>\n<p>This is a list from 1 through 12. These attributes indicate if the corresponding level is part of a hierarchy rather than just part of the structure. Reference back to the Organisation Module description for an explaination of the Hierarchy v's Structure concept. The indicator is simply Y or N.</p>\n<ul>\n<li>label1 .. label12</li>\n</ul>\n<p>These are the descriptions associated with the level1 .. level12 type. </p>\n<ul>\n<li>displayMode1 .. displayMode12</li>\n</ul>\n<p>It is possible to configure the display description for each element. This mode can return one of the following CD (code description), DC (description code) and D (description). </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>For example - \nif the displayMode is CD (code description) then the description would be\n\n1001 : Engineering \n\nthe code is 1001 while the description is Engineering\n</code></pre><ul>\n<li>dateApplied</li>\n</ul>\n<p>indicates the date the structure was made active.</p>\n<ul>\n<li>dateInput</li>\n</ul>\n<p>this is the date the structure was first created.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","organisation","structure","config"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"30d6a230-5553-42cc-be52-e5e62e42d1c4","name":"Success 200","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/organisation/structure/config"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 18 Jun 2018 14:17:29 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"QdYOzMA/b7fLqDLuLuinGXapZCFy2sgKwURL3ZcmhlywvfNbIke+t0+o8zLlq3NRlMvneOeex5JqR1ExtMDm2g==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-0008576a","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"structure\" : [\n{\"structureCode\":\"7000\",\"hierarchyName\":\"Company 7000\",\"dateInput\":\"20170209\",\"dateApplied\":\"20170209\",\"level1Type\":\"ORGZ\",\"level2Type\":\"MGTU\",\"level3Type\":\"DEPT\",\"level4Type\":\"USER1\",\"level5Type\":\"DIV\",\"level6Type\":\"COST\",\"level7Type\":\"LOC\",\"level8Type\":\"WRKGRP\",\"level9Type\":\"\",\"level10Type\":\"\",\"level11Type\":\"\",\"level12Type\":\"\",\"label1\":\"Company\",\"label2\":\"Management Unit\",\"label3\":\"Department\",\"label4\":\"Team\",\"label5\":\"Division\",\"label6\":\"Cost Centre\",\"label7\":\"Location\",\"label8\":\"Work Group\",\"label9\":\"\",\"label10\":\"\",\"label11\":\"\",\"label12\":\"\",\"hierarchy1Ind\":\"Y\",\"hierarchy2Ind\":\"Y\",\"hierarchy3Ind\":\"Y\",\"hierarchy4Ind\":\"N\",\"hierarchy5Ind\":\"N\",\"hierarchy6Ind\":\"N\",\"hierarchy7Ind\":\"N\",\"hierarchy8Ind\":\"N\",\"hierarchy9Ind\":\"N\",\"hierarchy10Ind\":\"N\",\"hierarchy11Ind\":\"N\",\"hierarchy12Ind\":\"N\",\"displayMode1\":\"CD\",\"displayMode2\":\"CD\",\"displayMode3\":\"CD\",\"displayMode4\":\"CD\",\"displayMode5\":\"CD\",\"displayMode6\":\"CD\",\"displayMode7\":\"CD\",\"displayMode8\":\"CD\",\"displayMode9\":\"CD\",\"displayMode10\":\"CD\",\"displayMode11\":\"CD\",\"displayMode12\":\"CD\"}\n,\n{\"structureCode\":\"7001\",\"hierarchyName\":\"Company 7001\",\"dateInput\":\"20170209\",\"dateApplied\":\"20170209\",\"level1Type\":\"ORGZ\",\"level2Type\":\"MGTU\",\"level3Type\":\"DEPT\",\"level4Type\":\"USER1\",\"level5Type\":\"DIV\",\"level6Type\":\"COST\",\"level7Type\":\"LOC\",\"level8Type\":\"WRKGRP\",\"level9Type\":\"\",\"level10Type\":\"\",\"level11Type\":\"\",\"level12Type\":\"\",\"label1\":\"Company\",\"label2\":\"Management Unit\",\"label3\":\"Department\",\"label4\":\"Team\",\"label5\":\"Division\",\"label6\":\"Cost Centre\",\"label7\":\"Location\",\"label8\":\"Work Group\",\"label9\":\"\",\"label10\":\"\",\"label11\":\"\",\"label12\":\"\",\"hierarchy1Ind\":\"Y\",\"hierarchy2Ind\":\"Y\",\"hierarchy3Ind\":\"Y\",\"hierarchy4Ind\":\"N\",\"hierarchy5Ind\":\"N\",\"hierarchy6Ind\":\"N\",\"hierarchy7Ind\":\"N\",\"hierarchy8Ind\":\"N\",\"hierarchy9Ind\":\"N\",\"hierarchy10Ind\":\"N\",\"hierarchy11Ind\":\"N\",\"hierarchy12Ind\":\"N\",\"displayMode1\":\"CD\",\"displayMode2\":\"CD\",\"displayMode3\":\"CD\",\"displayMode4\":\"CD\",\"displayMode5\":\"CD\",\"displayMode6\":\"CD\",\"displayMode7\":\"CD\",\"displayMode8\":\"CD\",\"displayMode9\":\"CD\",\"displayMode10\":\"CD\",\"displayMode11\":\"CD\",\"displayMode12\":\"CD\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/organisation/settings\"\n      }\n    ]\n}\n"}],"_postman_id":"d7a4fc5b-5cad-4c08-98a1-9893c7ae9c3a"}],"id":"2e1c5f7a-5bad-4520-b8dc-b8e97898de66","description":"<p>This web service returns the \"metadata\" / \"settings\" for a structure, describing how the structure is defined. This service does <em>not</em> return the actual data (see /organisation/data). </p>\n","event":[{"listen":"prerequest","script":{"id":"1ad3d0f8-ea5a-45f0-923c-3c5a402319a4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cbaf1cc7-a854-4352-aec7-e0e04d486bae","type":"text/javascript","exec":[""]}}],"_postman_id":"2e1c5f7a-5bad-4520-b8dc-b8e97898de66"},{"name":"nodes","item":[{"name":"/organisation/structure/nodes/:structureCode?","id":"a2072752-9ffb-495b-bdb3-d5c4255b1de0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/organisation/structure/nodes/7000","description":"<p>This webservice is subject to pagination,and, therefore by default only 100 rows are returned, it is possible to set the pagesize up to a maximum of 5,000 if the use case is to reduce the number of requests and attempt to obtain all rows in one request.</p>\n<p><strong>Parameters</strong></p>\n<ul>\n<li>structureCode</li>\n</ul>\n<p>A structure code is required to call this web service, use the /organisation/settings web service to get a list. Typically organisations will only have a few of these structure codes configured and usually this takes place during initial project implementation. </p>\n<p>Expected Type: Alpha_Numeric</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<ul>\n<li>ID</li>\n</ul>\n<p>A unique identifier associated with this specfic item, each item will have a unique ID.</p>\n<ul>\n<li>parentID</li>\n</ul>\n<p>The parentID associated with the unique ID, each item will have a parentID. For the 'Root' the parent ID will be set to the structure code. </p>\n<ul>\n<li>nodeDepth</li>\n</ul>\n<p>Each item has a depth associated with it, i.e. this is the level an item exists within the hierarchy. Starts at 1. For example all items with a nodeDepth of 1 should map directly to the number of structures defined, typically this is only a few, and nodeDepth's 2 and 3 will also only have a few, while the many nodeDepths from 4 will most likely exist.</p>\n<ul>\n<li>path</li>\n</ul>\n<p>This attribute provides an easy to see path i.e. the hierarchy for the item, this defines each of the parents all the way up to root. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>For example: \nA path with 10:1:1000:1016\nindicates the current item has a nodeDepth 4 with the following hierarchy struture:\n    - 10  \n        - 1 \n            - 1000  \n                - 1016\nthe root would be 10 and the current item being 1016\n</code></pre><ul>\n<li>description</li>\n</ul>\n<p>This attributes describes the current item (not the entire path). The description may include both code and description, this is dependent on the displayMode as defined in the  /organisation/settings. In cases where the code is to be included, the code and description will be ':'. There is no clue in this description as to the path or nodeDepth (unless of course HR administrations have defined in the description) </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>For example:\n\n1001 : Engineering \n\nthe code is 1001 while the description is Engineering\n</code></pre>","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","organisation","structure","nodes","7000"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1f25cb69-5f39-4327-89b9-c8454452c123","name":"Success 200","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/organisation/structure/nodes/7000"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 18 Jun 2018 14:50:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"YP16PeuRAWoR3WGCp0lvXsgBSafRD2E+Ya2V9CsHzeJNDHICPNpWzHSYbMqX1/7p/E0ZEzjLzhWv0KcRhXSp1w==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-000881f0","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"structure\" : [\n{\"id\":\"7000020990043714\",\"parentID\":\"7000\",\"nodeDepth\":\"1\",\"path\":\"7000\",\"description\":\"Unit Test 7000\"}\n,\n{\"id\":\"7000020990043716\",\"parentID\":\"7000020990043714\",\"nodeDepth\":\"2\",\"path\":\"7000:7000\",\"description\":\"7000 : Unit Test Company 7000\"}\n,\n{\"id\":\"7000020990043717\",\"parentID\":\"7000020990043716\",\"nodeDepth\":\"3\",\"path\":\"7000:7000:7041\",\"description\":\"7041 : Product and Operations\"}\n,\n{\"id\":\"7000020990043718\",\"parentID\":\"7000020990043716\",\"nodeDepth\":\"3\",\"path\":\"7000:7000:7042\",\"description\":\"7042 : Sales and Marketing\"}\n,\n{\"id\":\"7000020990043719\",\"parentID\":\"7000020990043716\",\"nodeDepth\":\"3\",\"path\":\"7000:7000:7043\",\"description\":\"7043 : Finance\"}\n,\n{\"id\":\"7000020990043720\",\"parentID\":\"7000020990043716\",\"nodeDepth\":\"3\",\"path\":\"7000:7000:7044\",\"description\":\"7044 : Human Resources\"}\n,\n{\"id\":\"7000020990043743\",\"parentID\":\"7000020990043716\",\"nodeDepth\":\"3\",\"path\":\"7000:7000:7045\",\"description\":\"7045 : CoreHR\"}\n,\n{\"id\":\"7000020990043721\",\"parentID\":\"7000020990043717\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7041:7001\",\"description\":\"7001 : Development \"}\n,\n{\"id\":\"7000020990043722\",\"parentID\":\"7000020990043717\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7041:7002\",\"description\":\"7002 : Product \"}\n,\n{\"id\":\"7000020990043723\",\"parentID\":\"7000020990043717\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7041:7003\",\"description\":\"7003 : Operations \"}\n,\n{\"id\":\"7000020990043724\",\"parentID\":\"7000020990043717\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7041:7004\",\"description\":\"7004 : Product and Operations \"}\n,\n{\"id\":\"7000020990043730\",\"parentID\":\"7000020990043718\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7042:7006\",\"description\":\"7006 : Marketing \"}\n,\n{\"id\":\"7000020990043731\",\"parentID\":\"7000020990043718\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7042:7007\",\"description\":\"7007 : Human Resource \"}\n,\n{\"id\":\"7000020990043732\",\"parentID\":\"7000020990043718\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7042:7008\",\"description\":\"7008 : Finance \"}\n,\n{\"id\":\"7000020990043738\",\"parentID\":\"7000020990043720\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7044:7009\",\"description\":\"7009 : Payroll \"}\n,\n{\"id\":\"7000020990043736\",\"parentID\":\"7000020990043719\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7043:7010\",\"description\":\"7010 : CoreHR \"}\n,\n{\"id\":\"7000020990043737\",\"parentID\":\"7000020990043719\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7043:7011\",\"description\":\"7011 : \"}\n,\n{\"id\":\"7000020990043745\",\"parentID\":\"7000020990043743\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7045:70O5\",\"description\":\"70O5 : \"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 18,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/organisation/data/7000\"\n      }\n    ]\n}\n"},{"id":"eb3bec63-0d87-4bdc-8317-f0c0004f37f9","name":"BadRequest 400","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/organisation/structure/nodes/7000@1234567"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 20 Jun 2018 12:29:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"vNMSXQGDZSxGpQFzhmh0e2NNjOYnXzjbL3rOmFoXvPMgJryNiBCAfwXrD6niNRSAhLOODtxjpJXCUACYYlooWg==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-000e3f83","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 2,\n        \"errors\": 2,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Alphanumeric characters only.\",\n                    \"code\": \"9002\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n,\n{\n                    \"message\": \"The maximum length of this field is 6\",\n                    \"code\": \"9011\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"}],"_postman_id":"a2072752-9ffb-495b-bdb3-d5c4255b1de0"}],"id":"c9e548c6-ef8c-4d2c-afd6-b0943da912ea","description":"<p>This web service returns all the node data associated with a specific structure code. The /organisation/structure/config defines the configuration and associated hierarchy / structure of levels, while the /organisation/structure/nodes web service applies the configurtion settings and returns the node data associated with same, including ID, parentID and nodeDepthLevel etc.</p>\n","event":[{"listen":"prerequest","script":{"id":"c52f33fb-b6ef-4dbb-be38-1f82f048cc77","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"81b1b071-eeb1-4dc7-9df0-237f605ad43a","type":"text/javascript","exec":[""]}}],"_postman_id":"c9e548c6-ef8c-4d2c-afd6-b0943da912ea"}],"id":"9e23f372-d325-4b33-afb3-9f8ce37a77da","description":"<p>This is just a grouping for all structure related elements, currently this is grouping only includes</p>\n<ul>\n<li>the structure configuration information </li>\n<li>the structure node information</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"48fb697a-4399-4695-b6aa-b44433cbca58","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b5b877d5-972d-4a7f-9a09-7b5e205e13bc","type":"text/javascript","exec":[""]}}],"_postman_id":"9e23f372-d325-4b33-afb3-9f8ce37a77da"}],"id":"f1cdc433-f36f-4a51-ad9d-4d12d696553b","description":"<p>An organisation will set up an organisational structure within CoreHR. This service will return an organisational structure.</p>\n<p>For Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>- Company  \n    - Management Unit  \n        - Department  \n            - Cost Centre\n</code></pre><p>As part of the organisational setup, an important concept exists Structure v's Hierarchy. A hierarchy is considered a subset of the previous level. For example from the above example, lets assume all are part of the hierarchy, this would mean:</p>\n<p>For a company, the available management units are mapped to a company, selecting a company means a specfic list of management units a valid to be selected, and selecting a management unit drives the departments that can be selected, once a department is selected only specific cost centres can then be selected. In other words the entire strucutre has a hierarchy link. CoreHR can support up to 12 levels of structure / hierarchy, the number of levels used is set by your HR administration colleagues.</p>\n<p>This hierearchy is completely configurable. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</p>\n","event":[{"listen":"prerequest","script":{"id":"4cabf899-e92b-42b8-8740-7342cbdf71ae","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dd6195b4-f0c7-46c2-9709-a8b48b59e33a","type":"text/javascript","exec":[""]}}],"_postman_id":"f1cdc433-f36f-4a51-ad9d-4d12d696553b"},{"name":"HESA","item":[{"name":"staffid","item":[{"name":"/hesa/staffid/:personnelNo","id":"91d3cd5b-023d-4f9d-9a22-3655157d931f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/hesa/staffid/9913681","description":"<p>The specific end point will return an employee's HESA assigned staff ID. This staff ID is derived based on an algorithm that includes personnel number, year joined, institute ID an a check digit. </p>\n<p><strong>Parameters</strong></p>\n<p>requires personnelNumber, use the /filter/* endpoints to obtain personnelNumbers</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li><p>staffid </p>\n<p>A unique reference identifier for the appointment, this is a system generated identifier.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","hesa","staffid","9913681"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"af47cd07-d24b-45cd-9768-eda555439f07","name":"Not Found","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/hesa/staffid/123"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Nov 2018 15:40:26 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-0017192f"},{"key":"ETag","value":"\"1skHyZ4bik1l92MgrpAI8MkU5t4g4SDlPW/QIyZWLNz6NVbLyV/yq+aQTav5z1ptovIQZJWUW+M0SgH8i4nnYw==\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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":"{}"},{"id":"fb71709e-a11d-4f43-b497-995234b917c6","name":"success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/hesa/staffid/9913681"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Nov 2018 15:38:53 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-001716ab"},{"key":"ETag","value":"\"J8rHluOYEeiptQdO90ROsKlFtP1Q4L1OYtHOQi++5qZ86LEd1W4v6PZz8pxsQBCCONpc5yB5weOeVT/JuqMcCA==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"staffId\": \"1410759136810\"\n}"}],"_postman_id":"91d3cd5b-023d-4f9d-9a22-3655157d931f"}],"id":"ee5f0fe2-36b1-4642-b418-0858955fdefa","description":"<p>The specific end point will return an employee's HESA assigned staff ID. This staff ID is derived based on an algorithm that includes personnel number, year joined, institute ID an a check digit. </p>\n","event":[{"listen":"prerequest","script":{"id":"b6ba0f73-4bb1-41bd-b908-18401a2cf4a3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4739d7e9-ef32-497b-8bf2-b5648920c711","type":"text/javascript","exec":[""]}}],"_postman_id":"ee5f0fe2-36b1-4642-b418-0858955fdefa"}],"id":"f07a74aa-c6b2-4fa4-8c08-fecb6f725df9","description":"<p>This module has only been made available from <strong>CoreHR 26.0.6</strong> and is not available in older versions.</p>\n<p>HESA relates only to the higher education (HE) in the UK. </p>\n","event":[{"listen":"prerequest","script":{"id":"e450ca2a-77df-42de-830f-46cb33a355a4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cc22e9a8-0569-4ac9-bd9f-9b634dbdf7dd","type":"text/javascript","exec":[""]}}],"_postman_id":"f07a74aa-c6b2-4fa4-8c08-fecb6f725df9"}],"id":"551695a7-60db-4239-872a-b0e65bd3c38b","event":[{"listen":"prerequest","script":{"id":"9b89bfb6-0e31-47b2-8589-ac4d2f9ecbff","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"de4724dc-e70d-4b19-8e68-515e98080a8c","type":"text/javascript","exec":[""]}}],"_postman_id":"551695a7-60db-4239-872a-b0e65bd3c38b","description":""},{"name":"V26","item":[{"name":"Clocking","item":[{"name":"/clocking/user/","id":"cfefbda2-49d6-415f-86ed-8bf9f26f61e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer LBmqAWEBeoLdkbwNkJwPUQ.."}],"body":{"mode":"raw","raw":"{\n\"person\" : \"\", \"badge_no\": \"4752066\", \n\"clock_date_time\" : \"2017-02-15 08:56 +00:00\",\n\"record_type\"     : \"\", \n\"function_code\"   : \"COST\", \n\"function_value\"  : \"2\",  \n\"device_id\"       : \"D123456789-1234567\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/clocking/user/","description":"<p>Create a new clocking record in the clocking module for subsequent transfer into CoreTime. On successful completion, users will have submitted a new clocking record which subject subsequent CoreTime validation will be transferred into CoreTime the next time the interface runs.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<p><strong>person</strong></p>\n<p>Is an CoreHR employee id also known as <code>personnel number</code> although it is alphanumeric.</p>\n<p><strong>badge_no</strong></p>\n<p>Is the badge number that the CoreHR employee uses. Badge must be valid and linked to a valid CoreHR employee for the clocking to interface into CoreTime.</p>\n<p><strong>clock_date_time</strong></p>\n<p>The Date and Time that this particular clocking is for. Required to be in YYYY-MM-DD HH24:MI TZH:TZM format. Mandatory.</p>\n<p><strong>record_type</strong></p>\n<p>The Transactional event associated with the clocking. Optional but if specified must be one of:</p>\n<ul>\n<li><code>B0</code>     <em>Undefined.</em></li>\n<li><code>B1</code>     <em>In.</em></li>\n<li><code>B2</code>     <em>Out.</em></li>\n<li><code>B3</code>     <em>Business Absence.</em></li>\n</ul>\n<p><strong>function_code</strong></p>\n<p>Optional function code but if specified must be one of:</p>\n<ul>\n<li><code>CALLIN</code></li>\n<li><code>UNSBRK</code></li>\n<li><code>STD</code></li>\n<li><code>TNAIN</code></li>\n<li><code>CALLOT</code></li>\n<li><code>TNAOUT</code></li>\n<li><code>OVERTM</code></li>\n<li><code>COST</code></li>\n</ul>\n<p><strong>function_value</strong></p>\n<p>Optional function_value relating to the above code.</p>\n<p><strong>device_id</strong></p>\n<p>Optional free text to describe the Device ID where the clocking was recorded e.g. Main Entrance Device.</p>\n<p><strong>Mandatory</strong></p>\n<ul>\n<li>Either person or badge_no - if both are provided then badge_no takes precedence.</li>\n<li>clock_date_time</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","clocking","user",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fcf5a90d-56e9-46ec-bd4e-b719a065bdb1","name":"200 - Success","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json","description":"The mime type of this content"},{"key":"Authorization","value":"Bearer LBmqAWEBeoLdkbwNkJwPUQ.."}],"body":{"mode":"raw","raw":"{\n\"person\" : \"\", \"badge_no\": \"4752066\", \n\"clock_date_time\" : \"2017-02-15 08:56 +00:00\",\n\"record_type\"     : \"\", \n\"function_code\"   : \"COST\", \n\"function_value\"  : \"2\",  \n\"device_id\"       : \"D123456789-1234567\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/clocking/user/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 15 May 2017 14:48:42 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"cfefbda2-49d6-415f-86ed-8bf9f26f61e3"}],"id":"8983ab9b-bb09-48a9-91f9-01305a88f893","description":"<p>The clocking module provides ability to insert Core Time clocking records for a CoreHR employee.</p>\n<p><strong>Constraints, Limitations, Mandatory and Validation</strong></p>\n<p>The clocking module is designed to handle a large volume of data and so validation at the point of insertion is limited to all required fields being present and the data in them being of the correct format, length and precision. \nAs such duplicate records, expired badges, invalid personnel etc.. will be received by the clocking module provided all data is in the correct format and length. The validation process is completed by the Core Time Interface. </p>\n<p>Fields are as in the table below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Length</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Person</td>\n<td>Character</td>\n<td>10</td>\n</tr>\n<tr>\n<td>Badge No</td>\n<td>Number</td>\n<td>18</td>\n</tr>\n<tr>\n<td>Clock Date Time</td>\n<td>Date YYYY-MM-DD HH24:MI TZH:TZM</td>\n<td>26</td>\n</tr>\n<tr>\n<td>Record Type</td>\n<td>Character</td>\n<td>2</td>\n</tr>\n<tr>\n<td>Function Code</td>\n<td>Character</td>\n<td>6</td>\n</tr>\n<tr>\n<td>Function Value</td>\n<td>Character</td>\n<td>18</td>\n</tr>\n<tr>\n<td>Device ID</td>\n<td>Character</td>\n<td>100</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: Clock Date Time is mandatory and either Person or Badge No must also be provided.</p>\n<p><strong>Interface to CoreTime and Validation</strong></p>\n<p>The validation process is completed at the point of interface to CoreTime. It is during this process that duplicates are rejected and CoreTime related validation is performed. Specifically:</p>\n<ul>\n<li>Person does not exist as CoreHR employee</li>\n<li>Badge does not exist or is not valid</li>\n<li>Record Type is valid</li>\n<li>Function Code is valid</li>\n<li>Duplicate Clocking - defined as where a clocking already exists in CoreTime for this person at the same date/time.</li>\n</ul>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001  Both badge and person fields are not populated. One must be populated.</li>\n<li>400 / 002  clock_date_time field is not populated.</li>\n<li>400 / 003  clock_date_time field is not in the correct format.</li>\n<li>404 / 004 Non standard database exception inserting this clocking.</li>\n<li>404 / 005 record_type is invalid. Must be either empty, B0, B1, B2 or B3.</li>\n<li>400 / 006  function_code is invalid. Must be either empty, CALLIN, UNSBRK, STD, TNAIN, CALLOT, TNAOUT, OVERTM or COST.</li>\n<li>400 / 999  Basic sanitization error. Where a filed is not the correct data type or length or the data is deemed to be unsafe for recording within the system. Details of the fields failing sanitization are returned in the sanatizeError object in the Response.</li>\n</ul>\n","_postman_id":"8983ab9b-bb09-48a9-91f9-01305a88f893"},{"name":"Contact","item":[{"name":"/contact/","id":"57196fa6-b702-4de1-9690-691ff6f079a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer p7Zy3YYr3Yck6yOVXUYPaQ.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/","description":"<p>Get a list of registered / whitelisted contacts. Tenant has an ability to define contacts available for creating / updating. A tenant may not allow all contacts to be updated or created, this base URI provides the list of valid contact types. In cases where server returns validation errors, refer to this list.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7f56940a-f45c-4a98-8485-623c99abe789","name":"200 - Response OK","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:00:52 GMT","name":"Date","description":""},{"key":"ETag","value":"\"uwlnRwLu1teq90JMcLw3B68+EOyVApqwZ0O87dUiP4G6rHtTNS14dRJz0YaKyE8k7RmWTnrUodwqt3OwuAMICA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"EMAIL\", \"length\": 80, \"dataType\" : \"EMAIL\"}\n,\n{\"type\":\"MOBILE\", \"length\": 20, \"dataType\" : \"MOB\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/\"\n      }\n    ]\n}\n"}],"_postman_id":"57196fa6-b702-4de1-9690-691ff6f079a5"},{"name":"/contact/:type/","id":"e8abb813-6f1b-4207-8290-69122f7ca824","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/EMAIL/","description":"<p>Get a list of all users for a particular contact type. Typically used to get a list of all users <code>email</code> addresses. </p>\n<p>This service will only return whitelisted contact types. A tenant may decide to only whitelist a subset of all contacts e.g. EMAIL is whitelisted while MOBILE is not. Only accounts where the contact type is populated are returned. To find accounts with missing contact information use the web service /contact/missing/:type</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","EMAIL",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"14eabcb0-41f5-4e08-b351-88e068506277","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/EMAIL/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 15 Nov 2016 19:46:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"6iQZlpyFhjCcA3IiwUAR9L8mLF0w4tdo6M6kmFN3AV+v32sX/fFbqqgk/bMg7pMmUv2y1+9/cnGbLcj57836dw==-gzip\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"coreHRId\":\"003676\", \"value\": \"webservices003676@corehr.com\"}\n,\n{\"coreHRId\":\"003674\", \"value\": \"webservices003674@corehr.com\"}\n,\n{\"coreHRId\":\"003332\", \"value\": \"webservices003332@corehr.com\"}\n,\n{\"coreHRId\":\"003333\", \"value\": \"webservices003333@corehr.com\"}\n,\n{\"coreHRId\":\"INT009\", \"value\": \"webservicesINT009@corehr.com\"}\n,\n{\"coreHRId\":\"INT010\", \"value\": \"webservicesINT010@corehr.com\"}\n,\n{\"coreHRId\":\"600100\", \"value\": \"webservices600100@corehr.com\"}\n,\n{\"coreHRId\":\"600101\", \"value\": \"webservices600101@corehr.com\"}\n,\n{\"coreHRId\":\"600102\", \"value\": \"webservices600102@corehr.com\"}\n,\n{\"coreHRId\":\"7777\", \"value\": \"webservices7777@corehr.com\"}\n,\n{\"coreHRId\":\"C876876\", \"value\": \"webservicesC876876@corehr.com\"}\n,\n{\"coreHRId\":\"003193\", \"value\": \"webservices003193@corehr.com\"}\n,\n{\"coreHRId\":\"003528\", \"value\": \"webservices003528@corehr.com\"}\n,\n{\"coreHRId\":\"gh1234\", \"value\": \"webservicesgh1234@corehr.com\"}\n,\n{\"coreHRId\":\"JG1234\", \"value\": \"webservicesJG1234@corehr.com\"}\n,\n{\"coreHRId\":\"002145\", \"value\": \"webservices002145@corehr.com\"}\n,\n{\"coreHRId\":\"002144\", \"value\": \"webservices002144@corehr.com\"}\n,\n{\"coreHRId\":\"002146\", \"value\": \"webservices002146@corehr.com\"}\n,\n{\"coreHRId\":\"000660\", \"value\": \"webservices000660@corehr.com\"}\n,\n{\"coreHRId\":\"002626\", \"value\": \"webservices002626@corehr.com\"}\n,\n{\"coreHRId\":\"000740\", \"value\": \"webservices000740@corehr.com\"}\n,\n{\"coreHRId\":\"000936\", \"value\": \"webservices000936@corehr.com\"}\n,\n{\"coreHRId\":\"000830\", \"value\": \"webservices000830@corehr.com\"}\n,\n{\"coreHRId\":\"000831\", \"value\": \"webservices000831@corehr.com\"}\n,\n{\"coreHRId\":\"000880\", \"value\": \"webservices000880@corehr.com\"}\n,\n{\"coreHRId\":\"1000491\", \"value\": \"webservices1000491@corehr.com\"}\n,\n{\"coreHRId\":\"000014\", \"value\": \"webservices000014@corehr.com\"}\n,\n{\"coreHRId\":\"000115\", \"value\": \"webservices000115@corehr.com\"}\n,\n{\"coreHRId\":\"000012\", \"value\": \"webservices000012@corehr.com\"}\n,\n{\"coreHRId\":\"000015\", \"value\": \"webservices000015@corehr.com\"}\n,\n{\"coreHRId\":\"000296\", \"value\": \"webservices000296@corehr.com\"}\n,\n{\"coreHRId\":\"000297\", \"value\": \"webservices000297@corehr.com\"}\n,\n{\"coreHRId\":\"000328\", \"value\": \"webservices000328@corehr.com\"}\n,\n{\"coreHRId\":\"000590\", \"value\": \"webservices000590@corehr.com\"}\n,\n{\"coreHRId\":\"000227\", \"value\": \"webservices000227@corehr.com\"}\n,\n{\"coreHRId\":\"001873\", \"value\": \"webservices001873@corehr.com\"}\n,\n{\"coreHRId\":\"000275\", \"value\": \"webservices000275@corehr.com\"}\n,\n{\"coreHRId\":\"CUT-001\", \"value\": \"webservicesCUT-001@corehr.com\"}\n,\n{\"coreHRId\":\"END-001\", \"value\": \"webservicesEND-001@corehr.com\"}\n,\n{\"coreHRId\":\"000286\", \"value\": \"webservices000286@corehr.com\"}\n,\n{\"coreHRId\":\"001987\", \"value\": \"webservices001987@corehr.com\"}\n,\n{\"coreHRId\":\"000180\", \"value\": \"webservices000180@corehr.com\"}\n,\n{\"coreHRId\":\"001993\", \"value\": \"webservices001993@corehr.com\"}\n,\n{\"coreHRId\":\"000598\", \"value\": \"webservices000598@corehr.com\"}\n,\n{\"coreHRId\":\"000601\", \"value\": \"webservices000601@corehr.com\"}\n,\n{\"coreHRId\":\"002037\", \"value\": \"webservices002037@corehr.com\"}\n,\n{\"coreHRId\":\"GH992\", \"value\": \"webservicesGH992@corehr.com\"}\n,\n{\"coreHRId\":\"000119\", \"value\": \"webservices000119@corehr.com\"}\n,\n{\"coreHRId\":\"000124\", \"value\": \"webservices000124@corehr.com\"}\n,\n{\"coreHRId\":\"000587\", \"value\": \"webservices000587@corehr.com\"}\n,\n{\"coreHRId\":\"000588\", \"value\": \"webservices000588@corehr.com\"}\n,\n{\"coreHRId\":\"000592\", \"value\": \"webservices000592@corehr.com\"}\n,\n{\"coreHRId\":\"000594\", \"value\": \"webservices000594@corehr.com\"}\n,\n{\"coreHRId\":\"002315\", \"value\": \"webservices002315@corehr.com\"}\n,\n{\"coreHRId\":\"000904\", \"value\": \"webservices000904@corehr.com\"}\n,\n{\"coreHRId\":\"002261\", \"value\": \"webservices002261@corehr.com\"}\n,\n{\"coreHRId\":\"002262\", \"value\": \"webservices002262@corehr.com\"}\n,\n{\"coreHRId\":\"CUT-012\", \"value\": \"webservicesCUT-012@corehr.com\"}\n,\n{\"coreHRId\":\"002248\", \"value\": \"webservices002248@corehr.com\"}\n,\n{\"coreHRId\":\"002249\", \"value\": \"webservices002249@corehr.com\"}\n,\n{\"coreHRId\":\"002250\", \"value\": \"webservices002250@corehr.com\"}\n,\n{\"coreHRId\":\"002367\", \"value\": \"webservices002367@corehr.com\"}\n,\n{\"coreHRId\":\"002368\", \"value\": \"webservices002368@corehr.com\"}\n,\n{\"coreHRId\":\"002369\", \"value\": \"webservices002369@corehr.com\"}\n,\n{\"coreHRId\":\"000826\", \"value\": \"webservices000826@corehr.com\"}\n,\n{\"coreHRId\":\"000897\", \"value\": \"webservices000897@corehr.com\"}\n,\n{\"coreHRId\":\"001128\", \"value\": \"webservices001128@corehr.com\"}\n,\n{\"coreHRId\":\"002629\", \"value\": \"webservices002629@corehr.com\"}\n,\n{\"coreHRId\":\"002697\", \"value\": \"webservices002697@corehr.com\"}\n,\n{\"coreHRId\":\"000934\", \"value\": \"webservices000934@corehr.com\"}\n,\n{\"coreHRId\":\"002624\", \"value\": \"webservices002624@corehr.com\"}\n,\n{\"coreHRId\":\"000290\", \"value\": \"webservices000290@corehr.com\"}\n,\n{\"coreHRId\":\"000837\", \"value\": \"webservices000837@corehr.com\"}\n,\n{\"coreHRId\":\"002444\", \"value\": \"webservices002444@corehr.com\"}\n,\n{\"coreHRId\":\"002685\", \"value\": \"webservices002685@corehr.com\"}\n,\n{\"coreHRId\":\"002227\", \"value\": \"webservices002227@corehr.com\"}\n,\n{\"coreHRId\":\"002169\", \"value\": \"webservices002169@corehr.com\"}\n,\n{\"coreHRId\":\"000849\", \"value\": \"webservices000849@corehr.com\"}\n,\n{\"coreHRId\":\"000808\", \"value\": \"webservices000808@corehr.com\"}\n,\n{\"coreHRId\":\"002091\", \"value\": \"webservices002091@corehr.com\"}\n,\n{\"coreHRId\":\"1010101010\", \"value\": \"webservices1010101010@corehr.com\"}\n,\n{\"coreHRId\":\"20202020\", \"value\": \"webservices20202020@corehr.com\"}\n,\n{\"coreHRId\":\"GM967\", \"value\": \"webservicesGM967@corehr.com\"}\n,\n{\"coreHRId\":\"GM969\", \"value\": \"webservicesGM969@corehr.com\"}\n,\n{\"coreHRId\":\"DB678\", \"value\": \"webservicesDB678@corehr.com\"}\n,\n{\"coreHRId\":\"002651\", \"value\": \"webservices002651@corehr.com\"}\n,\n{\"coreHRId\":\"gh23\", \"value\": \"webservicesgh23@corehr.com\"}\n,\n{\"coreHRId\":\"6633228\", \"value\": \"webservices6633228@corehr.com\"}\n,\n{\"coreHRId\":\"250\", \"value\": \"webservices250@corehr.com\"}\n,\n{\"coreHRId\":\"260\", \"value\": \"webservices260@corehr.com\"}\n,\n{\"coreHRId\":\"002705\", \"value\": \"webservices002705@corehr.com\"}\n,\n{\"coreHRId\":\"002103\", \"value\": \"webservices002103@corehr.com\"}\n,\n{\"coreHRId\":\"000950\", \"value\": \"webservices000950@corehr.com\"}\n,\n{\"coreHRId\":\"002756\", \"value\": \"webservices002756@corehr.com\"}\n,\n{\"coreHRId\":\"002652\", \"value\": \"webservices002652@corehr.com\"}\n,\n{\"coreHRId\":\"jg1234\", \"value\": \"webservicesjg1234@corehr.com\"}\n,\n{\"coreHRId\":\"DF5609\", \"value\": \"webservicesDF5609@corehr.com\"}\n,\n{\"coreHRId\":\"002289\", \"value\": \"webservices002289@corehr.com\"}\n,\n{\"coreHRId\":\"002727\", \"value\": \"webservices002727@corehr.com\"}\n,\n{\"coreHRId\":\"000179\", \"value\": \"webservices000179@corehr.com\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://localhost/ws/tenant/corehr/v1/contact/EMAIL/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"https://localhost/ws/tenant/corehr/v1/contact/EMAIL/?offsetby=100\"\n      }\n     ]\n}\n"},{"id":"815a205f-0934-4985-879f-e17f47301aa5","name":"404 - Invalid Contact type","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/MOB/"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 15 Nov 2016 19:51:28 GMT","name":"Date","description":""},{"key":"ETag","value":"\"WIZPZbpKwxRRgssW8lwH34floeFnPJzhb0Pc1fxiiWRv2Gqy41LgVu19up1qzvTBBMK6i635jWpyDaAsi5TVnQ==-gzip\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Contact type does not exist\" }}\n"}],"_postman_id":"e8abb813-6f1b-4207-8290-69122f7ca824"},{"name":"/contact/user/:person/","id":"04f16314-627b-4a17-aa6e-3c3569b1a592","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/","description":"<p>This web service returns all contacts for the <code>person</code>. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0ae5b5ea-32be-4841-92fb-9b3525a04313","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:07:46 GMT","name":"Date","description":""},{"key":"ETag","value":"\"LhGBatBRxgaYUmBtTmvXvChPohvGeovn7W4uxHWhB4+QRQzr2hMGTwHgTVmNBSC5LBBs5caMKtNgcUPRq//F4g==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"EMAIL\", \"value\": \"darragh.michael.duffy@corehr.com\"}\n,\n{\"type\":\"MOBILE\", \"value\": \"+353 86 879394365\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/100/\"\n      }\n    ]\n}\n"},{"id":"63b072b4-a9a1-42a2-ab70-f9164ed8de43","name":"200 - No User","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/101/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:01:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"O9HyTNymWfaETgxd2+q0Z8TsEInPQq/SaTstLGNYuk0ULMG4HwXQCLduJMqhelPi2gIHQzv5MIpmEwSbtWPRpA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 0,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/101/\"\n      }\n    ]\n}\n"}],"_postman_id":"04f16314-627b-4a17-aa6e-3c3569b1a592"},{"name":"/contact/user/:person/:type","id":"53723d3f-9532-439f-a25b-cb17336cd41f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service returns a specific contact for an associated <code>person</code> and <code>type</code>. Refer to /contact/ for a complete list of contacts available.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7feea180-b41a-4b67-b31f-4ca8b470c968","name":"200 - Success - MOBILE","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/MOBILE"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:09:49 GMT","name":"Date","description":""},{"key":"ETag","value":"\"scMWmM8Da5PAtTmblpgR7OkNQV1BzUC3oAQTxAwklCyu4Ho/oxtaOFLKAD3gitBDb+yEJe9jVdbxDOQC/3ADBw==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"MOBILE\", \"value\": \"+353 86 879394365\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/100/MOBILE\"\n      }\n    ]\n}\n"},{"id":"c13cf146-adce-4afd-8ec8-0beb8a5c22b3","name":"200 - No User","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/101/MOBILE"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:10:07 GMT","name":"Date","description":""},{"key":"ETag","value":"\"ay7m5ryBPHhMsOJ1KjoM5eH7l1NGTfBQtHtRz3pe6vAnViut/MxWuBYfXJAq8eIwVG9Mdw++NsyHV8rF1b+n9w==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 0,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/101/MOBILE\"\n      }\n    ]\n}\n"},{"id":"e8ca3a86-0315-4d4c-81f6-7c0529387bff","name":"200 - Success - EMAIL","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:09:26 GMT","name":"Date","description":""},{"key":"ETag","value":"\"Pc4vB09OL4Wki+1My6sbuyspVqD9UgcaBW5WwkJt7G+pjphL6HqjfPhY3QJdY9rBBhTQiZpy3yiq/0Ss9VN8Og==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"EMAIL\", \"value\": \"darragh.michael.duffy@corehr.com\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/100/EMAIL\"\n      }\n    ]\n}\n"}],"_postman_id":"53723d3f-9532-439f-a25b-cb17336cd41f"},{"name":"/contact/user/:person/:type","id":"d1f981b1-89e2-431f-880b-e6ac6c403fd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"value\" :\"darragh.duffy@corehr.com\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service provides ability to create a new contact type for a user. The contact type should not already exist for this account. As previously noted a tenant may whitelist contact types. Refer to /contact/ for a complete list of contacts available.</p>\n<p>The value of the contact type must be provided in the request body as JSON e.g.</p>\n<blockquote>\n<p>{\"value\" :\"<a href=\"mailto:darragh.james.duffy@corehr.com\">darragh.james.duffy@corehr.com</a>\"}</p>\n</blockquote>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"54afd858-5691-4bfd-ada1-45f3f8f9326d","name":"400 - Bad Request - Error Code 001","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:42:45 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing\" }}\n"},{"id":"6372a662-7d1c-4e67-8ab5-996b4f27ed65","name":"400 - Bad Request - Error Code 005","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/PHONE"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:44:28 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"005\",\"errorMessage\" :\"Validation failed. Ensure contact type is allowed and has correct format\" }}\n"},{"id":"830ed022-d2b2-47f1-8534-ee8e0ff8d624","name":"400 - Bad Request - Error Code 006","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:41:20 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"006\",\"errorMessage\" :\"Validation failed. Existing contact for user, use PATCH to update\" }}\n"},{"id":"a3f33e6e-7f50-451c-a025-bd384f2cee63","name":"404 - Not Found - Error Code 003","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/7788/EMAIL"},"status":"Not Found","code":404,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:43:31 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"003\",\"errorMessage\" :\"Validation failed. User account does not exist\" }}\n"},{"id":"b82d4217-99df-4c18-8353-6b11d95560d2","name":"201 - Success - Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:40:49 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"d1f981b1-89e2-431f-880b-e6ac6c403fd4"},{"name":"/contact/user/:person/:type","id":"a3966e47-7b88-4991-8d17-9e78150a73ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"value\" :\"darragh.james.duffy@corehr.com\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service provides ability to patch / update a contact type for a user. The contact type <strong>must</strong> already exist for this account. As previously noted a tenant may whitelist contact types. Refer to /contact/ for a complete list of contacts available.</p>\n<p>The value of the contact type must be provided in the request body as JSON e.g.</p>\n<blockquote>\n<p>{\"value\" :\"<a href=\"mailto:darragh.james.duffy@corehr.com\">darragh.james.duffy@corehr.com</a>\"}</p>\n</blockquote>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3babcc54-c3d6-42f4-8dc1-3dbc3f6413e3","name":"201- Success - Created","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:45:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"71eaf918-681c-4e47-99ba-730f5666e878","name":"400 - Bad Request - Error Code 001","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:46:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing\" }}\n"},{"id":"ad7760d4-99c1-459f-8031-58d02f7b9595","name":"404 - Not Found - Error Code 002","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/Phone"},"status":"Not Found","code":404,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:48:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Contact does not exist\" }}\n"},{"id":"cbd6375b-20e9-447f-9405-e272db39cfff","name":"404 - Not Found - Error Code 003","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/7788/EMAIL"},"status":"Not Found","code":404,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:47:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"003\",\"errorMessage\" :\"Validation failed. User account does not exist\" }}\n"}],"_postman_id":"a3966e47-7b88-4991-8d17-9e78150a73ea"},{"name":"/contact/user/:person/:type","id":"0dcd15e8-049d-4dba-a675-05fae477d265","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service provides ability to delete a contact from a users / employees profile. The contact type should already exist for this account. As previously noted a tenant may whitelist contact types. Refer to /contact/ for a complete list of contacts available. All contact types are case sensitive.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b206418c-26ee-40af-b59a-65013c418d1f","name":"200 - Response OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 11 Nov 2016 14:46:13 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"0dcd15e8-049d-4dba-a675-05fae477d265"},{"name":"/contact/missing/:type","id":"4149037e-7e7e-48c1-ab7d-7ad7561314e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/missing/EMAIL","description":"<p>This web service provides ability to list user accounts with missing contact types. For example find all users with a missing <code>EMAIL</code> contact.</p>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","missing","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2452299d-856a-415f-942e-3b7c8551da06","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/missing/EMAIL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:20:51 GMT","name":"Date","description":""},{"key":"ETag","value":"\"CxtmnGZgL6Fnj+S5DOnKKr5OPrcNWUF/Tp/4y80gZt+7x/+jHBqLIZD6vvrFUddPuXIu33rL+abP5e3np94DYA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"corehrid\":\"000003703\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003704\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003706\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003707\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003708\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003709\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003710\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003711\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003712\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003713\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003714\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003715\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003716\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003717\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003718\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003720\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003721\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003722\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003723\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000013\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000017\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000018\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000020\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000022\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000023\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000025\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000027\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000028\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000030\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000031\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000032\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000035\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000036\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000038\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000039\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000041\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000042\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000043\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000044\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000045\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000046\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000047\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000048\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000049\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000050\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000051\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000052\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000053\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000054\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000055\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000056\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000057\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000058\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000059\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000060\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000061\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000063\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000064\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000065\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000066\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000067\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000069\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000070\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000071\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000072\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000073\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000078\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000080\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000081\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000082\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000084\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000085\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000086\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000088\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000090\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000091\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000092\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000093\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000094\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000096\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000097\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000098\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000099\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000100\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"0001000\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000101\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000102\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000103\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000105\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000106\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000107\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000108\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000109\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000110\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000111\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000112\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000113\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000114\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000118\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000120\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/missing/EMAIL\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/missing/EMAIL?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"4149037e-7e7e-48c1-ab7d-7ad7561314e1"}],"id":"7e6b21c5-d883-4921-a210-8083d49cda4e","description":"<p>Contact module provides ability to interact with contact information associated with an account in CoreHR. Different contact types exist and can be defined by a tenant e.g EMAIL, MOBILE etc. Not all tenants have the same list of contacts i.e. each tenant can define a whitelist of contacts exposed to web services.</p>\n<p><strong>Contraints, Limitations &amp; Mandatory</strong></p>\n<p>The contact module is case senstive, no process converts the contact type provided to upper or lower case. You must ensure you have set the case correctly, otherwise no data will be returned. Within CoreHR contact types are typically uppercase.</p>\n<p>Person is mandatory, person represents users unique CoreHR ID, this is often referenced as <code>personnel number</code></p>\n<p><strong>Optionally</strong> </p>\n<p>Provide the type of contact e.g. <code>EMAIL</code> to get users associated email address.</p>\n<p>In cases where <code>type</code> is not specified all contact details are returned associated with employee.</p>\n<p>In Summary contact provides ability to</p>\n<ul>\n<li>Enumerate users contact information</li>\n<li>Obtain a specific contact type </li>\n<li>Update / Patch an existing contact type</li>\n<li>Assign a new contact type to a user</li>\n</ul>\n<p><strong>Error Codes</strong></p>\n<p>Note <code>type</code> is case senstive, no process converts the type provided into upper or lower case. You must ensure you have set the case correctly, otherwise no data will be returned. </p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001  Mandatory fields are missing</li>\n<li>404 / 002  Validation failed. Contact does not exist</li>\n<li>404 / 003  Validation failed. User account does not exist</li>\n<li>400 / 005 Validation failed. Ensure contact type is allowed and has correct format</li>\n<li>400 / 006  Validation failed. Existing contact for user, use PATCH to update</li>\n<li>404 / 007  Contact type does not exist for user, consider using POST to create</li>\n</ul>\n<p><strong>Note</strong> </p>\n<p>Where a contact exists within CoreHR, this does not mean an account in CoreHR has this contact assigned, e.g. not every account would have a mobile / cell number. Keep this in mind if you attempt to PATCH a contact type and server responds with a validation error.</p>\n","_postman_id":"7e6b21c5-d883-4921-a210-8083d49cda4e"},{"name":"Image","item":[{"name":"/image/user/","id":"c02bacd7-67f1-4910-a62e-32b3d666a0ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"authorization","value":"Bearer MZun_JVHkiiNm9SXgadz4A.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>This Web Service is used to retrieve (GET) the image profile for a CoreHR user on the system. Returns a binary image file.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$  curl -o ./local_copy_of_profile.jpeg -k --request GET --url https://devapi.corehr.com/ws/frame/corehr/v1/image/user/0890126 \\\n --header 'authorization: Bearer MZun_JVHkiiNm9SXgadz4A..'\n</code></pre>\n<p>This command will save the binary image of CoreHR User <code>0890126</code> into the file <code>local_copy_of_profile.jpeg</code>. If alternatively the person did not have an image on the system then the web service would return an http code 404 with and verbose errorCode of 1008. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"acdef4f5-ccfc-49df-9946-eeae8c2cdd06","name":"Successfull GET","originalRequest":{"method":"GET","header":[{"key":"authorization","value":"Bearer MZun_JVHkiiNm9SXgadz4A.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"OK","code":200,"_postman_previewlanguage":"auto","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Disposition","value":"filename=\"0890126.GIFF\"; filename*=UTF-8''0890126.GIFF","name":"Content-Disposition","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"image/GIFF","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 16:37:26 GMT","name":"Date","description":""},{"key":"ETag","value":"\"j9mJrveZSvs7gkL4ts+ozuq3PRxaNSFSStvjAW2auCnxwS+XXia03jqP+qm1FXXgVzmdyy+4rIR6LGyDsgpwzA==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002dd3","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"GIF89a\u0000\u0002\u0000\u0002�\n\u0000~}}~}}~}}~}}~}}~}}~}}~}}~}}~}}������������������!�\u001aCreated with GIMP on a Mac\u0000!�\u0004\u0001\n\u0000\u000f\u0000,\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0002@\u0004���I��8�ͻ�`(�di�h��l��p,�tm�x��|����pH,\u001a�Ȥr�l:�ШtJ�Z�جv��z���xL.����z�n����|N���\u0016\u0001\"������  \u0001\b\u0002x���2\u0007��������\u0007���f�����������C\b������\b���'|������\u0001���������}���u���ʷ��h����Ӡ���Z����ݒ���O\u0002�������F��������>������:�����  �Q\u0000����\n\f\\\b\u0003�Ç�\u0018Jt\u0001��E@\u00133� w��Au�\u001aC��H��ȓ\u0014K�܆�%��+c�R���\fw2sn�g�'\u000e�@1�\u001c:\u0004ZP�ֈ*ur��ҧ<�\u0005R\u0001�i��A�ʱ��\u0016RW~e\u0011v\u0016ȭ���\u001bK�@\u0001\u0001\u0002�&)[\u000e�+�$\u0003�\u0015#��J�v���z+��\u0003\b\nťI�-�ć\u0007\u0013��4p�ɘ3w�\u001c\u0005��Ϡwr.\u0015���T{G/:ͺ�*��Q�uM��)Ʊ?t�ͻ��Թ)�\u001eN<U�  œ+\u0007�z��盹B�N=\u0012p���k��\u0007�K�����)�<w���??ξ�����˟O��������Ͽ���\u0000\u0006�(��\u0004\u0016h��\b&���\f6���\u0010F(��\u0014Vh��\u0018f���\u001cv��� �(�\u000f}\u0001�׈\u000fJ\u0006Z\u0000ޡ��n�]�bH*��He3������\b�g<\"\u0003��t\u0000\u0019�6C\u0012�F�G����b4�\u0010�`�(%@�Q9\u0005�WB$��M0��AO��Ԙ$�9\u0005�i�\u0019��lb��\u0014��  P�s:Q�����g\u0014b�IM�Z����|Y�\u0016�*�h\u001b����\u001dpF�G��*b��If\u001aN��\u0011�i\u001c{B�h\b\u0005�\u001a\u0014�\u001b}���@�:��-\b�)7\u0007������\n+\n����\u001d�\"��\u0007��tb\u0013%��櫙�Z:\u001d�\"F+�z�Rx��vv� ��B�`��F�ߡ��;������:Z����ȳKmkﾞxK\u0014�\u0000�\u0002\u0015�\u0001\u0017�ڿ\u0006'̌M�*�0'�2��Ē��0�\u0014G|��\u001cw��� �,��$�l��(����,����0�,��4�l��8����<����@\u0007-��D\u0017m��H'���L7���PG-��\u0005\\�\u000b\u0002�N]��\u0000���\"�j6��r\u0010�\u001a�dc��p^��\u0004�����\u0010k����9p�7\u000fuw�7\r\u0001���Â���\u001f��vx hϽ���S\u0000��rK=����7����d����g~4��|M�,S�^�Ӫ���٭wҸϱ��t��+�9��x\u001e4���\u000e�q�\u000f�ӻ\u001b߈�B�^��@+o.��O�����\r���']�P{':�R�8�_��0���\u001e�\u0007�������;��\u0015�/���k������\b���\u0000\n0\u0005V\u0003��\u000ex��-�n\f$\u0001\u001f\fh\u0001�P�\u0002\u0013��\u0004@�>\r8�0\u0010�@�.X4���\u0005a���V�<��L}�� \b��\u0014\u0017r\u0000��\u001a�\u0007ma�\u0011T���\u000eLx��%P\u001a$\\\u0003\u0010o���\u0011�\u001e=��\u0013�\u0011E7��\"Ml��\u0011-\u0012�<-q%��a\n�rE\u0015z��߻G\u0017E4�4:��\u0011��\u001b���\u0006��4\u001f�cm2���LH�}TV��\u0018����=�,�\u0019\u0007���������!�\u0002�H\u000eg�>��%����lRJ��$�سEQn'�>1%�F�IUj���@�+��Ɛ��RP������k!�����,�i��\u0010So59&���Ln�Q\u001c�l�sꈍRJS�\u0003��5�\u0005K\rz���\f�8�I�r����L�:���v������<�I�z����̧>���~���\u0000\r�@\u0007JЂ\u001a��\bM�B\u0017�І:��\u0010��D�'JъZ��\u0018ͨF7�юz�� \r�HGJҒ���(M�JW�Җ���0ՠ\\b�\u00052\n).4�A��!Ĝ� �\bY�OA`�|�ҥ�D\u000759\n��\b5���I--�Լ������>�ڔ��3���j?�J\u001c�����:(X�#�wr�8^\u001d�[���r�U�h��Q�I�+��m\u0006kg_��ר͕Gq��`\u001bUX���ZwM�aǔ���/�84�3��لmVs�����'Z�}/qn\u0014�\u001d��X�EVh�UXceVȴ52}�,��,9���N�8�d�|�;�֬��{mpE�I=�:-����nU�4WV���\u0015nv7  ZU\u001a\u0017f�\r�vy;�H^ה�u.ӐK:��,���-���:�6\r���nϴ\u000b5�b̽9#����0\u0000�춊-�|_6YuU��z�[x1�]��Wa�EZ������6r��߆��a���M%.ډ��b�]�\\\u0019�-�*��Ù��l20`\u001d�N\u001c\u001fIǪ\u0005�<᫞\u0005����\u00012\u0003Wܛ\u0016\u000b�ɮqr\u0004�쬂\"�7JV'�mcdrR9'R\u0016�y�\\�Ҿ�31�\u0000���\u0007j��)i��\u001f��4ح��1��\u0004L���\u001d�����  ����2�y\u0002[��$�I��\u0011��W��Oi\u0011f�\u0001��4�Ȳ^p���9+4�4>6\u001d�O\u0007��(K�#\u001a��H7\"W8p5 ��1(W�\u0002o�\u0003*\b�S\u001f�:g���+&�\u000b2S  ���uM����\u0011{Pʦ\u0013�'\u0011m(\u0005[\u0019�&�J��!S��\u0000��A\u0001d=\rT+�����  ��\u000eV{h�HRw\u001eН�[W\b���5\f���x�\u001bB��f\u0002�\u001d��\u000b�\u000f\u0004g��\u000f\u000e10=���\b�� �\u000f\u001f\u0019���\u0018��1\u000e\f����\u001c�ÿ��B��\u0001��\u00031r��|��@y`T\u000e�\u0013J��mr��q^��\u0006ќ��h�S�.\u0013\u0004m����8%��\u0013����L\u000fF���B�\"��U��u������\u000f�1s��g�>f��|���^�\u0007�m�����������8��\u000f�tz�=4��{ir\u0003w�#I5z7<B��\fś�3lw�-�N��K~�v�<\u001e��p���������\u0012y�O~���R\n�zI����\u001fJ�a�\u000f�7����I�q�\u000e�ǁ��o  �U���\u000f?�5)��g����\u001e%�w��Z\u0012}�������gt�}���\r��~�e/~���S��*g�v\u0000�\u000f�0=\u001d���O��G����Ͽ��������\u0000\u0018�\u00028�\u0004X�\u0006x�\b��\n��\f؀\u000e��\u0010\u0018�\u00128�\u0014X�\u0016x�\u0018��\u001a��\u001c؁\u001e�� \u0018�\"8�!\u0010\u0001\u0000;"}],"_postman_id":"c02bacd7-67f1-4910-a62e-32b3d666a0ad"},{"name":"/image/user/","id":"3ac1a64a-cfd9-4c89-b29c-b4e51f04eca6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer E63-fevVwKH-CV4E_TScUA.."},{"key":"Content-Type","value":"image/png"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>This Web Service is used to insert a profile image for a CoreHR user on the system where none exists. The image is provided as binary data in the body of the request.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$ curl --request POST --url https://api.corehr.com/ws/tenant/corehr/v1/image/user/0890126 \\\n  --header \"Expect:\" \\\n  --header 'content-type:image/png' \\\n  --header 'authorization: Bearer E63-fevVwKH-CV4E_TScUA..' \\\n  --data-binary \"@./original_profile.png\" \n</code></pre>\n<p>The above cURL will insert the file <code>original_profile.png</code> as the binary image profile photo for the CoreHR User <code>0890126</code> where they do not have an profile image already configured on the system.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c4dbf589-1ba5-4acc-9603-c9c09e11a8e7","name":"New profile image added","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer N3Q1pq4ltsFO89nxd7jdSw.."},{"key":"Content-Type","value":"image/gif"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 15:58:03 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002d2b","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true,  \"person\": \"0890126\",\"mimeType\": \"image/gif\",\"fileFormat\": \"GIFF\",\"width\": \"512\",\"height\": \"512\",\"blobLength\": \"2734\",\"contentLength\":\"2734\"}}\n"},{"id":"f6c0c97b-ab00-419f-af8d-df1762a9bd34","name":"No image included in POST","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer N3Q1pq4ltsFO89nxd7jdSw.."},{"key":"Content-Type","value":"image/gif"}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"Unsupported Media Type","code":415,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 16:02:22 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002d3d","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"1002\",\"errorMessage\" :\"An image file (gif, png, jpeg or tiff) of size greater than zero must be attached to this request.\" }}\n"}],"_postman_id":"3ac1a64a-cfd9-4c89-b29c-b4e51f04eca6"},{"name":"/image/user/ ","id":"518e75cb-e030-482e-9f3f-8c92cce9c8de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer Fbbanqy44exS0Nat7Ep3oQ.."},{"key":"Content-Type","value":"image/jpeg"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>Web Service used to update the profile image for a CoreHR user on the system. This overwrites their current profile image with this new image. The image is provided as binary data in the body of the request.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$ curl --request PATCH --url https://api.corehr.com/ws/tenant/corehr/v1/image/user/0890126 \\\n  --header \"Expect:\" \\\n  --header 'content-type:image/jpeg' \\\n  --header 'authorization: Bearer Fbbanqy44exS0Nat7Ep3oQ..' \\\n  --data-binary \"@./new_profile.jpg\" \n</code></pre>\n<p>The above cURL will insert the file <code>new_profile.jpg</code> as the binary image profile photo for the CoreHR User <code>0890126</code> where they already have a profile image in CoreHR. This will over-write the existing profile image.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e61f6dc2-b687-4760-af06-cb5e206cf1dc","name":"Image update to GIF","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer seHDfknuDp9vu9UYFvsRRQ.."},{"key":"Content-Type","value":"image/gif"}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 15:38:37 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002d17","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true,  \"person\": \"0890126\",\"mimeType\": \"image/gif\",\"fileFormat\": \"GIFF\",\"width\": \"512\",\"height\": \"512\",\"blobLength\": \"2734\",\"contentLength\":\"2734\"}}\n"},{"id":"f0812600-a289-4c9b-af5c-07a94da27312","name":"Unsupported image type PATCH attempt","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer JWsqzJY8n1LFVJRvqakNjQ.."},{"key":"Content-Type","value":"image/bmp"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"Unsupported Media Type","code":415,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 15:54:55 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002d1f","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"1003\",\"errorMessage\" :\"There was an issue with the supplied image being recognized as a supported image (gif, png, jpeg or tiff) please save as another supported format and re-try.\" }}\n"}],"_postman_id":"518e75cb-e030-482e-9f3f-8c92cce9c8de"},{"name":"/image/user/","id":"f8c56ea0-1b6e-451a-94e6-2fc8f5220892","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"authorization","value":"Bearer MZun_JVHkiiNm9SXgadz4A.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>This Web Service is used to retrieve (GET) the image profile for a CoreHR user on the system. Returns a binary image file.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$  curl -o ./local_copy_of_profile.jpeg -k --request GET --url https://devapi.corehr.com/ws/frame/corehr/v1/image/user/0890126 \\\n --header 'authorization: Bearer MZun_JVHkiiNm9SXgadz4A..'\n</code></pre>\n<p>This command will save the binary image of CoreHR User <code>0890126</code> into the file <code>local_copy_of_profile.jpeg</code>. If alternatively the person did not have an image on the system then the web service would return an http code 404 with and verbose errorCode of 1008. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f8c56ea0-1b6e-451a-94e6-2fc8f5220892"},{"name":"/image/user/ ","id":"dd972383-9bf2-4712-9bd6-9972322372a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer Fbbanqy44exS0Nat7Ep3oQ.."},{"key":"Content-Type","value":"image/jpeg"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>Web Service used to update the profile image for a CoreHR user on the system. This overwrites their current profile image with this new image. The image is provided as binary data in the body of the request.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$ curl --request PATCH --url https://api.corehr.com/ws/tenant/corehr/v1/image/user/0890126 \\\n  --header \"Expect:\" \\\n  --header 'content-type:image/jpeg' \\\n  --header 'authorization: Bearer Fbbanqy44exS0Nat7Ep3oQ..' \\\n  --data-binary \"@./new_profile.jpg\" \n</code></pre>\n<p>The above cURL will insert the file <code>new_profile.jpg</code> as the binary image profile photo for the CoreHR User <code>0890126</code> where they already have a profile image in CoreHR. This will over-write the existing profile image.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dd972383-9bf2-4712-9bd6-9972322372a4"},{"name":"/image/user/","id":"085d7c08-f439-4607-a326-9a014f18ffe0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer E63-fevVwKH-CV4E_TScUA.."},{"key":"Content-Type","value":"image/png"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>This Web Service is used to insert a profile image for a CoreHR user on the system where none exists. The image is provided as binary data in the body of the request.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$ curl --request POST --url https://api.corehr.com/ws/tenant/corehr/v1/image/user/0890126 \\\n  --header \"Expect:\" \\\n  --header 'content-type:image/png' \\\n  --header 'authorization: Bearer E63-fevVwKH-CV4E_TScUA..' \\\n  --data-binary \"@./original_profile.png\" \n</code></pre>\n<p>The above cURL will insert the file <code>original_profile.png</code> as the binary image profile photo for the CoreHR User <code>0890126</code> where they do not have an profile image already configured on the system.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"085d7c08-f439-4607-a326-9a014f18ffe0"}],"id":"c932a9a7-5c8f-4c1c-9457-168b1552a8ae","description":"<p>The image web service provides a means for uploading and viewing a CoreHR user's profile picture.</p>\n<p><strong>Constraints, Limitations, Mandatory and Validation</strong></p>\n<p>Images uploaded can be a maximum of 500KB in size and must be provided in one of the following file formats:</p>\n<ul>\n<li>gif</li>\n<li>png</li>\n<li>jpeg</li>\n<li>tiff</li>\n</ul>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>415 / 1001  Invalid content type, only image/gif, image/png, image/jpeg or image/tiff allowed</li>\n<li>415 / 1002  n image file (gif, png, jpeg or tiff) of size greater than zero must be attached to this request.</li>\n<li>415 / 1003  There was an issue with the supplied image being recognized as a supported image (gif, png, jpeg or tiff) please save as another supported format and re-try.</li>\n<li>415 / 1004 The attached image exceeded the maximum allowed file size for an image.</li>\n<li>400 / 1005 The person supplied is not currently a valid person on the system. Please check the personnel details.</li>\n<li>400 / 1006  This person does not have an image on the system to update please change this request to POST to insert the image.</li>\n<li>400 / 1007  This person already has an image on the system to insert please change this request to PATCH to update the image.</li>\n<li>404 / 1008  This person does not currently have an image on the system to retrieve.</li>\n</ul>\n","_postman_id":"c932a9a7-5c8f-4c1c-9457-168b1552a8ae"},{"name":"Provision","item":[{"name":"native","item":[{"name":"auth","item":[{"name":"/provision/native/auth/uuid/","id":"75863fdc-517b-42bf-922d-1f99b2dae5c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\" : \"email\",\n  \"id\" : \"darragh@COREHR.com\"\n}"},"url":"{{url}}/ws/devws/corehr/v1/provision/native/auth/uuid","description":"<p>Use this service if you want to remove UUID's. The service can facility bulk UUID removal/purge and individual employee UUID.</p>\n<p>This is useful in cases where you have a need</p>\n<ul>\n<li>to remove an individuals UUID e.g. as part of a leaver process.</li>\n<li>to implement a policy requiring users to re-register, this would be similar to a password policy</li>\n</ul>\n<p><strong>Constraints and Limitations</strong></p>\n<ul>\n<li><code>type</code> must be one of the following:</li>\n</ul>\n<p>email</p>\n<p>ALL</p>\n<ul>\n<li><code>id</code></li>\n</ul>\n<p>must now be a valid type i.e. a valid Email address. In cases where ALL is used for type, the id should be left blank.</p>\n<p>If invalid ID provided nothing is deleted, i.e. if an invalid email address provided a status of 404 is returned. For valid email address a 200 is returned, indicating a success.</p>\n<p><strong>Parameters</strong></p>\n<ul>\n<li><code>type</code> this must be email, username, employeeNumber or all. \"ALL\" is reserved for bulk removal, this will remove all the registered UUID's, therefore use with caution</li>\n<li><code>id</code> this must be a valid email address</li>\n</ul>\n","urlObject":{"path":["ws","devws","corehr","v1","provision","native","auth","uuid"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"75863fdc-517b-42bf-922d-1f99b2dae5c9"}],"id":"68bb3644-3120-4d1c-abf5-d7f663be25f2","description":"<p>CoreHR's native mobile application facilitates users registering once and then using biometric (e.g. touchID, FaceID)  or PIN to unlock the application i.e. the user does not require a username / password each time they login. However a user is required to unlock the app via biometric or PIN.</p>\n<p>A tenant may have a requirement to implement a different policy e.g. a user must authenticate via username / password at least once a day, week or month i.e. similar to password policies. CoreHR makes no assumptions for password policies, instead tenants can implement their own policies.</p>\n<p>In order to faciliate these requirments web services can be used. A tenant can generate a new app grant priviliges to this module and end point.</p>\n","_postman_id":"68bb3644-3120-4d1c-abf5-d7f663be25f2"}],"id":"a0383d0e-cee3-48ef-a75e-74a0edd17990","description":"<p>The native module manages authentication and tokens for the CoreHR native application. These services cater for both SAML and non-SAML customers. All request will be handled via TLS.</p>\n<p>This service provides:</p>\n<ul>\n<li>Ability to remove / purge / reset Uses UUID's</li>\n</ul>\n","_postman_id":"a0383d0e-cee3-48ef-a75e-74a0edd17990"},{"name":"/provision/not/","id":"d64026d9-f5e5-4e49-94eb-f06fe3b9275f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/","description":"<p>Find all non provisioned accounts. This endpoint will return all users not yet provisioned. </p>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","not",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"87bef55a-a6e6-4e15-9945-7133a3266b56","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:25:18 GMT","name":"Date","description":""},{"key":"ETag","value":"\"1vMo5C9I8Z5vCzing5E3+mi3CqxEERGEkgaT63wiuazPEAyQbKuxHRi0r2O+2zXIJzD+SWQvh7AOH1pHdVRB2A==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"corehrId\":\"000003703\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003704\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003706\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003707\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003708\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003709\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003710\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003711\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003712\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003713\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003714\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003715\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003716\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003717\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003718\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003719\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003720\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003721\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003722\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003723\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000013\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000018\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000020\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000021\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000022\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000023\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000025\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000027\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000028\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000030\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000031\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000032\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000035\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000038\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000039\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000041\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000042\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000043\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000044\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000045\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000046\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000047\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000048\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000049\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000050\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000051\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000054\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000055\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000056\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000057\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000058\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000059\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000060\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000061\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000063\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000064\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000065\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000066\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000067\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000069\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000070\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000072\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000073\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000078\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000080\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000081\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000082\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000084\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000085\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000086\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000087\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000088\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000089\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000090\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000091\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000092\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000093\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000094\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000096\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000097\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000098\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000099\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000100\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"0001000\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000101\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000102\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000103\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000104\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000105\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000106\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000107\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000108\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000109\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000110\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000111\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000112\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000113\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000114\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000115\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000117\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/not/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/not/?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"d64026d9-f5e5-4e49-94eb-f06fe3b9275f"},{"name":"/provision/not/:days","id":"2207a76f-339d-4056-baf2-b3ee5f888483","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/10","description":"<p><strong>Optionally</strong> provide number of days, this service is used to offset users start date. Provides ability to determine accounts not yet provisioned in CoreHR for Core|Portal self service access. This service will include employees due to start in the future.</p>\n<p>Allowing the following scenario.</p>\n<ul>\n<li><p>obtain user accounts to be provisioned within the last X number of days, i.e. a start date occurring in the past.</p>\n</li>\n<li><p>obtain user accounts to be provisioned with a future start date, i.e. users starting in the future.</p>\n</li>\n</ul>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","not","10"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"111e9323-f424-4abd-9f63-459a27089e5a","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/10"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:30:42 GMT","name":"Date","description":""},{"key":"ETag","value":"\"cSKNv2WwIIh0T+eJ45YnqtVBjBFYZkks1p7Tqg85HR8CDOYFRrykHVYdfY25akVQyWUXfWirPpwnI4ZKalVYEA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"corehrId\":\"000613\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000614\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000615\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000623\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000624\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000660\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000662\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000673\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000674\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000676\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000677\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000679\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000754\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000755\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000756\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000757\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000770\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000771\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000794\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000795\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000796\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000801\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000806\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000825\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000830\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000831\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000883\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000893\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000894\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000897\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000898\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000899\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000900\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000919\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000921\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000934\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000944\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000958\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001027\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001105\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001141\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001330\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"002544\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"002556\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"003292\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"003484\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"003555\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"0208884\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"123\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"123-XYZ\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"609\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"610\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"611\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"612\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"616\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"617\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"618\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"619\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"620\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"621\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"622\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"625\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"638\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"639\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"640\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"642\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"643\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"644\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"645\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"650\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"651\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"652\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"667\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"671\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"675\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"678\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"680\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"694\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"C123456\", \"firstName\": \"DEAN\", \"lastName\": \"M\"}\n,\n{\"corehrId\":\"C123457\", \"firstName\": \"DOM\", \"lastName\": \"GRIFFIN\"}\n,\n{\"corehrId\":\"C464646\", \"firstName\": \"FDS\", \"lastName\": \"FSDF\"}\n,\n{\"corehrId\":\"C555555\", \"firstName\": \"STPEHEN\", \"lastName\": \"195\"}\n,\n{\"corehrId\":\"C876876\", \"firstName\": \"STEPHEN\", \"lastName\": \"NOW\"}\n,\n{\"corehrId\":\"C878778\", \"firstName\": \"SAFDA\", \"lastName\": \"WRWE\"}\n,\n{\"corehrId\":\"C888888\", \"firstName\": \"STEPHEN\", \"lastName\": \"EXTERNAL\"}\n,\n{\"corehrId\":\"C901111\", \"firstName\": \"STEPHEN\", \"lastName\": \"106\"}\n,\n{\"corehrId\":\"C989889\", \"firstName\": \"STEPOHEN\", \"lastName\": \"C\"}\n,\n{\"corehrId\":\"C989898\", \"firstName\": \"STEPHEN\", \"lastName\": \"185\"}\n,\n{\"corehrId\":\"DFLT-9\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"DYLAN1\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"TA0001\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"TA0002\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"TA0004\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 93,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/not/10\"\n      }\n    ]\n}\n"}],"_postman_id":"2207a76f-339d-4056-baf2-b3ee5f888483"},{"name":"/provision/user","id":"99ff5b54-35b0-4a50-970e-5dcebc9ada60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"100\",\n  \"loginid\" : \"darragh.duffy@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user","description":"<p>Provisions a new CorePortal account;  on successful completion, users will have ability to access CoreHR's self service features via CorePortal. As noted in the introduction to the provisioning module, where an IDM or third party application understands CorePortal privileges this module will accept these privileges. Example provided below includes Users Privilege.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by the /provision/not/ web service.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<ul>\n<li>authType</li>\n</ul>\n<p>This is the authentication type for the employee, the value here should be either <code>inApplicationPassword</code> or <code>LDAP</code>. For all single sign on authenticated accounts use LDAP. For non single sign on account set this value to inApplicationPassword this then requires the password attribute to be set. Leaving this parameter null indicates to CoreHR that the user account should pick up the system default authentication type, this parameter can be found in CoreHR as 'authtype'.</p>\n<ul>\n<li>password</li>\n</ul>\n<p>This attribute is required when authType is  <code>inApplicationPassword</code>. The value here will be validated against the password policy in CoreHR.</p>\n<ul>\n<li>privileges</li>\n</ul>\n<p>An array, each array object contains a privilege.</p>\n<p><strong>Mandatory</strong></p>\n<ul>\n<li>corehrid</li>\n<li>loginid</li>\n<li>password (only when authType is inApplicationPassword)</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7a8eceaf-21f1-4cc6-b90e-d3df17c703c7","name":"201 - Created - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.smith@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 05 Oct 2016 16:35:54 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"b5ca0a75-f753-4368-b75c-5e00c61ec706","name":"400 - Bad Request - ","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:36:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing\" }}\n"},{"id":"eeaa77f7-c213-471e-b4d6-a0a3d972d2dd","name":"400 - Bad Request - Validation Failed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.smith@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:38:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. If attempting to update use PATCH method\" }}\n"}],"_postman_id":"99ff5b54-35b0-4a50-970e-5dcebc9ada60"},{"name":"/provision/user","id":"0b3b2279-b03d-4886-8a4a-be1bbf7bc5db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"developmentTeam\"},\n            {\"privilege\" : \"VPNGroup\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user","description":"<p>Provides ability to patch (amend) an existing account. Account must have previously been provisioned, this means corehrID must previously have been generated via <code>POST</code>. In general this service supports Single Sign On style accounts. </p>\n<p>It is possible to use this service with non SSO accounts, in such cases all parameters are mandatory including password and explcitly setting authType to <code>inApplicationPassword</code>. In cases where <code>authType</code> is not provided the account is assumed to be Single Sign On.</p>\n<p>The use cases for this web service includes </p>\n<ul>\n<li>loginId changing</li>\n</ul>\n<p>Where a user changes their loginId e.g. their name changes because of marriage, this web service faciliates this change of ID.</p>\n<ul>\n<li>privilege changing</li>\n</ul>\n<p>executing this web service will remove all current privileges and replace with the privileges array. It is therefore possible to use this web service to revoke all privileges for a user by sending a blank array of privileges.</p>\n<p>Example provided below changes both Login ID and privileges.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by the /provision/not/ web service.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<ul>\n<li>authType</li>\n</ul>\n<p>This is the authentication type for the employee, the value here should be either <code>inApplicationPassword</code> or <code>LDAP</code>. For all single sign on authenticated accounts use LDAP. For non single sign on account set this value to <code>inApplicationPassword</code> this then requires the password attribute to be set. In cases where this attribute is null, assumpetion is Single Sign On.</p>\n<ul>\n<li>password</li>\n</ul>\n<p>This attribute is required when authType is  <code>inApplicationPassword</code>. The value here will be validated against the password policy in CoreHR. </p>\n<ul>\n<li>privileges</li>\n</ul>\n<p>An array, each array object contains a privilege. If this is blank all privs are revoked.</p>\n<p><strong>Mandatory</strong></p>\n<ul>\n<li>corehrid</li>\n<li>loginid</li>\n<li>password (only when authType is inApplicationPassword)</li>\n</ul>\n<p>For Non SSO Accounts <strong>all</strong> parameters are mandatory. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0ce80fce-6c6f-432e-be9e-5c9be93bbad2","name":"201 - Created - Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"developmentTeam\"},\n            {\"privilege\" : \"VPNGroup\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}//provision/user"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 05 Oct 2016 16:42:46 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"0b3b2279-b03d-4886-8a4a-be1bbf7bc5db"},{"name":"/provision/user/status/:id","id":"82a92e54-cb3c-453c-af0f-487ffa5e30d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100","description":"<p>Obtain user account status indicator; determining if an account is active or not. The parameter <code>id</code> can be users coreHRID or account username.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","status","100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d0362c7b-111e-420f-9897-1effd6b9f27b","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:31:30 GMT","name":"Date","description":""},{"key":"ETag","value":"\"sGx4HzAXH89DhDNFtkOUMSQlXB866SC59AcS3OozZImkugcv3VxH0Fu28Ggg8u1MKe9Q0te3IaT/rcBLEIZxsA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"isAccountActive\":\"Yes\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/user/status/100\"\n      }\n    ]\n}\n"}],"_postman_id":"82a92e54-cb3c-453c-af0f-487ffa5e30d0"},{"name":"/provision/user/authtype/:id","id":"ddb523a0-8533-4c28-bea9-d1cdf331d5f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/authtype/100","description":"<p>Obtain user authentication type. Response indicates either <code>LDAP</code> or <code>inApplicationPassword</code>. </p>\n<p>The parameter <code>id</code> can be users coreHRID or loginID.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","authtype","100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"df722a96-da01-4cb7-b335-edf50ac1db33","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/authtype/100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 15 May 2017 14:44:26 GMT","name":"Date","description":""},{"key":"ETag","value":"\"mZYGBTCc1ovUVzZXDgF+YJsBaIu7WlfXQxZde8j3GjOesDyaERKI0JiZmy5tZzqcbhUZA5zogDX+iGxiFiz7JQ==-gzip\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"authType\":\"inApplicationPassword\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://localhost/ws/tenant/corehr/v1/provision/user/authtype/100\"\n      }\n    ]\n}\n"}],"_postman_id":"ddb523a0-8533-4c28-bea9-d1cdf331d5f9"},{"name":"/provision/user/status/:id","id":"a827392d-27be-40dc-9af8-0c0dbc01c6f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"active\" : \"N\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100","description":"<p>Provides an ability to activate or deactivate an account. Setting an account to be deactive results in a user not being allowed sign into CoreHR self Service module CorePortal. This applies irrespective of the users authentication type.</p>\n<p>When an account is created via <code>POST</code> <code>/provision/user</code> the account is assumed to be active. You do not need to execute this web services to activate an account once it has been created. However if you execute this web services and set active to N then you must execute this web services again to re-activate the account by setting active to Y.</p>\n<p>The id parameter can be either coreHRID or the username associated with the account. The Active parameter must be N or Y</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","status","100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4a20be25-69da-46f1-b99b-7b201e20d131","name":"400 - Validation Failed","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\"active\" : \"N\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/1001"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 22 Oct 2016 19:02:41 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"007\",\"errorMessage\" :\"Validation failed. Either user account does not exist or request data is invalid.\" }}\n"},{"id":"8f365ca3-5ad9-440a-b0e8-3d0f57a6690e","name":"200 - Account Active","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 22 Oct 2016 18:04:52 GMT","name":"Date","description":""},{"key":"ETag","value":"\"L/idwKxNGWvlkQGQ4j3vC0+brkecdYNqpY2o9nJxaN5RiPktu/5d3OJrX6yJIWMlOB0ocscXHR0OVsUrx7Decw==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"{\"items\":[{\"isaccountactive\":\"Yes\"}],\"hasMore\":false,\"limit\":100,\"offset\":0,\"count\":1,\"links\":[{\"rel\":\"self\",\"href\":\"http://localhost:8585/ws/corehr/v1/provision/user/status/100\"},{\"rel\":\"describedby\",\"href\":\"http://localhost:8585/ws/corehr/metadata-catalog/v1/provision/user/status/item\"},{\"rel\":\"first\",\"href\":\"http://localhost:8585/ws/corehr/v1/provision/user/status/100\"}]}"},{"id":"d075a110-c854-4d44-99e9-28f39b97a32d","name":"201 - Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\"active\" : \"N\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 22 Oct 2016 19:02:16 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"a827392d-27be-40dc-9af8-0c0dbc01c6f0"},{"name":"/provision/user/privilege","id":"cb83e72d-2f9a-4ab7-ae1c-a7c58010882c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privilege\" : \"hrAdmin\"\n  }\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/privilege","description":"<p>Provisions a new privilege for a user. This service allows one new privilege to be assigned to the user account. In addition this service assumes an account has already been provisioned. Validation is performed on the account confirming existence. </p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by the /provision/not/ web service.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<ul>\n<li>privilege</li>\n</ul>\n<p>a new privilege for the user.</p>\n<p><strong>Special Usage Note</strong></p>\n<p>use one of the following combinations, <strong>do not</strong> use all three fields. If you do an error will be returned.</p>\n<ul>\n<li>corehrid and a privilege</li>\n</ul>\n<p>or</p>\n<ul>\n<li>loginid and a privilege</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","privilege"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8ab21496-2d3c-4ed2-a8ac-714625df56a0","name":"400 - Bad Request - Validation Failed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"  {\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privilege\" : \"hrAdmin\"\n  }\n  "},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/privilege"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:49:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"006\",\"errorMessage\" :\"Validation failed. Invalid fields used\" }}\n"},{"id":"cff655da-8bae-474f-abf5-ad39ad2ef4bd","name":"201 - Created - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"  {\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privilege\" : \"hrAdmin\"\n  }\n  "},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/privilege"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:47:41 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"cb83e72d-2f9a-4ab7-ae1c-a7c58010882c"},{"name":"/provision/user/privilege?id","id":"9e5a7d56-490b-4a6a-93b5-d2282ff50328","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege?id=","description":"<p><strong>CoreHR v25.0.7 required</strong></p>\n<p>This service will list all currently granted privileges associated with a user. </p>\n<p><strong>Parameter</strong></p>\n<p>id can be either the users  <code>loginid</code> or the users <code>corehrid</code> (personnelNumber).</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","provision","user","privilege"],"host":["{{url}}"],"query":[{"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"9e5a7d56-490b-4a6a-93b5-d2282ff50328"},{"name":"/provision/user/privilege/revoke/all","id":"b5a90a4b-1287-4b6c-928f-0fab2ee52e83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"corehrid\" : \"5990404\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all","description":"<p><strong>CoreHR v25.0.7 required</strong></p>\n<p>Provides an ability to revoke <strong>all</strong> user privileges associated with the user account. </p>\n<p>A privilege here relates to all granted menu security items i.e. feature access and <strong>not</strong> access to a specific user, while access to the user is not revoked the privilege to use the feature is revoked. </p>\n<p>NB this revokes <strong>all</strong>. </p>\n<p>Other attributes associated with the user Account are not affected e.g. account will still exist, authentication type will remain as is, and password for non SSO accounts remain in place etc.</p>\n<p>This service assumes an account has already been provisioned. Validation is performed on the account confirming existence. This is a simple purge request, in cases where the user has no privileges, this service will not respond with an error, instead a successful response is returned.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by using the new filter services.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<p><strong>Special Usage Note</strong></p>\n<p>use one of the following combinations, <strong>do not</strong> use both fields. If you do an error will be returned.</p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>or</p>\n<ul>\n<li>loginid</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","provision","user","privilege","revoke","all"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"045bab6f-f04b-4770-b8a5-df2a2a24fa73","name":"Invalid Request used both identifiers","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"corehrid\" : \"XXXX\", \"loginid\" : \"marco.donnino\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 29 Mar 2018 07:48:58 GMT","name":"Date","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-000ed268","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"006\",\"errorMessage\" :\"Validation failed. Invalid fields used\" }}\n"},{"id":"13a93a15-c3ec-4d4c-b73a-13e29d496d5d","name":"Invalid User ID","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"corehrid\" : \"XXXX\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 29 Mar 2018 07:48:13 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-000ed1ed","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"004\",\"errorMessage\" :\"Validation failed. User account does not exist\" }}\n"},{"id":"586bf67c-9170-4c7d-9f50-30ad4c09d375","name":"Successful Revoke All - CoreHRID","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"corehrid\" : \"5990404\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 29 Mar 2018 07:45:42 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-000ed03f","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"ebe17820-bbc2-4756-bdc9-f9848eedbc8e","name":"Successful Revoke All - LoginID","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"loginid\" : \"darragh.duffy@corehr.com\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 29 Mar 2018 08:03:00 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-000edc6d","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"b5a90a4b-1287-4b6c-928f-0fab2ee52e83"}],"id":"b99f36b5-ec39-41d0-a50b-7e1d29f9ff67","description":"<p>Provisioning facility allowing Core|Portal accounts to be provisioned. Core|Portal is the self service module within CoreHR. A employee may have a record in CoreHR, this does not automatically suggest same employee has access to self service features via CorePortal. In order to access CorePortal a self service account is required. This module provides a web service mechanism to provision an employee.</p>\n<p>In Summary provisioning provides ability to</p>\n<ul>\n<li>Determine accounts yet to be provisioned</li>\n<li>Determine accounts yet to be provisioned within X number of days (including future start dates)</li>\n<li>Provision a new account</li>\n<li>Provision a new account with privileges</li>\n<li>Update existing accounts privileges</li>\n<li>Add additional privilege to an account</li>\n<li>Set authentication Type in cases where a mix of Single Sign On, SAML and inApplicationPasswords exist</li>\n</ul>\n<p><strong>Contraints, Limitations &amp; Mandatory</strong></p>\n<p>Accounts to be provisioned simply indicates accounts (employees) not yet provisioned. These accounts must satisfy following criteria </p>\n<ul>\n<li>Active Employee Record</li>\n</ul>\n<p>indicates employees record must not have a date left.</p>\n<p>Do not assume logic applies indicating certain categories of employees are allowed access and others are not allowed. No other conditions are applied. Additional attributes are possible to add to the response to help an IDM provider make this decision, CoreHR will work with an IDM provider to best determine. </p>\n<p>CorePortal privileges can be assigned by the IDM using the privileges array (example below). Where an IDM can not determine privileges, this provisioning web service module integrates with the CoreHR user profile matrix, and in cases where this matrix is not configured the fall back is all users are granted a default access profile typically \"coreportal_employee\".</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001  Mandatory fields are missing</li>\n<li>400 / 002  Validation failed. If attempting to update use PATCH method</li>\n<li>400 / 003  Unexpected error, unable to provision account</li>\n<li>404 / 004 Validation failed. User account does not exist</li>\n<li>404 / 005 Validation failed. Account must first be provisioned, use POST method</li>\n<li>400 / 006  Validation failed. Invalid fields used</li>\n<li>400 / 007  Validation failed. Either user account does not exist or request data is invalid.</li>\n<li>400 / 008  Validation failed. Authtype must be either LDAP or inApplicationPassword. If choosing inApplicationPassword a password is required</li>\n<li>400 / 009 Validation failed. Supplied password has not passed password</li>\n<li><ul>\n<li>400 / 010 Validation failed, type is mandatory (must email or all), and id should be populated when type is email, when type is all no id should be provided. The JSON keys are case sensitve, type and id should be lower case.</li>\n</ul>\n</li>\n<li><ul>\n<li>404 / 011 Nothing found for this email address.</li>\n</ul>\n</li>\n</ul>\n","_postman_id":"b99f36b5-ec39-41d0-a50b-7e1d29f9ff67"},{"name":"Reference","item":[{"name":"/reference/","id":"13eb3ae3-0e3c-4fb4-88f2-5028bbb7d9e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/","description":"<p>Get a list of registered / whitelisted referene types. Tenant has an ability to define reference types available for creating / updating. A tenant may not allow all references to be updated or created, this base URI provides the list of valid reference types. In cases where server returns validation errors, refer to this list to confirm the reference type is whitelisted.</p>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter. </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2dbd95b6-c315-4ff7-9058-5ba594360f5b","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:32:48 GMT","name":"Date","description":""},{"key":"ETag","value":"\"c+fK0tVaqmJ9e4v3iAcjrkNwTm99RSdRJXXfABfFEcdajSFUsEcGTUC0aJFyIg7ll32J/RQTlDd4wRl99bLqZQ==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"ACCI\", \"description\" : \"ACCIDENT CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACCSEV\", \"description\" : \"Accident Severity Code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACDIS1\", \"description\" : \"Academic Discipline 1\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACDIS2\", \"description\" : \"Academic Discipline 2\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACSTAT\", \"description\" : \"Academic Staff Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACT\", \"description\" : \"Activity\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACTINV\", \"description\" : \"Workplace Activity Involved\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACTION\", \"description\" : \"Action\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ADDTYP\", \"description\" : \"Address Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ADMBY\", \"description\" : \"Training Administered By\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"AGERNG\", \"description\" : \"Age Range\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ALLCOD\", \"description\" : \"Allowance Code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"APP\", \"description\" : \"Appointment code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"APPR\", \"description\" : \"APPRAISAL CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"APPTYP\", \"description\" : \"Approval Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"AREA\", \"description\" : \"Area\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ASCAT\", \"description\" : \"Academic Staff Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ASPOSE\", \"description\" : \"Aspose Document Type Mapping\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"AWRD\", \"description\" : \"Pdp Recognition Awards\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"BCKWRK\", \"description\" : \"Back At Work Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"BEN\", \"description\" : \"BENEFIT CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"BUSNAT\", \"description\" : \"Business Nature Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CARPRF\", \"description\" : \"Test\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CATG\", \"description\" : \"Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CERT\", \"description\" : \"CERTIFICATE TYPE\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFATTY\", \"description\" : \"Conference Attendance Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFLEVL\", \"description\" : \"Conference Level\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFORGB\", \"description\" : \"Conference Organising Body\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFSTAT\", \"description\" : \"Conference Status\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFTYPE\", \"description\" : \"Conference Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CITZ\", \"description\" : \"Citizenship Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CLINAC\", \"description\" : \"Clinical Access\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CNTCOD\", \"description\" : \"Country\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COMCAT\", \"description\" : \"Employee Company Categories\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CONTRT\", \"description\" : \"Contract Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CONTYP\", \"description\" : \"Contact Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COST\", \"description\" : \"Cost centre\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COSTCL\", \"description\" : \"Cost Class\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COUNTY\", \"description\" : \"County Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CPCRT\", \"description\" : \"Crew Plan Rule Day Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CPNR\", \"description\" : \"Crew Plan Night Allowance Rule Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CRSLVL\", \"description\" : \"Qualification Level\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CRTYP\", \"description\" : \"Clinical Research Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CRYTP\", \"description\" : \"Clinical Research Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CSOI\", \"description\" : \"CSO\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DAYRTN\", \"description\" : \"Days to Return Codes (OccInj)\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DEPN\", \"description\" : \"DEPENDENTS\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DEPT\", \"description\" : \"Department\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DESC\", \"description\" : \"Description\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DISABL\", \"description\" : \"Disability Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DIV\", \"description\" : \"Division\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DIVER\", \"description\" : \"Diversity Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DOCTYP\", \"description\" : \"Document Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EDUC\", \"description\" : \"EDUCATION/SKILL CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EMPL\", \"description\" : \"EMPLOYMENT HISTORY\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EMPS\", \"description\" : \"Employment status\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ETHNIC\", \"description\" : \"Ethnicity\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EVTCAT\", \"description\" : \"Event Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EXCDVL\", \"description\" : \"Core Expense Code Validation\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EXPS\", \"description\" : \"Expenses\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EXTPER\", \"description\" : \"External Person Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FAMSTS\", \"description\" : \"Family Status Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FBGRP\", \"description\" : \"Flexible Benefit Groups\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FBLNK\", \"description\" : \"Flexible Benefit Links\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FECBCK\", \"description\" : \"FEC Background\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FECCLA\", \"description\" : \"FEC Classification\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FECTYP\", \"description\" : \"FEC Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FEES\", \"description\" : \"Fees\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FEMRPT\", \"description\" : \"FEM Report Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FIRE\", \"description\" : \"FIRE ZONE CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FIRPNT\", \"description\" : \"Fire Point\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FORM\", \"description\" : \"Form Name\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FTEHRS\", \"description\" : \"FTE Hour Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FUNDAG\", \"description\" : \"Funding Agency Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FUNDSC\", \"description\" : \"Funding Source\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FUNTYP\", \"description\" : \"Funding Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"GNDRID\", \"description\" : \"Gender Identity\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"GRIPID\", \"description\" : \"Group ID\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"GRPID\", \"description\" : \"Group ID\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HAZZ\", \"description\" : \"HAZZARD CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HONCON\", \"description\" : \"Honorary Contract\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HOUR\", \"description\" : \"Hours\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSASRC\", \"description\" : \"Health Safety Action Source\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSCON\", \"description\" : \"Health Safety Contractor\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSNT\", \"description\" : \"Health Safety Notice Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSPRI\", \"description\" : \"Health Safety Action Priority\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSSRC\", \"description\" : \"Health Safety Source Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSSTA\", \"description\" : \"Health Safety Action Status\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ILINCN\", \"description\" : \"Industry Nature of Contact\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ILINCT\", \"description\" : \"Industry Categories\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ILOC\", \"description\" : \"Input location\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INCVIO\", \"description\" : \"Incidents of Violence Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INDCAT\", \"description\" : \"Employee Industry Categories\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INJBOD\", \"description\" : \"Injured BOdy Part Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INJCAU\", \"description\" : \"Cause of Injury Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"JOBCAT\", \"description\" : \"Job Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"JOBCOD\", \"description\" : \"Job Code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"JOBS\", \"description\" : \"Job code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"LENTIM\", \"description\" : \"Length of Time\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"LEVEL\", \"description\" : \"Level Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"13eb3ae3-0e3c-4fb4-88f2-5028bbb7d9e7"},{"name":"/reference/type/:atype","id":"c86ff2bc-239c-4cbd-ac06-8875baaf3ccb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Returns a list of codes and descriptions for a reference type, a reference type could be <code>COST</code>, <code>DEPT</code> etc. Reference Types are typically upper case. As already noted reference types can be whitelisted by a tenant.</p>\n<p>For a full list of available reference types use /reference/</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"20962e11-1d70-4ec6-ac55-f5a16a8516d6","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:35:18 GMT","name":"Date","description":""},{"key":"ETag","value":"\"ZInz0RdXlDlkFr0RxOWVt0Xe8DrUJnBC2+V/aZmUKdeVao7Vnt+tTjTY7a88qxAW/95HgOuX3zxv4wgdqSdatg==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"COST\", \"code\": \"1\", \"description\": \"Cost Centre Web Services 1\"}\n,\n{\"type\":\"COST\", \"code\": \"10\", \"description\": \"Cost Centre Web Services 10\"}\n,\n{\"type\":\"COST\", \"code\": \"100A\", \"description\": \"Cost Centre Web Services 100A\"}\n,\n{\"type\":\"COST\", \"code\": \"111\", \"description\": \"Cost Centre Web Services 111\"}\n,\n{\"type\":\"COST\", \"code\": \"123456789\", \"description\": \"Cost Centre Web Services 123456789\"}\n,\n{\"type\":\"COST\", \"code\": \"149\", \"description\": \"Cost Centre Web Services 149\"}\n,\n{\"type\":\"COST\", \"code\": \"159\", \"description\": \"Cost Centre Web Services 159\"}\n,\n{\"type\":\"COST\", \"code\": \"20\", \"description\": \"Cost Centre Web Services 20\"}\n,\n{\"type\":\"COST\", \"code\": \"200A\", \"description\": \"Cost Centre Web Services 200A\"}\n,\n{\"type\":\"COST\", \"code\": \"21\", \"description\": \"Cost Centre Web Services 21\"}\n,\n{\"type\":\"COST\", \"code\": \"22\", \"description\": \"Cost Centre Web Services 22\"}\n,\n{\"type\":\"COST\", \"code\": \"222\", \"description\": \"Cost Centre Web Services 222\"}\n,\n{\"type\":\"COST\", \"code\": \"23\", \"description\": \"Cost Centre Web Services 23\"}\n,\n{\"type\":\"COST\", \"code\": \"24\", \"description\": \"Cost Centre Web Services 24\"}\n,\n{\"type\":\"COST\", \"code\": \"25\", \"description\": \"Cost Centre Web Services 25\"}\n,\n{\"type\":\"COST\", \"code\": \"26\", \"description\": \"Cost Centre Web Services 26\"}\n,\n{\"type\":\"COST\", \"code\": \"27\", \"description\": \"Cost Centre Web Services 27\"}\n,\n{\"type\":\"COST\", \"code\": \"28\", \"description\": \"Cost Centre Web Services 28\"}\n,\n{\"type\":\"COST\", \"code\": \"29\", \"description\": \"Cost Centre Web Services 29\"}\n,\n{\"type\":\"COST\", \"code\": \"2908100\", \"description\": \"Cost Centre Web Services 2908100\"}\n,\n{\"type\":\"COST\", \"code\": \"30\", \"description\": \"Cost Centre Web Services 30\"}\n,\n{\"type\":\"COST\", \"code\": \"300A\", \"description\": \"Cost Centre Web Services 300A\"}\n,\n{\"type\":\"COST\", \"code\": \"356\", \"description\": \"Cost Centre Web Services 356\"}\n,\n{\"type\":\"COST\", \"code\": \"39\", \"description\": \"Cost Centre Web Services 39\"}\n,\n{\"type\":\"COST\", \"code\": \"40\", \"description\": \"Cost Centre Web Services 40\"}\n,\n{\"type\":\"COST\", \"code\": \"451\", \"description\": \"Cost Centre Web Services 451\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC\", \"description\": \"Cost Centre Web Services ABC\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC001\", \"description\": \"Cost Centre Web Services ABC001\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC0010\", \"description\": \"Cost Centre Web Services ABC0010\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC003\", \"description\": \"Cost Centre Web Services ABC003\"}\n,\n{\"type\":\"COST\", \"code\": \"J12345\", \"description\": \"Cost Centre Web Services J12345\"}\n,\n{\"type\":\"COST\", \"code\": \"JKL333\", \"description\": \"Cost Centre Web Services JKL333\"}\n,\n{\"type\":\"COST\", \"code\": \"PROD\", \"description\": \"Cost Centre Web Services PROD\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 33,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/type/COST/\"\n      }\n    ]\n}\n"}],"_postman_id":"c86ff2bc-239c-4cbd-ac06-8875baaf3ccb"},{"name":"/reference/type/:atype/:code?","id":"e2829bf5-e271-473f-9015-8fd3c27773c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/7001","description":"<p>Returns an individual reference description associated with a reference type and code. A reference type could be <code>COST</code>, <code>DEPT</code> etc. Reference Types are typically upper case. As already noted reference types can be whitelisted by a tenant.</p>\n<p>For a full list of available reference types use /reference/</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference","type","DEPT","7001"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"25d94796-182a-4c4f-90f6-7735ca3edb1b","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/10"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:35:39 GMT","name":"Date","description":""},{"key":"ETag","value":"\"Q3jVQU2iTQ/v0g70PelGZKl9U6wG1LV/Ns7vRxFBtB7MUyXAAgUcC+nxdBtW/mQMcQPoQhSS1jjRtrAA4a7uzQ==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"COST\", \"code\": \"10\", \"description\": \"Cost Centre Web Services 10\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/type/COST/10\"\n      }\n    ]\n}\n"}],"_postman_id":"e2829bf5-e271-473f-9015-8fd3c27773c4"},{"name":"/reference/type/:atype","id":"0734c266-58d1-4315-a5fd-367fb712651e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Department One\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Add reference data based on the reference type, code and description. The reference type is expected in the URL, while the request body should include <code>code</code> and <code>description</code></p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9d5dec2a-e700-4ae4-8d38-757a14a67f28","name":"201 - Created - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Cost Centre One\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 04 Oct 2016 19:35:00 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"0734c266-58d1-4315-a5fd-367fb712651e"},{"name":"/reference/type/:atype","id":"cab405df-9c02-4b71-a14b-b45cc84da243","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Department One Data Updated\",\n\"active\" : \"Y\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Ability to update a description associated with an existing reference code / type combination. The reference type is expected in the URL, while the request body should include <code>code</code> and <code>description</code></p>\n<p>It is possible to also provide an <code>active</code> parameter, this parameter can also be provided via the request body must be either Y or N.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"114ccb22-5c33-45da-adad-31ff9c9faa68","name":"Inactive ","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Department One Data Updated\",\n\"active\" : \"N\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS","name":"Access-Control-Allow-Methods-Age","description":"Custom header"},{"key":"Access-Control-Max-Age","value":"600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Sep 2018 13:38:12 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"b0b00ddc-b960-4e37-b4b3-3d5446e9ff5e-000b4a10","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"2f53d700-9d47-4b52-8e43-a0a2c58fbd64","name":"201 - Created (Updated) - Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Cost Centre One Data Updated\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 04 Oct 2016 19:36:31 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"9823d877-f9ad-486f-876a-186dca171da4","name":"Active","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Department One Data Updated\",\n\"active\" : \"Y\"\n}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS","name":"Access-Control-Allow-Methods-Age","description":"Custom header"},{"key":"Access-Control-Max-Age","value":"600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Sep 2018 13:38:12 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"b0b00ddc-b960-4e37-b4b3-3d5446e9ff5e-000b4a10","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"cab405df-9c02-4b71-a14b-b45cc84da243"},{"name":"/reference/type/:atype","id":"b978aafe-b93a-4229-9c8e-9c72434c70aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"value\" : \"1\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Delete reference data based on the reference type, code. The reference type is expected in the URL, while the request body should include <code>code</code>.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b0dc76c1-3c6b-4e20-817f-706bbc5547a3","name":"200 - Success OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 11 Nov 2016 16:32:50 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"b978aafe-b93a-4229-9c8e-9c72434c70aa"}],"id":"02b759bd-2500-43c1-8dcc-d3aba550071e","description":"<p>Reference module provides ability to view, add and update reference related items for CoreHR e.g. Cost Centre, Department, Projects etc. </p>\n<p><strong>Contraints, Limitations &amp; Mandatory</strong></p>\n<p>The reference module is case senstive, no process converts the type provided into upper or lower case. You must ensure you have set the case correctly, otherwise no data will be returned. Within CoreHR reference types are typically uppercase.</p>\n<p>In most cases a type is mandatory. Following are some examples, for more detail review each URI and method below.</p>\n<p>For endpoint <code>/reference/type/aType/</code> aType is mandatory e.g. <code>/reference/type/COST/</code>. Another example <code>/reference/type/COST/1</code> will return Reference Type COST where the cost centre code is 1. For <code>/reference/types/</code> no type is required. </p>\n<p>Further information per method below.</p>\n<p><strong>Limitations</strong></p>\n<p>Description max length - 40 Characters</p>\n<p>Code max length - 13 Characters</p>\n<p><code>WRKGRP</code> only GETS are supported, POST, PATCH and DELETE are not supported.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001 Mandatory fields are missing</li>\n<li>400 / 002 Validation failed. If attempting to update use PATCH method</li>\n<li>404 / 003 Validation failed. Reference type does not exist</li>\n<li>400 / 004 Validation failed. Sanitization of data failed, ensure field lengths are correct</li>\n<li>400 / 005 Validation failed. Reference code does not exist. If attempting to add use POST method.</li>\n<li>400 / 006 Validation failed. Validation failed. Reference type and code do not exist.</li>\n<li>400 / 007 Validation failed. Validation failed. Active Indicator can only be  Y or N.</li>\n</ul>\n<p>Defined below are the endpoints, sample requests and responses. </p>\n","event":[{"listen":"prerequest","script":{"id":"b21841da-655d-45bb-85e7-4088b669f016","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8394b87b-f3d4-49ce-9279-7e9e8381791e","type":"text/javascript","exec":[""]}}],"_postman_id":"02b759bd-2500-43c1-8dcc-d3aba550071e"},{"name":"User Defined Fields","item":[{"name":"/udf/user/:udf_type","id":"c91b577a-8dcd-41e8-baa3-547b53f3f0dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer 9m1zDcUnJrxvkqTfEsTOfQ.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"\",\n    \"text2\": \"\",\n    \"text3\": \"\",\n    \"text4\": \"\",\n    \"text5\": \"\",\n    \"text6\": \"\",\n    \"text7\": \"\",\n    \"text8\": \"\",\n    \"text9\": \"\",\n    \"text10\": \"\",\n    \"text11\": \"\",\n    \"text12\": \"\",\n    \"date1\": \"14-AUG-2017\",\n    \"date2\": \"\",\n    \"user_code\": \"EE\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20","description":"<p><strong>Creating a new UDF Type Record for a user</strong></p>\n<p>Adding a new User record for a UDF Type requires the following fields. UDF Type code is mandatory and specified as part of the URL.</p>\n<p>The rest of the fields are provided as JSON in the request body. Un-used/empty fields should be left blank. Successful inserts results in a JSON Response object with success value of true. Also included in the JSON Response is the ws_id which is the unique Web Service ID that can be used to identify this specific record.</p>\n<p>Fields are sent in the JSON are as in the table below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personnel_no</td>\n<td>Character</td>\n<td>10</td>\n<td>Yes ¹</td>\n</tr>\n<tr>\n<td>appointment_id</td>\n<td>Character</td>\n<td>20</td>\n<td>Yes ¹</td>\n</tr>\n<tr>\n<td>user_code</td>\n<td>Character</td>\n<td>6</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date1</td>\n<td>Date ²</td>\n<td>11</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date2</td>\n<td>Date ²</td>\n<td>11</td>\n<td>No</td>\n</tr>\n<tr>\n<td>text1,text2...text12 ³</td>\n<td>Defined by type</td>\n<td>4000 ¬</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><p>¹ Either <code>personnel_no</code> OR <code>appointment_id</code> are mandatory.</p>\n<p>² Date1 and Date2 are input in the format DD-MON-RRRR.</p>\n<p>³ Text1 to Text12 must ALWAYS be provided. If the field is not being used for the UDF Type use a blank value string e.g. \"\".</p>\n<p>¬ Text1 to Text12 field requirements are defined by the UDF Type configuration in CoreHR. Text fields can be marked as mandatory/optional and of specific data types including: </p>\n<ol>\n<li>Text - to a maximum of 4000 characters long.</li>\n<li>Number - number values only</li>\n<li>Date required to be in the format DD-MON-YYYY.</li>\n<li>List - Based on the allowed list for the UDF Type as configured in CoreHR.</li>\n</ol>\n<p><strong>Response Object</strong>\nSample responses are shown to the right under different conditions.</p>\n<p>A response objects is always provided and within success will either be <code>true</code>. In which case as ws_id (unique web service identifier that allows us to refer back to this record). </p>\n<p>Alternatively, the success value can be <code>false</code> if this is the cause an errorCode and errorMessage are provided. Additional error details - if the error pertains to a specific value in the body - is provided in the validationError object. This will contain one or more JSON objects relating to each specific error. The param_name will contain the field the validation error relates to the field_name is the label of the field used in CoreHR and the <code>message</code> will contain a detailed explanation of what validation is failing.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code. These are shared by all these UDF endpoints and explained in the Error Codes section at the start of the UDF documentation.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","udf","user","AB20"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8289ab12-d6e2-4ce0-9f73-e24c8ccb764e","name":"3. Sanatization Fail Example","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer _QsnRadImZrbh8w9_4B6UA.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"1409000\",\n    \"appointment_id\": \"\",\n    \"text1\": \"27\",\n    \"text2\": \"24\",\n    \"text3\": \"31\",\n    \"text4\": \"28\",\n    \"text5\": \"27\",\n    \"text6\": \"30\",\n    \"text7\": \"28\",\n    \"text8\": \"25\",\n    \"text9\": \"29\",\n    \"text10\": \"28\",\n    \"text11\": \"24\",\n    \"text12\": \"29\",\n    \"date1\": \"\",\n    \"date2\": \"\",\n    \"user_code\": \"\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"close","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Fri, 11 Aug 2017 16:16:01 GMT","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"41431680-ec3d-4690-8100-5e5ec94a3c78-00002f6f","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[],"responseTime":null,"body":"\n\n      { \"Response\": {\n         \"success\"         : false,\n         \"errorCode\"       : \"998\",\n         \"errorMessage\"    : \"UDF Type validation errors. Review validationError object for more details of data errors for this UDF type.\",\n         \"validationError\"   : [\n\n  {\n    \"param_name\"   : \"text1\",\n    \"field_name\"   : \"COREHR 7600\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text2\",\n    \"field_name\"   : \"text2\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text3\",\n    \"field_name\"   : \"text3\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text4\",\n    \"field_name\"   : \"text4\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text5\",\n    \"field_name\"   : \"text5\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text6\",\n    \"field_name\"   : \"text6\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text7\",\n    \"field_name\"   : \"text7\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text8\",\n    \"field_name\"   : \"text8\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text9\",\n    \"field_name\"   : \"text9\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text10\",\n    \"field_name\"   : \"text10\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text11\",\n    \"field_name\"   : \"text11\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text12\",\n    \"field_name\"   : \"text12\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n]\n      }\n   }\n"},{"id":"a5c7ffd7-d368-4787-9902-f14d69a64c05","name":"4. User Code example to use pre-defined data in all text fields","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer 9m1zDcUnJrxvkqTfEsTOfQ.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"\",\n    \"text2\": \"\",\n    \"text3\": \"\",\n    \"text4\": \"\",\n    \"text5\": \"\",\n    \"text6\": \"\",\n    \"text7\": \"\",\n    \"text8\": \"\",\n    \"text9\": \"\",\n    \"text10\": \"\",\n    \"text11\": \"\",\n    \"text12\": \"\",\n    \"date1\": \"14-AUG-2017\",\n    \"date2\": \"\",\n    \"user_code\": \"EE\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"Keep-Alive","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Mon, 14 Aug 2017 12:10:39 GMT","description":""},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"f38c5093-1095-4e7e-be35-0074f4d4eb81-0000002c","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"ZtfR7qZUUleahU","key":"__zlcmid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"GA1.2.345263352.1459269949","key":"_ga"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"154209639.534d7e038246e171d1efdb1f4bc83822.1459269952833.1484837065141.1494406860445.32","key":"__hstc"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"534d7e038246e171d1efdb1f4bc83822","key":"hubspotutk"}],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true, \"ws_id\":\"2017081471563097\"}}\n"},{"id":"b4eae090-4782-4c5c-a484-10a77853362b","name":"1. Successful date fields example","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer _QsnRadImZrbh8w9_4B6UA.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"1409000\",\n    \"appointment_id\": \"\",\n    \"text1\": \"27-JAN-2017\",\n    \"text2\": \"24-FEB-2017\",\n    \"text3\": \"31-MAR-2017\",\n    \"text4\": \"28-APR-2017\",\n    \"text5\": \"27-MAY-2017\",\n    \"text6\": \"30-JUN-2017\",\n    \"text7\": \"28-JUL-2017\",\n    \"text8\": \"25-AUG-2017\",\n    \"text9\": \"29-SEP-2017\",\n    \"text10\": \"28-OCT-2017\",\n    \"text11\": \"24-NOV-2017\",\n    \"text12\": \"29-DEC-2017\",\n    \"date1\": \"\",\n    \"date2\": \"\",\n    \"user_code\": \"\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"Keep-Alive","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Fri, 11 Aug 2017 16:05:48 GMT","description":""},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"41431680-ec3d-4690-8100-5e5ec94a3c78-00002f6a","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true, \"ws_id\":\"2017081171563091\"}}\n"},{"id":"dca51563-4e92-4e81-8c65-ecf4a3b0e914","name":"2. Validation Fail","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer _QsnRadImZrbh8w9_4B6UA.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"1409000\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"27-JAN-2017\",\n    \"text2\": \"24-FEB-2017\",\n    \"text3\": \"31-MAR-2017\",\n    \"text4\": \"28-APR-2017\",\n    \"text5\": \"27-MAY-2017\",\n    \"text6\": \"30-JUN-2017\",\n    \"text7\": \"28-JUL-2017\",\n    \"text8\": \"25-AUG-2017\",\n    \"text9\": \"29-SEP-2017\",\n    \"text10\": \"28-OCT-2017\",\n    \"text11\": \"24-NOV-2017\",\n    \"text12\": \"29-DEC-2017\",\n    \"date1\": \"\",\n    \"date2\": \"\",\n    \"user_code\": \"\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"Keep-Alive","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Fri, 11 Aug 2017 16:14:20 GMT","description":""},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"41431680-ec3d-4690-8100-5e5ec94a3c78-00002f6d","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Provide either a personnel number or an Appointment ID. It is not possible to use both.\" }}\n"}],"_postman_id":"c91b577a-8dcd-41e8-baa3-547b53f3f0dd"},{"name":"/udf/user/:udf_type","id":"7326fab1-4245-451a-8190-d8108da463a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer 9m1zDcUnJrxvkqTfEsTOfQ.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"\",\n    \"text2\": \"\",\n    \"text3\": \"\",\n    \"text4\": \"\",\n    \"text5\": \"\",\n    \"text6\": \"\",\n    \"text7\": \"\",\n    \"text8\": \"\",\n    \"text9\": \"\",\n    \"text10\": \"\",\n    \"text11\": \"\",\n    \"text12\": \"\",\n    \"date1\": \"14-AUG-2017\",\n    \"date2\": \"\",\n    \"user_code\": \"EE\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20","description":"<p><strong>Updating existing UDF Type Record for a user</strong></p>\n<p>Updating a user record for a UDF Type uses the personnel_no/appoinment_id, date1, date2 and the udf_type to determine if the record is an update. i.e. If there is an existing record(s) with the same person/appointment and date1 and date2 then it is an update and the existing record(s) will be patched (updated) to the new values provided in the JSON code. UDF Type is of course mandatory and specified as part of the URL.</p>\n<p>The rest of the fields are provided as JSON in the request body. Un-used/empty fields should be left blank. Successful updates result in a JSON Response object with success value of true.</p>\n<p>Fields are sent in the JSON are as in the table below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personnel_no</td>\n<td>Character</td>\n<td>10</td>\n<td>Yes ¹</td>\n</tr>\n<tr>\n<td>appointment_id</td>\n<td>Character</td>\n<td>20</td>\n<td>Yes ¹</td>\n</tr>\n<tr>\n<td>user_code</td>\n<td>Character</td>\n<td>6</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date1</td>\n<td>Date ²</td>\n<td>11</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date2</td>\n<td>Date ²</td>\n<td>11</td>\n<td>No</td>\n</tr>\n<tr>\n<td>text1,text2...text12 ³</td>\n<td>Defined by type</td>\n<td>4000 ¬</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><p>¹ Either <code>personnel_no</code> OR <code>appointment_id</code> are mandatory.</p>\n<p>² Date1 and Date2 are input in the format DD-MON-RRRR.</p>\n<p>³ Text1 to Text12 must ALWAYS be provided. If the field is not being used for the UDF Type use a blank value string e.g. \"\".</p>\n<p>¬ Text1 to Text12 field requirements are defined by the UDF Type configuration in CoreHR. Text fields can be marked as mandatory/optional and of specific data types including: </p>\n<ol>\n<li>Text - to a maximum of 4000 characters long.</li>\n<li>Number - number values only</li>\n<li>Date required to be in the format DD-MON-YYYY.</li>\n<li>List - Based on the allowed list for the UDF Type as configured in CoreHR.</li>\n</ol>\n<p><strong>Response Object</strong>\nSample responses are shown to the right under different conditions.</p>\n<p>A response objects is always provided and within success will either be <code>true</code>. In which case as ws_id (unique web service identifier that allows us to refer back to this record). </p>\n<p>Alternatively, the success value can be <code>false</code> if this is the cause an errorCode and errorMessage are provided. Additional error details - if the error pertains to a specific value in the body - is provided in the validationError object. This will contain one or more JSON objects relating to each specific error. The param_name will contain the field the validation error relates to the field_name is the label of the field used in CoreHR and the <code>message</code> will contain a detailed explanation of what validation is failing.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code. These are shared by all these UDF endpoints and explained in the Error Codes section at the start of the UDF documentation.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","udf","user","AB20"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f10c6efa-5c2d-432d-86ac-80d39b61d104","name":"Successful update using User Code","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Bearer 0nsn4KtX5QlKF4_4q0gNcw.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"\",\n    \"text2\": \"\",\n    \"text3\": \"\",\n    \"text4\": \"\",\n    \"text5\": \"\",\n    \"text6\": \"\",\n    \"text7\": \"\",\n    \"text8\": \"\",\n    \"text9\": \"\",\n    \"text10\": \"\",\n    \"text11\": \"\",\n    \"text12\": \"\",\n    \"date1\": \"14-AUG-2017\",\n    \"date2\": \"\",\n    \"user_code\": \"EE\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"Keep-Alive","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Thu, 17 Aug 2017 15:13:29 GMT","description":""},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"e491ed87-4cb1-4174-9763-76bbe5667c2b-0000009c","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"ZtfR7qZUUleahU","key":"__zlcmid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"GA1.2.345263352.1459269949","key":"_ga"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"154209639.534d7e038246e171d1efdb1f4bc83822.1459269952833.1484837065141.1494406860445.32","key":"__hstc"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"534d7e038246e171d1efdb1f4bc83822","key":"hubspotutk"}],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"7326fab1-4245-451a-8190-d8108da463a7"},{"name":"/udf/user/","id":"2add095c-08f0-4e21-82d3-fc0c4338bd42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/","description":"<p>Web service to get the list of User Defined Field (UDF) records for a particular UDF Type. Mandatory search criteria include:</p>\n<ul>\n<li>udf_type - The UDF code.</li>\n<li>person - The CoreHR Personnel Number for whom records are to be retrieved.\nOptional criteria include:</li>\n<li>appointment_id - To search for details relating to a specific appointment.</li>\n<li>date1 - Commonly used as the Date From field.</li>\n<li>date2 - Commonly used as the Date To field.</li>\n</ul>\n<p>A get request can return many records depending on the criteria poveded and consequently the <code>ws_id</code> value pair is the unique identifier that can be used with other web services to update this specific record.</p>\n<p>Error Codes are documented at the start of the UDF documentation.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","udf","user",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0f784b82-9f13-48f5-abf1-28c18395f1dc","name":"Search using all citeria","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Bearer 8N7tv3Kwt2W5_i-B72dWew.."}],"url":{"raw":"{{url}}/ws/{{schema}}/{{version}}/udf/user/?udf_type=AB20&person=1409000&appointment_id=TS0011-2594&date1=01-JAN-2017&date2=31-DEC-2017","host":["{{url}}"],"path":["ws","{{schema}}","{{version}}","udf","user",""],"query":[{"key":"udf_type","value":"AB20"},{"key":"person","value":"1409000"},{"key":"appointment_id","value":"TS0011-2594"},{"key":"date1","value":"01-JAN-2017"},{"key":"date2","value":"31-DEC-2017"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"connection","key":"connection","value":"Keep-Alive","description":"Options that are desired for the connection"},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":"Custom header"},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":"The mime type of this content"},{"name":"date","key":"date","value":"Thu, 17 Aug 2017 14:27:44 GMT","description":"The date and time that the message was sent"},{"name":"etag","key":"etag","value":"\"MQgB6VKjaT8lHDgADQKxxd0zqZ1ssI3lKuh3MursJBsVKHrOsHcxUeOJWWw6Lq7KQJ4hi5sQMuu9orqF0glhNg==\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":"Custom header"},{"name":"server","key":"server","value":"Apache","description":"A name for the server"},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"e491ed87-4cb1-4174-9763-76bbe5667c2b-0000008c","description":"Custom header"},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":"Custom header"},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"ZtfR7qZUUleahU","key":"__zlcmid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"GA1.2.345263352.1459269949","key":"_ga"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"154209639.534d7e038246e171d1efdb1f4bc83822.1459269952833.1484837065141.1494406860445.32","key":"__hstc"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"534d7e038246e171d1efdb1f4bc83822","key":"hubspotutk"}],"responseTime":null,"body":"\n{ \"items\" : [\n{\"udf_type\":\"AB20\",\"person\": \"1409000\",\"appointment_id\": \"TS0011-2594\",\"ws_id\": \"2017081171563091\",\"user_code\": \"AB20\",\"date1\": \"01-JAN-2017\",\"date2\": \"31-DEC-2017\",\"text1\": \"27-JAN-2017\",\"text2\": \"24-FEB-2017\",\"text3\": \"31-MAR-2017\",\"text4\": \"28-APR-2017\",\"text5\": \"27-MAY-2017\",\"text6\": \"30-JUN-2017\",\"text7\": \"28-JUL-2017\",\"text8\": \"25-AUG-2017\",\"text9\": \"29-SEP-2017\",\"text10\": \"28-OCT-2017\",\"text11\": \"24-NOV-2017\",\"text12\": \"29-DEC-2017\",\"last_update\": \"17-AUG-2017 12:46:49\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/frame/corehr/v1/udf/user/\"\n      }\n    ]\n}\n"},{"id":"bb123a57-13ff-4de3-a1b6-ec00e88a9d8d","name":"Missing Person parameter","originalRequest":{"method":"GET","header":[{"key":"Authorization","name":"Authorization","value":"Bearer _E4Pl9nxSkcJFbic2dxD8w.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"connection","key":"connection","value":"close","description":"Options that are desired for the connection"},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":"Custom header"},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":"The mime type of this content"},{"name":"date","key":"date","value":"Thu, 17 Aug 2017 11:54:53 GMT","description":"The date and time that the message was sent"},{"name":"etag","key":"etag","value":"\"hu/EykO6P9EsmiOfI5hQk+9yi5r2AxYFcmeD8ppL8ujowI4GmtSfFHQi+xgzudcWmF0pxNbJHLHEWwepH2J8/A==\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"server","key":"server","value":"Apache","description":"A name for the server"},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"e491ed87-4cb1-4174-9763-76bbe5667c2b-00000044","description":"Custom header"},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":"Custom header"},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"ZtfR7qZUUleahU","key":"__zlcmid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"GA1.2.345263352.1459269949","key":"_ga"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"154209639.534d7e038246e171d1efdb1f4bc83822.1459269952833.1484837065141.1494406860445.32","key":"__hstc"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"534d7e038246e171d1efdb1f4bc83822","key":"hubspotutk"}],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"013\",\"errorMessage\" :\"Person is a mandatory field.\" }}\n"}],"_postman_id":"2add095c-08f0-4e21-82d3-fc0c4338bd42"}],"id":"9f97da23-c5d8-4f81-8613-c302121f1db4","description":"<p>The User Defined Fields (UDF) module provides ability to insert/update and view the UDF records for a CoreHR employee. </p>\n<p>The list of UDF Types available is as configured in Core Personnel in the User Defined Fields under the Employee option i.e. those UDF types that related to a specific employee/user.</p>\n<p>These UDF Types must also be white listed using the Security option in Portal to allow them to be called via this Web Service.</p>\n<p><strong>Constraints, Limitations and Validation</strong></p>\n<p>For all calls (insert/update/get) the personnel no. and the UDF Type code must be specified at a minimum. As previously mentioned the UDF Type must have been added to the whitelist to be accessed in any way.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>404 / 000  The UDF Type does not exist in Core as a valid UDF Type for an Employee/User.</li>\n<li>400 / 001  A Personnel Number or an Appointment ID must be provided.</li>\n<li>404 / 002  Provide <em>either</em> a personnel number <em>or</em> an Appointment ID. It is not possible to use both.</li>\n<li>404 / 003 There is no CoreHR personnel/user account associated with the personnel number provided.</li>\n<li>404 / 004 The Appointment ID is invalid.</li>\n<li>404 / 006 UDF Type with these details does not exist for user, consider using POST to create.</li>\n<li>404 / 007 This UDF Type is not whitelisted for web services.</li>\n<li>400 / 008 When using User Reference Data - by specifying a user_code - then do  <em>not</em>  provide values in parameters text1 to text12 i.e. pass in empty values in text1..text12.</li>\n<li>404 / 009 This User Reference Data - as specified by the user_code - is not a a valid User Code for this UDF Type.</li>\n<li>404 / 010 There is no UDF record of this type for this person with these details to update. Use POST if you want to insert a record.</li>\n<li>400 / 011 Date1 field when used must be provided in the date format DD-MON-YYY.</li>\n<li>400 / 012 Date2 field when used must be provided in the date format DD-MON-YYY.</li>\n<li>400 / 013 Person is a mandatory field in this context.</li>\n<li>400 / 014 UDF Type is a mandatory field in this context.</li>\n</ul>\n","_postman_id":"9f97da23-c5d8-4f81-8613-c302121f1db4"},{"name":"Position","item":[{"name":"Profile","item":[{"name":"All","item":[{"name":"/position/profile/all","id":"b0bd4aec-08cb-4516-b22d-d2d9fdf11dcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/all","description":"<p>This service returns all position profiles, and is ordered by post number</p>\n<p><strong>Parameters</strong></p>\n<p>None</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li>postNumber</li>\n</ul>\n<p>A unique identifier associated with the position profile.</p>\n<ul>\n<li>postType</li>\n</ul>\n<p> Provides information about the type of post e.g. permanent, part time, trainee, contractor etc. For associated descriptions use the Reference Module with the reference type <code>EMPS</code>. This attribute is available from <strong>CoreHR 26.0.6</strong> and is not available in older versions.</p>\n<ul>\n<li>category</li>\n</ul>\n<p> Categorises the position / post based on an organisations requirements. E.g. Categorising employees who are entitled to additional levels of annual leave. For associated descriptions use the Reference Module with the reference type <code>CATG</code>.</p>\n<ul>\n<li><p>subCategory</p>\n<p>Typically used to further break down the Category. For associated descriptions use the Reference Module with the reference type <code>SUBC</code>.</p>\n</li>\n<li><p>startDate</p>\n</li>\n</ul>\n<p> The date this position / post profile is effective from  </p>\n<ul>\n<li>endDate</li>\n</ul>\n<p> The date this position / post profile is no longer effective</p>\n<ul>\n<li>FTE</li>\n</ul>\n<p> Full Time Eqivalence of the appointment between 0 and 1 (inclusive).</p>\n<ul>\n<li>payScale</li>\n</ul>\n<p> This is the \"scale\" related to salary information which is associated with the appointment. This attribute is also referred to as 'PositionCode' and 'Grade'. Note: if the requirement is to determine an individuals exact Grade use the /person/salary/ web service instead.</p>\n<ul>\n<li>postTileCode</li>\n</ul>\n<p> A code that represents the description of the position / post profile. For associated descriptions use the Reference Module with the reference type <code>POSTTL</code>.</p>\n<ul>\n<li>Hierarchy / Structure Related - explains where the appointment fits within an organisation, not all of these fields will be populated. The number of fields populated depend on the the configuration of the organisation structure. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</li>\n</ul>\n<ul>\n<li><p><code>structureCode</code> - ability to map back to the Organisation Hierarchy end point /organisation</p>\n</li>\n<li><p><code>company</code> - Used to indicate the company / organisation on the structure of where the person's appointment sits. This is usually the highest level of the organisation. For associated descriptions use the Reference Module with the reference type <code>ORGZ</code>.</p>\n</li>\n<li><p><code>managementUnit</code> - Used to indicate the management unit within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>MGTU</code>.</p>\n</li>\n<li><p><code>department</code> - Used to indicate the department within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DEPT</code>.</p>\n</li>\n<li><p><code>costCentre</code> - The cost centre associated with this appointment. For associated descriptions use the Reference Module with the reference type <code>COST</code>.</p>\n</li>\n<li><p><code>division</code> - Used to indicate the division within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DIV</code>.</p>\n</li>\n<li><p><code>location</code> - Used to indicate the location within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>LOC</code>.</p>\n</li>\n<li><p><code>workGroup</code> - Used to indicate the workGroup within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>WRKGRP</code>.</p>\n</li>\n<li><p><code>user1</code> .. <code>user5</code> - Additional customized fields, how these are mapped and defined refer to the web service /organisation, using the provided structure code.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","position","profile","all"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4b62309b-2f3e-4d45-816e-7bcc82174f2a","name":"All Position Profile","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Nov 2018 13:17:09 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-001db0a3"},{"key":"ETag","value":"\"F2NjN38vOKmHnpcTR/y0BeNwX+2SfIlO1oF0Ttnx6pteEYbI07l0J1rn7gKnX2VJnJvQz1k0uVsZtLvl/7OvuQ==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"items\": [\n        {\n            \"postNumber\": \"502240\",\n            \"postType\": \"CT\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"2\",\n            \"postTitle\": \"JXXXXX\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1005\",\n                \"department\": \"6109\",\n                \"costCentre\": \"X999999\",\n                \"division\": \"\",\n                \"location\": \"3100\",\n                \"workGroup\": \"W00240\",\n                \"user1\": \"1105\",\n                \"user2\": \"1205\",\n                \"user3\": \"1505\",\n                \"user4\": \"2026\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502241\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"20170620\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00008\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502242\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"599\",\n            \"postTitle\": \"J00521\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502243\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502244\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502245\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502246\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1002\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502247\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502248\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00221\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502249\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"0006\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"199\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00930\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"9093\",\n                \"costCentre\": \"TP72243\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"H00094\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"9584\"\n            }\n        },\n        {\n            \"postNumber\": \"502250\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502251\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00203\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502252\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00531\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502253\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00128\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502254\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00937\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502255\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00123\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502256\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00219\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502257\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00938\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502258\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00917\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502259\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00939\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502260\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00940\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502261\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00941\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502262\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00904\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502263\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00336\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502264\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00695\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502265\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00882\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502266\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502267\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00216\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502268\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502269\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502270\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00942\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502271\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00943\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502272\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00944\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502273\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00945\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502274\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00557\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502275\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00946\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502276\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00399\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502277\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00330\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1020\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502278\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00947\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502279\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00948\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502280\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00949\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502281\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00950\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502282\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00951\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502283\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00436\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502284\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00952\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502285\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00953\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502286\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00954\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502287\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00955\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502288\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00956\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502289\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00957\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502290\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00958\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502291\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00098\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502292\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00096\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502293\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00204\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502294\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502295\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502298\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19900101\",\n            \"endDate\": \"\",\n            \"payScale\": \"99\",\n            \"FTE\": \"1\",\n            \"postTitle\": \"J00003\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502299\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00268\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502300\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510901\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00026\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1003\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502301\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00969\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502302\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00035\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1024\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502303\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00970\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502304\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00971\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502305\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00876\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502306\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00973\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502307\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502308\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502309\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00004\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502310\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19500101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00364\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502311\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00156\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1022\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502312\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502313\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00063\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502314\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00107\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502315\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502316\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00972\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502317\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00974\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502318\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00975\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502319\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00129\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502320\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502321\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502322\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502323\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00449\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502324\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00484\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502325\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00197\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502326\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00083\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502327\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00061\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502328\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502329\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00020\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502330\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00377\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502331\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00976\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502332\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00977\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502333\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00978\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502334\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00979\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502335\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00980\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502336\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00981\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502337\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00982\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502338\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00983\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502339\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00984\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502340\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00985\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502341\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00986\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 100,\n    \"hasMore\": true,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/all\"\n        },\n        {\n            \"rel\": \"next\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/all?offsetby=100\"\n        }\n    ]\n}"},{"id":"8924bcb4-f6c7-45d1-9b7a-4678dab3e5da","name":"Invalid Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/59900000"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 04 May 2018 16:32:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"1Qx3t/UWz3zTKKOdm3LSBjOnLatPFQy7Gnt5gD0G3W5W8oGPsmp8cyKFHANwuCZSKAfHsUFZkc5uObhPEvTmnQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"c56341ae-8040-4020-94cb-a0059cf71b63-00045009","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Post Number has a maximum length of 6\" }}\n"},{"id":"f9363162-f698-43e7-a03b-2b4d7ecf2f55","name":"Invalid Number ","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/5990-"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 04 May 2018 16:31:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"0FoqxLKU/Q+B00fZAzIsL22Bh8+Zs44U0qVCWudFEc81asczNAF9K3AeUwxZmYek20y3sdnxLVFGPq0gKBgJ4w==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"c56341ae-8040-4020-94cb-a0059cf71b63-00044fd3","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"003\",\"errorMessage\" :\"Validation failed. Post Number should be a number\" }}\n"}],"_postman_id":"b0bd4aec-08cb-4516-b22d-d2d9fdf11dcc"}],"id":"1f7ad4db-6c79-4bd4-9ff3-b129172050c4","_postman_id":"1f7ad4db-6c79-4bd4-9ff3-b129172050c4","description":""},{"name":"Active","item":[{"name":"/position/profile/active/:date?","id":"d5a8a7ff-5ee0-4d82-afa6-4e20b8fd9e40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/active/","description":"<p>This service returns only active position profiles, and is ordered by post number. An active position profile is based on the start and end dates of the position profile. Leaving the date parameter blank will return the current active appointments as of 'today'. Provide a date if the requirement is to determine active position profiles as of a specific date. An appointment with a start date &gt;= today and a dormant date &lt;= today is considered active. When the dormant date is not set for an appointment then it is  active if the start date is &gt;= today.</p>\n<p><strong>Parameters</strong></p>\n<p>date : format YYYYMMDD</p>\n<p>Mandatory : No</p>\n<p>When blank, the service returns active appointments as of 'today'.</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li>postNumber</li>\n</ul>\n<p>A unique identifier associated with the position profile.</p>\n<ul>\n<li>postType</li>\n</ul>\n<p> Provides information about the type of post e.g. permanent, part time, trainee, contractor etc. For associated descriptions use the Reference Module with the reference type <code>EMPS</code>. This attribute is available from <strong>CoreHR 26.0.6</strong> and is not available in older versions.</p>\n<ul>\n<li>category</li>\n</ul>\n<p> Categorises the position / post based on an organisations requirements. E.g. Categorising employees who are entitled to additional levels of annual leave. For associated descriptions use the Reference Module with the reference type <code>CATG</code>.</p>\n<ul>\n<li><p>subCategory</p>\n<p>Typically used to further break down the Category. For associated descriptions use the Reference Module with the reference type <code>SUBC</code>.</p>\n</li>\n<li><p>startDate</p>\n</li>\n</ul>\n<p> The date this position / post profile is effective from  </p>\n<ul>\n<li>endDate</li>\n</ul>\n<p> The date this position / post profile is no longer effective</p>\n<ul>\n<li>FTE</li>\n</ul>\n<p> Full Time Eqivalence of the appointment between 0 and 1 (inclusive).</p>\n<ul>\n<li>payScale</li>\n</ul>\n<p> This is the \"scale\" related to salary information which is associated with the appointment. This attribute is also referred to as 'PositionCode' and 'Grade'. Note: if the requirement is to determine an individuals exact Grade use the /person/salary/ web service instead.</p>\n<ul>\n<li>postTileCode</li>\n</ul>\n<p> A code that represents the description of the position / post profile. For associated descriptions use the Reference Module with the reference type <code>POSTTL</code>.</p>\n<ul>\n<li>Hierarchy / Structure Related - explains where the appointment fits within an organisation, not all of these fields will be populated. The number of fields populated depend on the the configuration of the organisation structure. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</li>\n</ul>\n<ul>\n<li><p><code>structureCode</code> - ability to map back to the Organisation Hierarchy end point /organisation</p>\n</li>\n<li><p><code>company</code> - Used to indicate the company / organisation on the structure of where the person's appointment sits. This is usually the highest level of the organisation. For associated descriptions use the Reference Module with the reference type <code>ORGZ</code>.</p>\n</li>\n<li><p><code>managementUnit</code> - Used to indicate the management unit within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>MGTU</code>.</p>\n</li>\n<li><p><code>department</code> - Used to indicate the department within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DEPT</code>.</p>\n</li>\n<li><p><code>costCentre</code> - The cost centre associated with this appointment. For associated descriptions use the Reference Module with the reference type <code>COST</code>.</p>\n</li>\n<li><p><code>division</code> - Used to indicate the division within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DIV</code>.</p>\n</li>\n<li><p><code>location</code> - Used to indicate the location within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>LOC</code>.</p>\n</li>\n<li><p><code>workGroup</code> - Used to indicate the workGroup within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>WRKGRP</code>.</p>\n</li>\n<li><p><code>user1</code> .. <code>user5</code> - Additional customized fields, how these are mapped and defined refer to the web service /organisation, using the provided structure code.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","position","profile","active",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3cd6a4bd-d2a3-4413-ac22-6116570c7752","name":"Active Positions","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/active/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Nov 2018 13:17:42 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-001db211"},{"key":"ETag","value":"\"W+TMIkbENEkqD21wYwQcem0AYCpyXfldiK5yYujziZXlU0JGF86PWZWQJE3OPx1t8sl743PO79f6j0BlcuKaDg==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"items\": [\n        {\n            \"postNumber\": \"502240\",\n            \"postType\": \"CT\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"2\",\n            \"postTitle\": \"JXXXXX\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1005\",\n                \"department\": \"6109\",\n                \"costCentre\": \"X999999\",\n                \"division\": \"\",\n                \"location\": \"3100\",\n                \"workGroup\": \"W00240\",\n                \"user1\": \"1105\",\n                \"user2\": \"1205\",\n                \"user3\": \"1505\",\n                \"user4\": \"2026\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502242\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"599\",\n            \"postTitle\": \"J00521\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502243\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502244\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502245\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502246\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1002\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502247\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502248\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00221\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502249\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"0006\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"199\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00930\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"9093\",\n                \"costCentre\": \"TP72243\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"H00094\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"9584\"\n            }\n        },\n        {\n            \"postNumber\": \"502250\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502251\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00203\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502252\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00531\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502253\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00128\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502254\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00937\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502255\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00123\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502256\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00219\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502257\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00938\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502258\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00917\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502259\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00939\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502260\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00940\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502261\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00941\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502262\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00904\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502263\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00336\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502264\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00695\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502265\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00882\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502266\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502267\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00216\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502268\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502269\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502270\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00942\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502271\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00943\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502272\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00944\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502273\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00945\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502274\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00557\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502275\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00946\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502276\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00399\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502277\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00330\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1020\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502278\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00947\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502279\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00948\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502280\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00949\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502281\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00950\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502282\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00951\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502283\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00436\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502284\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00952\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502285\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00953\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502286\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00954\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502287\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00955\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502288\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00956\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502289\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00957\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502290\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00958\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502291\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00098\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502292\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00096\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502293\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00204\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502294\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502295\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502298\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19900101\",\n            \"endDate\": \"\",\n            \"payScale\": \"99\",\n            \"FTE\": \"1\",\n            \"postTitle\": \"J00003\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502299\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00268\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502300\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510901\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00026\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1003\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502301\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00969\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502302\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00035\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1024\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502303\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00970\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502304\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00971\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502305\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00876\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502306\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00973\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502307\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502308\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502309\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00004\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502310\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19500101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00364\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502311\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00156\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1022\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502312\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502313\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00063\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502314\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00107\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502315\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502316\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00972\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502317\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00974\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502318\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00975\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502319\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00129\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502320\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502321\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502322\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502323\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00449\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502324\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00484\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502325\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00197\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502326\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00083\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502327\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00061\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502328\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502329\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00020\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502330\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00377\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502331\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00976\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502332\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00977\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502333\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00978\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502334\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00979\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502335\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00980\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502336\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00981\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502337\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00982\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502338\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00983\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502339\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00984\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502340\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00985\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502341\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00986\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502342\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00986\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 100,\n    \"hasMore\": true,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/active/\"\n        },\n        {\n            \"rel\": \"next\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/active/?offsetby=100\"\n        }\n    ]\n}"},{"id":"ca580a32-5f9e-4665-804c-78d990826b93","name":"Active Positions Based on a Date-","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/active/20180101"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Nov 2018 13:18:26 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-001db393"},{"key":"ETag","value":"\"IxXtYLWysy45I5hwfOED38zBxHTvrufCmFDE8qkgq3hGx6UcXuTM8BVcJgIuNFJGhsS5rT/6ue8FzfNKLhHnNQ==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"items\": [\n        {\n            \"postNumber\": \"502240\",\n            \"postType\": \"CT\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"2\",\n            \"postTitle\": \"JXXXXX\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1005\",\n                \"department\": \"6109\",\n                \"costCentre\": \"X999999\",\n                \"division\": \"\",\n                \"location\": \"3100\",\n                \"workGroup\": \"W00240\",\n                \"user1\": \"1105\",\n                \"user2\": \"1205\",\n                \"user3\": \"1505\",\n                \"user4\": \"2026\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502242\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"599\",\n            \"postTitle\": \"J00521\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502243\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502244\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502245\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502246\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00036\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1002\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502247\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1007\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502248\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00221\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502249\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"0006\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"199\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00930\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"9093\",\n                \"costCentre\": \"TP72243\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"H00094\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"9584\"\n            }\n        },\n        {\n            \"postNumber\": \"502250\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502251\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00203\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502252\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00531\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502253\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00128\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502254\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00937\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502255\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00123\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502256\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00219\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502257\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00938\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502258\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00917\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502259\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00939\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502260\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00940\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502261\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00941\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502262\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160501\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00904\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502263\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00336\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502264\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00695\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502265\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00882\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502266\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00002\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502267\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00216\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502268\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160601\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00936\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1000\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502269\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00479\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502270\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00942\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502271\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00943\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502272\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00944\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502273\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00945\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502274\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00557\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502275\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00946\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502276\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00399\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502277\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00330\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1020\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502278\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00947\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502279\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00948\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502280\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160701\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00949\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502281\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00950\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502282\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00951\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502283\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00436\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502284\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00952\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502285\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00953\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502286\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00954\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502287\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00955\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502288\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00956\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502289\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00957\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502290\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00958\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502291\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00098\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502292\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00096\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502293\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00204\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502294\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502295\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160801\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00968\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502298\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19900101\",\n            \"endDate\": \"\",\n            \"payScale\": \"99\",\n            \"FTE\": \"1\",\n            \"postTitle\": \"J00003\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502299\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00268\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502300\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510901\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00026\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1003\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502301\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00969\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502302\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00035\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1024\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502303\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00970\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502304\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00971\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502305\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00876\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502306\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00973\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502307\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502308\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502309\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00004\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502310\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19500101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00364\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502311\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00156\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1022\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502312\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502313\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00063\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502314\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00107\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502315\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502316\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00972\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502317\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00974\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502318\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00975\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502319\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00129\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502320\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00243\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502321\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00466\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502322\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00140\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502323\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00449\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502324\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00484\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502325\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00197\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502326\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00083\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502327\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00061\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502328\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00039\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502329\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20161001\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00020\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502330\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00377\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502331\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00976\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1034\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502332\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00977\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1031\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502333\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00978\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502334\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00979\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1026\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502335\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00980\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502336\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00981\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502337\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00982\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502338\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00983\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502339\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00984\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1025\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502340\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00985\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1027\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502341\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00986\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1023\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        },\n        {\n            \"postNumber\": \"502342\",\n            \"postType\": \"P\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"19510101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"999\",\n            \"postTitle\": \"J00986\",\n            \"hierarchy\": {\n                \"structureCode\": \"5\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1029\",\n                \"department\": \"\",\n                \"costCentre\": \"\",\n                \"division\": \"\",\n                \"location\": \"\",\n                \"workGroup\": \"\",\n                \"user1\": \"\",\n                \"user2\": \"\",\n                \"user3\": \"\",\n                \"user4\": \"\",\n                \"user5\": \"\"\n            }\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 100,\n    \"hasMore\": true,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/active/20180101\"\n        },\n        {\n            \"rel\": \"next\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/active/20180101?offsetby=100\"\n        }\n    ]\n}"}],"_postman_id":"d5a8a7ff-5ee0-4d82-afa6-4e20b8fd9e40"}],"id":"addb1b50-4f1e-4319-90b3-7fe401286033","_postman_id":"addb1b50-4f1e-4319-90b3-7fe401286033","description":""},{"name":"Future","item":[{"name":"/position/profile/future","id":"4cef876b-b36f-4524-894b-2accbbbe4efc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/future","description":"<p>This service returns only future position profiles, and is ordered by post number. A future position profile is based on the start of the position profile, and the start must be greater than 'today'.</p>\n<p><strong>Parameters</strong></p>\n<p>None</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li>postNumber</li>\n</ul>\n<p>A unique identifier associated with the position profile.</p>\n<ul>\n<li>postType</li>\n</ul>\n<p> Provides information about the type of post e.g. permanent, part time, trainee, contractor etc. For associated descriptions use the Reference Module with the reference type <code>EMPS</code>. This attribute is available from <strong>CoreHR 26.0.6</strong> and is not available in older versions.</p>\n<ul>\n<li>category</li>\n</ul>\n<p> Categorises the position / post based on an organisations requirements. E.g. Categorising employees who are entitled to additional levels of annual leave. For associated descriptions use the Reference Module with the reference type <code>CATG</code>.</p>\n<ul>\n<li><p>subCategory</p>\n<p>Typically used to further break down the Category. For associated descriptions use the Reference Module with the reference type <code>SUBC</code>.</p>\n</li>\n<li><p>startDate</p>\n</li>\n</ul>\n<p> The date this position / post profile is effective from  </p>\n<ul>\n<li>endDate</li>\n</ul>\n<p> The date this position / post profile is no longer effective</p>\n<ul>\n<li>FTE</li>\n</ul>\n<p> Full Time Eqivalence of the appointment between 0 and 1 (inclusive).</p>\n<ul>\n<li>payScale</li>\n</ul>\n<p> This is the \"scale\" related to salary information which is associated with the appointment. This attribute is also referred to as 'PositionCode' and 'Grade'. Note: if the requirement is to determine an individuals exact Grade use the /person/salary/ web service instead.</p>\n<ul>\n<li>postTileCode</li>\n</ul>\n<p> A code that represents the description of the position / post profile. For associated descriptions use the Reference Module with the reference type <code>POSTTL</code>.</p>\n<ul>\n<li>Hierarchy / Structure Related - explains where the appointment fits within an organisation, not all of these fields will be populated. The number of fields populated depend on the the configuration of the organisation structure. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</li>\n</ul>\n<ul>\n<li><p><code>structureCode</code> - ability to map back to the Organisation Hierarchy end point /organisation</p>\n</li>\n<li><p><code>company</code> - Used to indicate the company / organisation on the structure of where the person's appointment sits. This is usually the highest level of the organisation. For associated descriptions use the Reference Module with the reference type <code>ORGZ</code>.</p>\n</li>\n<li><p><code>managementUnit</code> - Used to indicate the management unit within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>MGTU</code>.</p>\n</li>\n<li><p><code>department</code> - Used to indicate the department within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DEPT</code>.</p>\n</li>\n<li><p><code>costCentre</code> - The cost centre associated with this appointment. For associated descriptions use the Reference Module with the reference type <code>COST</code>.</p>\n</li>\n<li><p><code>division</code> - Used to indicate the division within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DIV</code>.</p>\n</li>\n<li><p><code>location</code> - Used to indicate the location within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>LOC</code>.</p>\n</li>\n<li><p><code>workGroup</code> - Used to indicate the workGroup within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>WRKGRP</code>.</p>\n</li>\n<li><p><code>user1</code> .. <code>user5</code> - Additional customized fields, how these are mapped and defined refer to the web service /organisation, using the provided structure code.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","position","profile","future"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6855e072-03e6-4e3d-8a8d-6a5ae111b101","name":"Future Profile","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/future"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS","name":"Access-Control-Allow-Methods-Age","description":"Custom header"},{"key":"Access-Control-Max-Age","value":"600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 13 Sep 2018 16:17:17 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"LXCQMwx6BN3ojpPN+GKOV0EFa8ZGOEZZioQvIyhQFcTY9LwDW2FSe6WWJ0TqFgqBe07mMvsiFBNduuHYTBwXOA==-gzip\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"b0b00ddc-b960-4e37-b4b3-3d5446e9ff5e-00088aa6","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"postNumber\":\"502655\",\"category\":\"ST_P\",\"subCategory\":\"\",\"startDate\":\"20180914\",\"endDate\":\"\",\"payScale\":\"7800\",\"FTE\":\"1\",\"postTitle\":\"DF06\",\"hierarchy\" : {\"structureCode\":\"7800\",\"company\":\"7800\",\"managementUnit\":\"78041\",\"department\":\"KC02\",\"costCentre\":\"AB04\",\"division\":\"7002\",\"location\":\"3007\",\"workGroup\":\"7401\",\"user1\":\"1104\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"\"}}\n,\n{\"postNumber\":\"708415\",\"category\":\"\",\"subCategory\":\"\",\"startDate\":\"20180913\",\"endDate\":\"\",\"payScale\":\"7084\",\"FTE\":\"1\",\"postTitle\":\"708412\",\"hierarchy\" : {\"structureCode\":\"7084\",\"company\":\"7084\",\"managementUnit\":\"8441\",\"department\":\"8403\",\"costCentre\":\"\",\"division\":\"\",\"location\":\"\",\"workGroup\":\"\",\"user1\":\"8414\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"\"}}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/future\"\n      }\n    ]\n}\n"}],"_postman_id":"4cef876b-b36f-4524-894b-2accbbbe4efc"}],"id":"efe0bb48-a78d-468e-bdf0-a77bab3b9b4f","_postman_id":"efe0bb48-a78d-468e-bdf0-a77bab3b9b4f","description":""},{"name":"/position/profile/:postNumber","id":"624603e6-59e9-4716-adb8-6e04895d3a4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/5990-","description":"<p>A post number can be obtained by using the /person/appointment/:personnelNo web service.</p>\n<p><strong>Parameters</strong></p>\n<p>requires personnelNumber, use the /filter/* endpoints to obtain personnelNumbers</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li>postNumber</li>\n</ul>\n<p>A unique identifier associated with the position profile.</p>\n<ul>\n<li>postType</li>\n</ul>\n<p> Provides information about the type of post e.g. permanent, part time, trainee, contractor etc. For associated descriptions use the Reference Module with the reference type <code>EMPS</code>. This attribute is available from <strong>CoreHR 26.0.6</strong> and is not available in older versions.</p>\n<ul>\n<li>category</li>\n</ul>\n<p> Categorises the position / post based on an organisations requirements. E.g. Categorising employees who are entitled to additional levels of annual leave. For associated descriptions use the Reference Module with the reference type <code>CATG</code>.</p>\n<ul>\n<li><p>subCategory</p>\n<p>Typically used to further break down the Category. For associated descriptions use the Reference Module with the reference type <code>SUBC</code>.</p>\n</li>\n<li><p>startDate</p>\n</li>\n</ul>\n<p> The date this position / post profile is effective from    </p>\n<ul>\n<li>endDate</li>\n</ul>\n<p> The date this position / post profile is no longer effective</p>\n<ul>\n<li>FTE</li>\n</ul>\n<p> Full Time Eqivalence of the appointment between 0 and 1 (inclusive).</p>\n<ul>\n<li>payScale</li>\n</ul>\n<p> This is the \"scale\" related to salary information which is associated with the appointment. This attribute is also referred to as 'PositionCode' and 'Grade'. Note: if the requirement is to determine an individuals exact Grade use the /person/salary/ web service instead.</p>\n<ul>\n<li>postTileCode</li>\n</ul>\n<p> A code that represents the description of the position / post profile. For associated descriptions use the Reference Module with the reference type <code>POSTTL</code>.</p>\n<ul>\n<li>Hierarchy / Structure Related - explains where the appointment fits within an organisation, not all of these fields will be populated. The number of fields populated depend on the the configuration of the organisation structure. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</li>\n</ul>\n<ul>\n<li><p><code>structureCode</code> - ability to map back to the Organisation Hierarchy end point /organisation</p>\n</li>\n<li><p><code>company</code> - Used to indicate the company / organisation on the structure of where the person's appointment sits. This is usually the highest level of the organisation. For associated descriptions use the Reference Module with the reference type <code>ORGZ</code>.</p>\n</li>\n<li><p><code>managementUnit</code> - Used to indicate the management unit within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>MGTU</code>.</p>\n</li>\n<li><p><code>department</code> - Used to indicate the department within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DEPT</code>.</p>\n</li>\n<li><p><code>costCentre</code> - The cost centre associated with this appointment. For associated descriptions use the Reference Module with the reference type <code>COST</code>.</p>\n</li>\n<li><p><code>division</code> - Used to indicate the division within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DIV</code>.</p>\n</li>\n<li><p><code>location</code> - Used to indicate the location within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>LOC</code>.</p>\n</li>\n<li><p><code>workGroup</code> - Used to indicate the workGroup within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>WRKGRP</code>.</p>\n</li>\n<li><p><code>user1</code> .. <code>user5</code> - Additional customized fields, how these are mapped and defined refer to the web service /organisation, using the provided structure code.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","position","profile","5990-"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"478320a9-70c5-4041-9bc5-b8d4d6f075ad","name":"Position based on Post Number","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/502240"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 05 Nov 2018 13:16:46 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-001dafef"},{"key":"ETag","value":"\"JB8nmVvPB8sY9824/G/4Z3ofWoOB5O99wWk/Ud4Yg1/f+i5x9hga4zMpqrVv38vJ4CdVMkCbuKV6BmhyEnEOpA==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"items\": [\n        {\n            \"postNumber\": \"502240\",\n            \"postType\": \"CT\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"startDate\": \"20160101\",\n            \"endDate\": \"\",\n            \"payScale\": \"1\",\n            \"FTE\": \"2\",\n            \"postTitle\": \"JXXXXX\",\n            \"hierarchy\": {\n                \"structureCode\": \"4\",\n                \"company\": \"1\",\n                \"managementUnit\": \"1005\",\n                \"department\": \"6109\",\n                \"costCentre\": \"X999999\",\n                \"division\": \"\",\n                \"location\": \"3100\",\n                \"workGroup\": \"W00240\",\n                \"user1\": \"1105\",\n                \"user2\": \"1205\",\n                \"user3\": \"1505\",\n                \"user4\": \"2026\",\n                \"user5\": \"\"\n            }\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 1,\n    \"hasMore\": false,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/position/profile/502240\"\n        }\n    ]\n}"},{"id":"95d708d4-c2f9-4e5f-b71e-c515e9483bb5","name":"Invalid Number ","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/5990-"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 04 May 2018 16:31:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"0FoqxLKU/Q+B00fZAzIsL22Bh8+Zs44U0qVCWudFEc81asczNAF9K3AeUwxZmYek20y3sdnxLVFGPq0gKBgJ4w==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"c56341ae-8040-4020-94cb-a0059cf71b63-00044fd3","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"003\",\"errorMessage\" :\"Validation failed. Post Number should be a number\" }}\n"},{"id":"aed1d354-aec1-425d-940f-3ff48d592151","name":"Invalid Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/position/profile/59900000"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 04 May 2018 16:32:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"1Qx3t/UWz3zTKKOdm3LSBjOnLatPFQy7Gnt5gD0G3W5W8oGPsmp8cyKFHANwuCZSKAfHsUFZkc5uObhPEvTmnQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"c56341ae-8040-4020-94cb-a0059cf71b63-00045009","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Post Number has a maximum length of 6\" }}\n"}],"_postman_id":"624603e6-59e9-4716-adb8-6e04895d3a4b"}],"id":"8d3aade3-43a8-4a7e-ad53-b70196fb5e85","_postman_id":"8d3aade3-43a8-4a7e-ad53-b70196fb5e85","description":""}],"id":"1f17a875-e712-4e45-ab67-ab941eaa3047","description":"<p><strong>Position Module</strong></p>\n<p>The position module will retrieve position (aka post) profile information. This profile information is generally best described as a blueprint providing default information for appointments e.g. sets the cost centre, department, category information etc.</p>\n<p>Several options exist for this module:</p>\n<ul>\n<li><p>/position/profile/:postNumber</p>\n</li>\n<li><p>/position/profile/active</p>\n</li>\n<li><p>/position/profile/inactive</p>\n</li>\n<li><p>/position/profile/all</p>\n</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"b8ae7ef7-83a8-4dd5-a265-7ea8fbfd40ed","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8acbd71e-7b8c-4d06-9728-ce7a025e4b75","type":"text/javascript","exec":[""]}}],"_postman_id":"1f17a875-e712-4e45-ab67-ab941eaa3047"},{"name":"Filter","item":[{"name":"Active","item":[{"name":"/filter/active/:date?","id":"5e79b12a-2406-4247-bdc3-d20476049109","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/active/","description":"<p>Get all active employees, this will include employees who have a future leaving dates. </p>\n<p>By default only 100 active employees will be returned. In cases where you have a large employee base, set the pagesize filter via the URL. The max pagesize is 10,000 i.e it is possible to obtain an employee result set up to 10,000 employees. Setting the pagesize above this max threshold will result in only the default result set.</p>\n<ul>\n<li>Date\nan optional parameter, leaving this parameter blank, will simply return active employees as of 'today'. While providing a value for date (formated as YYYYMMDD) will return employees active for that specific date. Typically used to find employees active based on a specific historical date. It is therefore possible to obtain employees who have ceased employment.</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","active",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"06078dd0-a1fd-4352-9c5a-9a6c563e95e4","name":"Active Employee's default","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/active/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 13 Mar 2018 13:54:04 GMT","name":"Date","description":""},{"key":"ETag","value":"\"a3jV6vklutu03flmajzx8qS3OWWygg0tIsArMcn8GmM/O05zwDli+czs5I99Gb6pDydjeBpP9eQNJsBH9qIq4A==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-000a7a9e","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"000070\"\n,\n\"000071\"\n,\n\"000072\"\n,\n\"000073\"\n,\n\"000074\"\n,\n\"000075\"\n,\n\"000085\"\n,\n\"0003490\"\n,\n\"000368\"\n,\n\"0006771\"\n,\n\"000881\"\n,\n\"000882\"\n,\n\"000883\"\n,\n\"000885\"\n,\n\"000886\"\n,\n\"0012241\"\n,\n\"001234\"\n,\n\"0013640\"\n,\n\"0014302\"\n,\n\"0014395\"\n,\n\"0014618\"\n,\n\"0015860\"\n,\n\"0016983\"\n,\n\"0020136\"\n,\n\"0022675\"\n,\n\"0023643\"\n,\n\"002488\"\n,\n\"0025846\"\n,\n\"0026047\"\n,\n\"0026512\"\n,\n\"0028524\"\n,\n\"0029922\"\n,\n\"0031794\"\n,\n\"0032061\"\n,\n\"0034934\"\n,\n\"0036755\"\n,\n\"0043130\"\n,\n\"0044941\"\n,\n\"0045780\"\n,\n\"0046457\"\n,\n\"0047664\"\n,\n\"0047681\"\n,\n\"0049534\"\n,\n\"0051140\"\n,\n\"0051979\"\n,\n\"0052853\"\n,\n\"0057845\"\n,\n\"0061351\"\n,\n\"0061813\"\n,\n\"0062746\"\n,\n\"0066995\"\n,\n\"0068421\"\n,\n\"0068674\"\n,\n\"0069559\"\n,\n\"0070741\"\n,\n\"0070866\"\n,\n\"0071150\"\n,\n\"0071612\"\n,\n\"0072944\"\n,\n\"0073960\"\n,\n\"0074880\"\n,\n\"0075046\"\n,\n\"0079056\"\n,\n\"0079965\"\n,\n\"0081043\"\n,\n\"0082008\"\n,\n\"0084707\"\n,\n\"0085976\"\n,\n\"0087686\"\n,\n\"0088814\"\n,\n\"0088859\"\n,\n\"0090624\"\n,\n\"0090669\"\n,\n\"0091081\"\n,\n\"0091560\"\n,\n\"0092955\"\n,\n\"0093219\"\n,\n\"0096743\"\n,\n\"0097038\"\n,\n\"0098467\"\n,\n\"0098707\"\n,\n\"0098977\"\n,\n\"0100521\"\n,\n\"0101600\"\n,\n\"0102390\"\n,\n\"0102707\"\n,\n\"0102901\"\n,\n\"0102915\"\n,\n\"0103310\"\n,\n\"0103710\"\n,\n\"0105180\"\n,\n\"0106480\"\n,\n\"0107351\"\n,\n\"0107396\"\n,\n\"0107508\"\n,\n\"0108080\"\n,\n\"0109714\"\n,\n\"0109922\"\n,\n\"0110029\"\n,\n\"0110844\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/active/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/active/?offsetby=100\"\n      }\n     ]\n}\n"},{"id":"0c444e07-6d5b-4b67-892a-3fee5318ccc8","name":"Active Employees pagesize 5,000","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/active/?pagesize=5000","host":["{{url}}"],"path":["ws","{{tenant}}","{{schema}}","v1","filter","active",""],"query":[{"key":"pagesize","value":"5000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 13 Mar 2018 13:55:22 GMT","name":"Date","description":""},{"key":"ETag","value":"\"i8/UPtbcoA97afGWuKDcfzHWqdmhvpMGMCwEtvzWvYaXKlnw9JJ3tBR31PmWYNv1kcqwt9F26CqVRACmi8nA+w==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-000a7b95","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"000070\"\n,\n\"000071\"\n,\n\"000072\"\n,\n\"000073\"\n,\n\"000074\"\n,\n\"000075\"\n,\n\"000085\"\n,\n\"0003490\"\n,\n\"000368\"\n,\n\"0006771\"\n,\n\"000881\"\n,\n\"000882\"\n,\n\"000883\"\n,\n\"000885\"\n,\n\"000886\"\n,\n\"0012241\"\n,\n\"001234\"\n,\n\"0013640\"\n,\n\"0014302\"\n,\n\"0014395\"\n,\n\"0014618\"\n,\n\"0015860\"\n,\n\"0016983\"\n,\n\"0020136\"\n,\n\"0022675\"\n,\n\"0023643\"\n,\n\"002488\"\n,\n\"0025846\"\n,\n\"0026047\"\n,\n\"0026512\"\n,\n\"0028524\"\n,\n\"0029922\"\n,\n\"0031794\"\n,\n\"0032061\"\n,\n\"0034934\"\n,\n\"0036755\"\n,\n\"0043130\"\n,\n\"0044941\"\n,\n\"0045780\"\n,\n\"0046457\"\n,\n\"0047664\"\n,\n\"0047681\"\n,\n\"0049534\"\n,\n\"0051140\"\n,\n\"0051979\"\n,\n\"0052853\"\n,\n\"0057845\"\n,\n\"0061351\"\n,\n\"0061813\"\n,\n\"0062746\"\n,\n\"0066995\"\n,\n\"0068421\"\n,\n\"0068674\"\n,\n\"0069559\"\n,\n\"0070741\"\n,\n\"0070866\"\n,\n\"0071150\"\n,\n\"0071612\"\n,\n\"0072944\"\n,\n\"0073960\"\n,\n\"0074880\"\n,\n\"0075046\"\n,\n\"0079056\"\n,\n\"0079965\"\n,\n\"0081043\"\n,\n\"0082008\"\n,\n\"0084707\"\n,\n\"0085976\"\n,\n\"0087686\"\n,\n\"0088814\"\n,\n\"0088859\"\n,\n\"0090624\"\n,\n\"0090669\"\n,\n\"0091081\"\n,\n\"0091560\"\n,\n\"0092955\"\n,\n\"0093219\"\n,\n\"0096743\"\n,\n\"0097038\"\n,\n\"0098467\"\n,\n\"0098707\"\n,\n\"0098977\"\n,\n\"0100521\"\n,\n\"0101600\"\n,\n\"0102390\"\n,\n\"0102707\"\n,\n\"0102901\"\n,\n\"0102915\"\n,\n\"0103310\"\n,\n\"0103710\"\n,\n\"0105180\"\n,\n\"0106480\"\n,\n\"0107351\"\n,\n\"0107396\"\n,\n\"0107508\"\n,\n\"0108080\"\n,\n\"0109714\"\n,\n\"0109922\"\n,\n\"0110029\"\n,\n\"0110844\"\n,\n\"0111906\"\n,\n\"0112030\"\n,\n\"0112665\"\n,\n\"0112682\"\n,\n\"0114646\"\n,\n\"0114885\"\n,\n\"0115024\"\n,\n\"0118212\"\n,\n\"0119686\"\n,\n\"0123446\"\n,\n\"0123814\"\n,\n\"0124080\"\n,\n\"0127519\"\n,\n\"0128472\"\n,\n\"0129485\"\n,\n\"0130411\"\n,\n\"0131011\"\n,\n\"0131552\"\n,\n\"0133710\"\n,\n\"0136912\"\n,\n\"0136926\"\n,\n\"0142000\"\n,\n\"0142715\"\n,\n\"0142780\"\n,\n\"0145583\"\n,\n\"0145871\"\n,\n\"0147710\"\n,\n\"0148497\"\n,\n\"0148626\"\n,\n\"0149465\"\n,\n\"0150818\"\n,\n\"0153145\"\n,\n\"0157380\"\n,\n\"0161425\"\n,\n\"0161522\"\n,\n\"0164148\"\n,\n\"0168748\"\n,\n\"0171272\"\n,\n\"0172077\"\n,\n\"0178405\"\n,\n\"0180007\"\n,\n\"0180725\"\n,\n\"0183736\"\n,\n\"0184880\"\n,\n\"0186750\"\n,\n\"0197417\"\n,\n\"0197479\"\n,\n\"0199654\"\n,\n\"0200005\"\n,\n\"0200754\"\n,\n\"0201035\"\n,\n\"0201337\"\n,\n\"0201989\"\n,\n\"0202176\"\n,\n\"0202988\"\n,\n\"0203192\"\n,\n\"0203241\"\n,\n\"0203574\"\n,\n\"0205059\"\n,\n\"0205971\"\n,\n\"0206332\"\n,\n\"0206696\"\n,\n\"0206890\"\n,\n\"0207300\"\n,\n\"0207393\"\n,\n\"0207460\"\n,\n\"0208202\"\n,\n\"0208281\"\n,\n\"0208300\"\n,\n\"0208934\"\n,\n\"0210442\"\n,\n\"0211140\"\n,\n\"0212326\"\n,\n\"0213280\"\n,\n\"0213689\"\n,\n\"0215257\"\n,\n\"0215740\"\n,\n\"0215847\"\n,\n\"0215895\"\n,\n\"0216340\"\n,\n\"0216402\"\n,\n\"0216988\"\n,\n\"0217429\"\n,\n\"0218733\"\n,\n\"0219045\"\n,\n\"0219236\"\n,\n\"0219316\"\n,\n\"0220290\"\n,\n\"0220512\"\n,\n\"0220560\"\n,\n\"0223585\"\n,\n\"0223873\"\n,\n\"0225472\"\n,\n\"0225730\"\n,\n\"0225965\"\n,\n\"0227373\"\n,\n\"0228945\"\n,\n\"0228980\"\n,\n\"0230467\"\n,\n\"0230547\"\n,\n\"0230772\"\n,\n\"0230818\"\n,\n\"0231962\"\n,\n\"0232593\"\n,\n\"0233447\"\n,\n\"0233450\"\n,\n\"0233610\"\n,\n\"0234050\"\n,\n\"0234477\"\n,\n\"0234765\"\n,\n\"0235892\"\n,\n\"0236427\"\n,\n\"0238106\"\n,\n\"0238220\"\n,\n\"0238952\"\n,\n\"0239025\"\n,\n\"0239344\"\n,\n\"0240204\"\n,\n\"0241217\"\n,\n\"0241536\"\n,\n\"0241952\"\n,\n\"0243836\"\n,\n\"0244467\"\n,\n\"0244547\"\n,\n\"0244581\"\n,\n\"0244600\"\n,\n\"0246593\"\n,\n\"0247829\"\n,\n\"0248893\"\n,\n\"0249508\"\n,\n\"0250176\"\n,\n\"0250384\"\n,\n\"0250912\"\n,\n\"0251717\"\n,\n\"0253236\"\n,\n\"0255872\"\n,\n\"0257680\"\n,\n\"0258023\"\n,\n\"0258099\"\n,\n\"0258516\"\n,\n\"0260024\"\n,\n\"0260250\"\n,\n\"0261071\"\n,\n\"0261821\"\n,\n\"0262515\"\n,\n\"0262630\"\n,\n\"0262914\"\n,\n\"0263035\"\n,\n\"0263660\"\n,\n\"0264065\"\n,\n\"0265020\"\n,\n\"0265401\"\n,\n\"0266299\"\n,\n\"0267652\"\n,\n\"0268027\"\n,\n\"0268887\"\n,\n\"0269700\"\n,\n\"0269727\"\n,\n\"0270732\"\n,\n\"0271124\"\n,\n\"0273694\"\n,\n\"0273709\"\n,\n\"0275467\"\n,\n\"0275710\"\n,\n\"0275755\"\n,\n\"0275804\"\n,\n\"0278003\"\n,\n\"0279290\"\n,\n\"0280451\"\n,\n\"0282020\"\n,\n\"0282450\"\n,\n\"0282591\"\n,\n\"0283268\"\n,\n\"0284968\"\n,\n\"0285124\"\n,\n\"0285266\"\n,\n\"0286300\"\n,\n\"0287438\"\n,\n\"0287552\"\n,\n\"0287868\"\n,\n\"0288760\"\n,\n\"0288995\"\n,\n\"0289453\"\n,\n\"0289516\"\n,\n\"0289564\"\n,\n\"0291964\"\n,\n\"0292040\"\n,\n\"0292818\"\n,\n\"0292977\"\n,\n\"0293851\"\n,\n\"0294066\"\n,\n\"0294992\"\n,\n\"0295239\"\n,\n\"0295592\"\n,\n\"0296432\"\n,\n\"0296526\"\n,\n\"0296560\"\n,\n\"0297348\"\n,\n\"0297653\"\n,\n\"0297910\"\n,\n\"0298059\"\n,\n\"0298621\"\n,\n\"0298666\"\n,\n\"0299315\"\n,\n\"0299488\"\n,\n\"0300480\"\n,\n\"0301001\"\n,\n\"0302302\"\n,\n\"0303204\"\n,\n\"0304043\"\n,\n\"0306725\"\n,\n\"0306836\"\n,\n\"0307440\"\n,\n\"0308040\"\n,\n\"0308292\"\n,\n\"0310179\"\n,\n\"0312420\"\n,\n\"0312611\"\n,\n\"0313287\"\n,\n\"0313402\"\n,\n\"0313527\"\n,\n\"0314942\"\n,\n\"0315130\"\n,\n\"0315800\"\n,\n\"0316000\"\n,\n\"0318057\"\n,\n\"0318633\"\n,\n\"0319504\"\n,\n\"0320491\"\n,\n\"0321012\"\n,\n\"0321203\"\n,\n\"0321519\"\n,\n\"0321758\"\n,\n\"0324790\"\n,\n\"0324804\"\n,\n\"0325369\"\n,\n\"0325390\"\n,\n\"0325577\"\n,\n\"0327686\"\n,\n\"0327909\"\n,\n\"0327988\"\n,\n\"0328033\"\n,\n\"0328304\"\n,\n\"0328828\"\n,\n\"0329781\"\n,\n\"0330991\"\n,\n\"0331450\"\n,\n\"0331640\"\n,\n\"0331939\"\n,\n\"0331973\"\n,\n\"0332191\"\n,\n\"0332590\"\n,\n\"0332733\"\n,\n\"0332969\"\n,\n\"0333045\"\n,\n\"0333111\"\n,\n\"0333190\"\n,\n\"0334510\"\n,\n\"0335217\"\n,\n\"0336247\"\n,\n\"0336774\"\n,\n\"0338085\"\n,\n\"0338710\"\n,\n\"0339133\"\n,\n\"0340309\"\n,\n\"0342768\"\n,\n\"0342865\"\n,\n\"0343163\"\n,\n\"0344273\"\n,\n\"0344721\"\n,\n\"0344797\"\n,\n\"0345429\"\n,\n\"0346720\"\n,\n\"0347489\"\n,\n\"0348839\"\n,\n\"0348873\"\n,\n\"0349602\"\n,\n\"0350045\"\n,\n\"0351089\"\n,\n\"0351776\"\n,\n\"0351811\"\n,\n\"0352490\"\n,\n\"0353441\"\n,\n\"0353549\"\n,\n\"0353632\"\n,\n\"0354579\"\n,\n\"0354693\"\n,\n\"0355675\"\n,\n\"0357660\"\n,\n\"0358624\"\n,\n\"0359477\"\n,\n\"0360132\"\n,\n\"0360690\"\n,\n\"0361641\"\n,\n\"0362560\"\n,\n\"0362637\"\n,\n\"0366620\"\n,\n\"0369835\"\n,\n\"0370597\"\n,\n\"0372179\"\n,\n\"0372342\"\n,\n\"0372422\"\n,\n\"0375801\"\n,\n\"0376016\"\n,\n\"0376095\"\n,\n\"0377636\"\n,\n\"0378253\"\n,\n\"0379155\"\n,\n\"0379599\"\n,\n\"0381729\"\n,\n\"0382155\"\n,\n\"0383328\"\n,\n\"0383775\"\n,\n\"0383824\"\n,\n\"0384424\"\n,\n\"0386613\"\n,\n\"0387369\"\n,\n\"0387372\"\n,\n\"0388163\"\n,\n\"0388944\"\n,\n\"0390116\"\n,\n\"0390200\"\n,\n\"0390230\"\n,\n\"0393175\"\n,\n\"0394320\"\n,\n\"0396728\"\n,\n\"0397890\"\n,\n\"0398597\"\n,\n\"0399517\"\n,\n\"0399645\"\n,\n\"0402060\"\n,\n\"0402330\"\n,\n\"0402757\"\n,\n\"0402982\"\n,\n\"0405178\"\n,\n\"0410305\"\n,\n\"0414013\"\n,\n\"0414155\"\n,\n\"0414585\"\n,\n\"0414808\"\n,\n\"0415456\"\n,\n\"0417170\"\n,\n\"0418010\"\n,\n\"0418980\"\n,\n\"0420166\"\n,\n\"0420517\"\n,\n\"0421010\"\n,\n\"0423230\"\n,\n\"0427780\"\n,\n\"0428169\"\n,\n\"0428301\"\n,\n\"0428922\"\n,\n\"0429234\"\n,\n\"0430732\"\n,\n\"0430923\"\n,\n\"0431377\"\n,\n\"0432123\"\n,\n\"0432137\"\n,\n\"0432185\"\n,\n\"0433597\"\n,\n\"0433632\"\n,\n\"0435502\"\n,\n\"0437115\"\n,\n\"0438225\"\n,\n\"0439207\"\n,\n\"0439512\"\n,\n\"0439939\"\n,\n\"0441863\"\n,\n\"0442973\"\n,\n\"0443285\"\n,\n\"0443542\"\n,\n\"0444427\"\n,\n\"0444860\"\n,\n\"0445000\"\n,\n\"0445394\"\n,\n\"0445460\"\n,\n\"0445856\"\n,\n\"0446026\"\n,\n\"0446442\"\n,\n\"0446886\"\n,\n\"0447407\"\n,\n\"0447823\"\n,\n\"0450198\"\n,\n\"0450410\"\n,\n\"0450486\"\n,\n\"0450570\"\n,\n\"0451149\"\n,\n\"0451437\"\n,\n\"0451884\"\n,\n\"0452658\"\n,\n\"0453660\"\n,\n\"0454337\"\n,\n\"0454802\"\n,\n\"0455402\"\n,\n\"0456990\"\n,\n\"0457050\"\n,\n\"0457285\"\n,\n\"0457303\"\n,\n\"0457511\"\n,\n\"0458860\"\n,\n\"0459058\"\n,\n\"0459394\"\n,\n\"0459682\"\n,\n\"0462235\"\n,\n\"0462762\"\n,\n\"0463217\"\n,\n\"0463918\"\n,\n\"0465007\"\n,\n\"0465485\"\n,\n\"0466804\"\n,\n\"0467324\"\n,\n\"0467341\"\n,\n\"0468958\"\n,\n\"0469114\"\n,\n\"0470691\"\n,\n\"0470768\"\n,\n\"0471230\"\n,\n\"0472367\"\n,\n\"0473175\"\n,\n\"0473939\"\n,\n\"0474889\"\n,\n\"0476665\"\n,\n\"0478042\"\n,\n\"0479055\"\n,\n\"0479579\"\n,\n\"0480234\"\n,\n\"0480970\"\n,\n\"0481167\"\n,\n\"0481358\"\n,\n\"0482038\"\n,\n\"0482631\"\n,\n\"0482836\"\n,\n\"0482981\"\n,\n\"0483498\"\n,\n\"0483578\"\n,\n\"0484657\"\n,\n\"0484660\"\n,\n\"0485052\"\n,\n\"0485545\"\n,\n\"0485820\"\n,\n\"0486096\"\n,\n\"0487530\"\n,\n\"0488525\"\n,\n\"0490450\"\n,\n\"0490654\"\n,\n\"0491907\"\n,\n\"0492510\"\n,\n\"0493190\"\n,\n\"0494522\"\n,\n\"0496454\"\n,\n\"0496534\"\n,\n\"0496760\"\n,\n\"0497068\"\n,\n\"0497578\"\n,\n\"0497821\"\n,\n\"0497929\"\n,\n\"0498227\"\n,\n\"0499337\"\n,\n\"0499642\"\n,\n\"0499833\"\n,\n\"0500312\"\n,\n\"0500468\"\n,\n\"0500981\"\n,\n\"0501360\"\n,\n\"0501467\"\n,\n\"0502626\"\n,\n\"0502710\"\n,\n\"0503306\"\n,\n\"0503531\"\n,\n\"0504131\"\n,\n\"0504176\"\n,\n\"0504420\"\n,\n\"0504797\"\n,\n\"0505269\"\n,\n\"0505349\"\n,\n\"0505654\"\n,\n\"0505717\"\n,\n\"0507298\"\n,\n\"0507489\"\n,\n\"0507683\"\n,\n\"0508967\"\n,\n\"0509393\"\n,\n\"0509807\"\n,\n\"0510093\"\n,\n\"0510652\"\n,\n\"0511329\"\n,\n\"0512997\"\n,\n\"0515692\"\n,\n\"0516053\"\n,\n\"0516771\"\n,\n\"0516799\"\n,\n\"0517115\"\n,\n\"0519020\"\n,\n\"0519432\"\n,\n\"0519720\"\n,\n\"0521017\"\n,\n\"0521607\"\n,\n\"0522192\"\n,\n\"0524635\"\n,\n\"0525172\"\n,\n\"0526540\"\n,\n\"0526695\"\n,\n\"0526935\"\n,\n\"0527810\"\n,\n\"0527837\"\n,\n\"0528197\"\n,\n\"0528534\"\n,\n\"0529308\"\n,\n\"0529901\"\n,\n\"0530313\"\n,\n\"0532037\"\n,\n\"0533036\"\n,\n\"0533292\"\n,\n\"0534434\"\n,\n\"0535114\"\n,\n\"0535416\"\n,\n\"0535930\"\n,\n\"0536064\"\n,\n\"0537670\"\n,\n\"0537750\"\n,\n\"0539426\"\n,\n\"0539759\"\n,\n\"0539998\"\n,\n\"0540240\"\n,\n\"0540938\"\n,\n\"0541045\"\n,\n\"0541284\"\n,\n\"0543060\"\n,\n\"0544712\"\n,\n\"0544948\"\n,\n\"0546103\"\n,\n\"0546228\"\n,\n\"0546342\"\n,\n\"0547706\"\n,\n\"0548608\"\n,\n\"0548944\"\n,\n\"0549128\"\n,\n\"0549561\"\n,\n\"0550626\"\n,\n\"0551528\"\n,\n\"0552500\"\n,\n\"0553210\"\n,\n\"0554174\"\n,\n\"0554525\"\n,\n\"0555298\"\n,\n\"0555461\"\n,\n\"0556426\"\n,\n\"0556457\"\n,\n\"0558455\"\n,\n\"0558615\"\n,\n\"0559662\"\n,\n\"0559853\"\n,\n\"0561278\"\n,\n\"0561361\"\n,\n\"0561375\"\n,\n\"0561712\"\n,\n\"0562055\"\n,\n\"0562867\"\n,\n\"0564660\"\n,\n\"0565066\"\n,\n\"0565900\"\n,\n\"0566079\"\n,\n\"0566239\"\n,\n\"0569569\"\n,\n\"0569812\"\n,\n\"0570480\"\n,\n\"0571299\"\n,\n\"0571619\"\n,\n\"0571670\"\n,\n\"0572777\"\n,\n\"0573089\"\n,\n\"0573430\"\n,\n\"0573491\"\n,\n\"0573860\"\n,\n\"0574678\"\n,\n\"0575202\"\n,\n\"0576010\"\n,\n\"0577280\"\n,\n\"0577710\"\n,\n\"0578660\"\n,\n\"0580214\"\n,\n\"0580689\"\n,\n\"0581084\"\n,\n\"0581386\"\n,\n\"0582784\"\n,\n\"0585109\"\n,\n\"0586461\"\n,\n\"0586649\"\n,\n\"0587044\"\n,\n\"0591234\"\n,\n\"0594103\"\n,\n\"0595022\"\n,\n\"0595098\"\n,\n\"0596927\"\n,\n\"0601082\"\n,\n\"0601131\"\n,\n\"0601558\"\n,\n\"0602050\"\n,\n\"0602557\"\n,\n\"0602668\"\n,\n\"0602845\"\n,\n\"0602987\"\n,\n\"0603029\"\n,\n\"0603206\"\n,\n\"0603223\"\n,\n\"0603844\"\n,\n\"0603907\"\n,\n\"0604604\"\n,\n\"0605443\"\n,\n\"0605491\"\n,\n\"0605780\"\n,\n\"0606540\"\n,\n\"0607011\"\n,\n\"0607629\"\n,\n\"0607810\"\n,\n\"0608680\"\n,\n\"0608787\"\n,\n\"0608950\"\n,\n\"0609440\"\n,\n\"0609498\"\n,\n\"0609533\"\n,\n\"0610042\"\n,\n\"0610264\"\n,\n\"0610632\"\n,\n\"0610840\"\n,\n\"0611232\"\n,\n\"0612453\"\n,\n\"0612661\"\n,\n\"0613501\"\n,\n\"0613688\"\n,\n\"0614035\"\n,\n\"0615530\"\n,\n\"0615672\"\n,\n\"0615926\"\n,\n\"0615988\"\n,\n\"0616748\"\n,\n\"0617223\"\n,\n\"0617844\"\n,\n\"0617907\"\n,\n\"0618590\"\n,\n\"0618670\"\n,\n\"0619811\"\n,\n\"0619842\"\n,\n\"0622169\"\n,\n\"0622380\"\n,\n\"0622922\"\n,\n\"0623487\"\n,\n\"0623744\"\n,\n\"0624233\"\n,\n\"0624295\"\n,\n\"0625950\"\n,\n\"0626071\"\n,\n\"0626661\"\n,\n\"0626835\"\n,\n\"0627040\"\n,\n\"0628740\"\n,\n\"0628878\"\n,\n\"0630754\"\n,\n\"0631243\"\n,\n\"0631337\"\n,\n\"0632690\"\n,\n\"0633207\"\n,\n\"0633318\"\n,\n\"0634160\"\n,\n\"0634285\"\n,\n\"0634414\"\n,\n\"0634764\"\n,\n\"0636218\"\n,\n\"0636620\"\n,\n\"0637408\"\n,\n\"0638441\"\n,\n\"0638486\"\n,\n\"0638632\"\n,\n\"0638806\"\n,\n\"0639090\"\n,\n\"0639437\"\n,\n\"0639485\"\n,\n\"0639739\"\n,\n\"0640026\"\n,\n\"0640168\"\n,\n\"0640598\"\n,\n\"0640792\"\n,\n\"0640952\"\n,\n\"0641140\"\n,\n\"0641810\"\n,\n\"0642010\"\n,\n\"0642149\"\n,\n\"0642294\"\n,\n\"0642360\"\n,\n\"0642790\"\n,\n\"0642995\"\n,\n\"0643356\"\n,\n\"0644084\"\n,\n\"0645371\"\n,\n\"0645816\"\n,\n\"0645992\"\n,\n\"0647734\"\n,\n\"0648160\"\n,\n\"0649701\"\n,\n\"0649732\"\n,\n\"0649891\"\n,\n\"0651622\"\n,\n\"0651795\"\n,\n\"0651861\"\n,\n\"0652590\"\n,\n\"0652985\"\n,\n\"0653058\"\n,\n\"0653235\"\n,\n\"0654091\"\n,\n\"0654380\"\n,\n\"0654886\"\n,\n\"0654921\"\n,\n\"0655552\"\n,\n\"0656326\"\n,\n\"0656471\"\n,\n\"0656503\"\n,\n\"0656548\"\n,\n\"0656659\"\n,\n\"0656787\"\n,\n\"0656805\"\n,\n\"0656867\"\n,\n\"0656981\"\n,\n\"0657103\"\n,\n\"0657373\"\n,\n\"0658244\"\n,\n\"0658532\"\n,\n\"0658563\"\n,\n\"0658626\"\n,\n\"0659656\"\n,\n\"0659961\"\n,\n\"0662146\"\n,\n\"0663256\"\n,\n\"0663592\"\n,\n\"0664100\"\n,\n\"0664574\"\n,\n\"0665050\"\n,\n\"0666267\"\n,\n\"0666732\"\n,\n\"0667682\"\n,\n\"0668553\"\n,\n\"0668838\"\n,\n\"0669119\"\n,\n\"0669712\"\n,\n\"0670013\"\n,\n\"0670235\"\n,\n\"0670283\"\n,\n\"0670329\"\n,\n\"0670970\"\n,\n\"0671460\"\n,\n\"0671758\"\n,\n\"0675848\"\n,\n\"0676465\"\n,\n\"0676881\"\n,\n\"0677450\"\n,\n\"0677513\"\n,\n\"0677624\"\n,\n\"0678610\"\n,\n\"0678956\"\n,\n\"0679299\"\n,\n\"0679684\"\n,\n\"0680096\"\n,\n\"0680180\"\n,\n\"0680367\"\n,\n\"0682206\"\n,\n\"0682268\"\n,\n\"0682476\"\n,\n\"0683156\"\n,\n\"0684679\"\n,\n\"0684714\"\n,\n\"0684728\"\n,\n\"0687166\"\n,\n\"0687645\"\n,\n\"0687659\"\n,\n\"0688040\"\n,\n\"0688741\"\n,\n\"0689737\"\n,\n\"0689851\"\n,\n\"0690024\"\n,\n\"0690631\"\n,\n\"0690840\"\n,\n\"0691852\"\n,\n\"0691950\"\n,\n\"0692053\"\n,\n\"0692084\"\n,\n\"0692213\"\n,\n\"0692435\"\n,\n\"0692550\"\n,\n\"0692737\"\n,\n\"0693129\"\n,\n\"0693337\"\n,\n\"0694114\"\n,\n\"0694242\"\n,\n\"0695831\"\n,\n\"0696032\"\n,\n\"0696109\"\n,\n\"0696174\"\n,\n\"0696414\"\n,\n\"0696525\"\n,\n\"0696716\"\n,\n\"0697219\"\n,\n\"0697697\"\n,\n\"0700299\"\n,\n\"0700667\"\n,\n\"0700781\"\n,\n\"0701971\"\n,\n\"0702000\"\n,\n\"0702061\"\n,\n\"0702124\"\n,\n\"0702297\"\n,\n\"0702953\"\n,\n\"0703633\"\n,\n\"0703681\"\n,\n\"0704202\"\n,\n\"0704300\"\n,\n\"0704441\"\n,\n\"0704712\"\n,\n\"0704837\"\n,\n\"0706071\"\n,\n\"0706360\"\n,\n\"0706440\"\n,\n\"0707529\"\n,\n\"0707594\"\n,\n\"0707980\"\n,\n\"0708291\"\n,\n\"0708642\"\n,\n\"0709239\"\n,\n\"0709530\"\n,\n\"0709704\"\n,\n\"0710421\"\n,\n\"0710563\"\n,\n\"0711257\"\n,\n\"0711465\"\n,\n\"0712384\"\n,\n\"0712420\"\n,\n\"0712592\"\n,\n\"0712770\"\n,\n\"0712960\"\n,\n\"0713016\"\n,\n\"0713100\"\n,\n\"0714445\"\n,\n\"0714698\"\n,\n\"0715857\"\n,\n\"0715940\"\n,\n\"0716058\"\n,\n\"0716110\"\n,\n\"0716696\"\n,\n\"0717074\"\n,\n\"0717456\"\n,\n\"0717519\"\n,\n\"0718300\"\n,\n\"0720536\"\n,\n\"0721295\"\n,\n\"0722410\"\n,\n\"0722964\"\n,\n\"0722978\"\n,\n\"0723516\"\n,\n\"0723835\"\n,\n\"0724053\"\n,\n\"0724546\"\n,\n\"0725340\"\n,\n\"0725900\"\n,\n\"0727911\"\n,\n\"0728254\"\n,\n\"0728382\"\n,\n\"0728493\"\n,\n\"0728924\"\n,\n\"0729843\"\n,\n\"0730161\"\n,\n\"0731001\"\n,\n\"0731285\"\n,\n\"0732222\"\n,\n\"0732572\"\n,\n\"0732750\"\n,\n\"0733523\"\n,\n\"0734217\"\n,\n\"0734952\"\n,\n\"0735490\"\n,\n\"0735570\"\n,\n\"0736183\"\n,\n\"0737484\"\n,\n\"0737595\"\n,\n\"0738546\"\n,\n\"0738550\"\n,\n\"0739354\"\n,\n\"0740010\"\n,\n\"0740440\"\n,\n\"0741213\"\n,\n\"0741710\"\n,\n\"0742448\"\n,\n\"0743079\"\n,\n\"0743880\"\n,\n\"0744429\"\n,\n\"0745046\"\n,\n\"0746430\"\n,\n\"0746458\"\n,\n\"0746538\"\n,\n\"0747811\"\n,\n\"0748030\"\n,\n\"0748057\"\n,\n\"0748217\"\n,\n\"0748234\"\n,\n\"0749490\"\n,\n\"0750811\"\n,\n\"0751088\"\n,\n\"0753183\"\n,\n\"0753680\"\n,\n\"0754182\"\n,\n\"0754520\"\n,\n\"0755691\"\n,\n\"0755879\"\n,\n\"0755962\"\n,\n\"0756101\"\n,\n\"0756177\"\n,\n\"0756230\"\n,\n\"0756576\"\n,\n\"0756992\"\n,\n\"0757100\"\n,\n\"0759032\"\n,\n\"0759268\"\n,\n\"0760561\"\n,\n\"0761720\"\n,\n\"0761734\"\n,\n\"0762573\"\n,\n\"0762640\"\n,\n\"0762955\"\n,\n\"0762972\"\n,\n\"0763461\"\n,\n\"0764089\"\n,\n\"0764110\"\n,\n\"0764665\"\n,\n\"0765154\"\n,\n\"0766743\"\n,\n\"0768040\"\n,\n\"0768387\"\n,\n\"0768550\"\n,\n\"0768661\"\n,\n\"0770708\"\n,\n\"0771311\"\n,\n\"0771932\"\n,\n\"0771950\"\n,\n\"0772019\"\n,\n\"0772258\"\n,\n\"0773163\"\n,\n\"0773500\"\n,\n\"0773642\"\n,\n\"0773784\"\n,\n\"0774416\"\n,\n\"0774610\"\n,\n\"0775352\"\n,\n\"0776032\"\n,\n\"0776480\"\n,\n\"0776670\"\n,\n\"0776955\"\n,\n\"0777076\"\n,\n\"0777093\"\n,\n\"0777812\"\n,\n\"0779123\"\n,\n\"0780142\"\n,\n\"0780444\"\n,\n\"0780458\"\n,\n\"0783472\"\n,\n\"0783663\"\n,\n\"0783979\"\n,\n\"0785006\"\n,\n\"0785658\"\n,\n\"0785772\"\n,\n\"0785818\"\n,\n\"0786067\"\n,\n\"0786723\"\n,\n\"0787816\"\n,\n\"0788305\"\n,\n\"0788416\"\n,\n\"0789383\"\n,\n\"0789703\"\n,\n\"0789987\"\n,\n\"0790576\"\n,\n\"0790900\"\n,\n\"0791770\"\n,\n\"0792349\"\n,\n\"0792668\"\n,\n\"0794108\"\n,\n\"0794316\"\n,\n\"0794524\"\n,\n\"0796265\"\n,\n\"0798215\"\n,\n\"0799245\"\n,\n\"0799600\"\n,\n\"0800296\"\n,\n\"0800328\"\n,\n\"0800376\"\n,\n\"0801899\"\n,\n\"0803214\"\n,\n\"0803950\"\n,\n\"0803994\"\n,\n\"0804515\"\n,\n\"0804563\"\n,\n\"0804723\"\n,\n\"0804976\"\n,\n\"0805083\"\n,\n\"0805146\"\n,\n\"0805479\"\n,\n\"0805850\"\n,\n\"0806290\"\n,\n\"0806815\"\n,\n\"0807002\"\n,\n\"0807158\"\n,\n\"0807210\"\n,\n\"0807415\"\n,\n\"0807685\"\n,\n\"0807876\"\n,\n\"0807973\"\n,\n\"0808414\"\n,\n\"0809427\"\n,\n\"0809541\"\n,\n\"0811747\"\n,\n\"0812059\"\n,\n\"0812187\"\n,\n\"0812750\"\n,\n\"0813266\"\n,\n\"0813350\"\n,\n\"0813793\"\n,\n\"0813842\"\n,\n\"0814505\"\n,\n\"0814540\"\n,\n\"0814713\"\n,\n\"0815632\"\n,\n\"0816104\"\n,\n\"0816503\"\n,\n\"0816756\"\n,\n\"0816947\"\n,\n\"0817010\"\n,\n\"0817023\"\n,\n\"0818386\"\n,\n\"0818550\"\n,\n\"0818710\"\n,\n\"0818768\"\n,\n\"0818834\"\n,\n\"0820148\"\n,\n\"0820630\"\n,\n\"0820769\"\n,\n\"0820932\"\n,\n\"0821292\"\n,\n\"0821421\"\n,\n\"0821594\"\n,\n\"0821643\"\n,\n\"0822066\"\n,\n\"0822243\"\n,\n\"0822310\"\n,\n\"0822403\"\n,\n\"0822611\"\n,\n\"0822687\"\n,\n\"0822798\"\n,\n\"0823145\"\n,\n\"0823193\"\n,\n\"0823225\"\n,\n\"0823305\"\n,\n\"0823384\"\n,\n\"0823589\"\n,\n\"0823877\"\n,\n\"0823880\"\n,\n\"0824207\"\n,\n\"0824290\"\n,\n\"0824415\"\n,\n\"0824477\"\n,\n\"0824654\"\n,\n\"0826205\"\n,\n\"0826489\"\n,\n\"0826538\"\n,\n\"0827873\"\n,\n\"0828439\"\n,\n\"0828456\"\n,\n\"0828727\"\n,\n\"0830620\"\n,\n\"0831282\"\n,\n\"0831650\"\n,\n\"0831807\"\n,\n\"0832073\"\n,\n\"0832965\"\n,\n\"0833086\"\n,\n\"0833121\"\n,\n\"0833229\"\n,\n\"0833836\"\n,\n\"0834085\"\n,\n\"0834516\"\n,\n\"0834835\"\n,\n\"0835150\"\n,\n\"0835550\"\n,\n\"0836944\"\n,\n\"0836989\"\n,\n\"0837561\"\n,\n\"0837624\"\n,\n\"0837991\"\n,\n\"0838668\"\n,\n\"0840003\"\n,\n\"0840402\"\n,\n\"0840513\"\n,\n\"0841349\"\n,\n\"0842303\"\n,\n\"0842907\"\n,\n\"0842924\"\n,\n\"0843253\"\n,\n\"0843746\"\n,\n\"0843891\"\n,\n\"0844092\"\n,\n\"0844860\"\n,\n\"0845074\"\n,\n\"0845425\"\n,\n\"0845695\"\n,\n\"0845775\"\n,\n\"0845792\"\n,\n\"0845918\"\n,\n\"0846184\"\n,\n\"0846220\"\n,\n\"0846760\"\n,\n\"0846806\"\n,\n\"0846934\"\n,\n\"0847250\"\n,\n\"0847330\"\n,\n\"0847503\"\n,\n\"0847950\"\n,\n\"0848010\"\n,\n\"0848262\"\n,\n\"0849195\"\n,\n\"0849483\"\n,\n\"0849550\"\n,\n\"0850995\"\n,\n\"0851228\"\n,\n\"0851276\"\n,\n\"0851498\"\n,\n\"0851520\"\n,\n\"0852053\"\n,\n\"0852067\"\n,\n\"0853049\"\n,\n\"0853260\"\n,\n\"0854096\"\n,\n\"0854162\"\n,\n\"0854180\"\n,\n\"0854290\"\n,\n\"0854607\"\n,\n\"0854655\"\n,\n\"0855765\"\n,\n\"0855859\"\n,\n\"0856365\"\n,\n\"0856428\"\n,\n\"0856493\"\n,\n\"0856622\"\n,\n\"0857843\"\n,\n\"0857857\"\n,\n\"0858013\"\n,\n\"0858346\"\n,\n\"0858350\"\n,\n\"0858839\"\n,\n\"0859057\"\n,\n\"0860510\"\n,\n\"0860732\"\n,\n\"0861394\"\n,\n\"0861412\"\n,\n\"0862106\"\n,\n\"0862110\"\n,\n\"0862220\"\n,\n\"0862234\"\n,\n\"0862536\"\n,\n\"0863073\"\n,\n\"0863791\"\n,\n\"0863868\"\n,\n\"0864215\"\n,\n\"0864374\"\n,\n\"0864628\"\n,\n\"0864725\"\n,\n\"0865023\"\n,\n\"0865134\"\n,\n\"0865148\"\n,\n\"0865387\"\n,\n\"0865440\"\n,\n\"0865550\"\n,\n\"0865883\"\n,\n\"0866102\"\n,\n\"0866195\"\n,\n\"0867448\"\n,\n\"0868242\"\n,\n\"0869192\"\n,\n\"0869318\"\n,\n\"0869814\"\n,\n\"0871420\"\n,\n\"0871829\"\n,\n\"0872335\"\n,\n\"0872637\"\n,\n\"0873698\"\n,\n\"0874812\"\n,\n\"0874985\"\n,\n\"0875027\"\n,\n\"0876171\"\n,\n\"0876300\"\n,\n\"0877025\"\n,\n\"0878534\"\n,\n\"0879440\"\n,\n\"0879502\"\n,\n\"0879994\"\n,\n\"0880344\"\n,\n\"0880601\"\n,\n\"0880663\"\n,\n\"0880920\"\n,\n\"0880996\"\n,\n\"0881055\"\n,\n\"0881756\"\n,\n\"0881773\"\n,\n\"0882010\"\n,\n\"0882182\"\n,\n\"0882262\"\n,\n\"0883120\"\n,\n\"0883563\"\n,\n\"0884864\"\n,\n\"0886064\"\n,\n\"0886158\"\n,\n\"0886637\"\n,\n\"0886703\"\n,\n\"0886751\"\n,\n\"0887015\"\n,\n\"0887237\"\n,\n\"0887414\"\n,\n\"0887747\"\n,\n\"0888173\"\n,\n\"0888284\"\n,\n\"0888444\"\n,\n\"0888729\"\n,\n\"0890126\"\n,\n\"0890795\"\n,\n\"0890892\"\n,\n\"0891139\"\n,\n\"0891843\"\n,\n\"0893171\"\n,\n\"0893199\"\n,\n\"0893408\"\n,\n\"0893442\"\n,\n\"0893584\"\n,\n\"0893650\"\n,\n\"0894392\"\n,\n\"0894823\"\n,\n\"0895232\"\n,\n\"0895410\"\n,\n\"0895499\"\n,\n\"0895676\"\n,\n\"0895760\"\n,\n\"0895790\"\n,\n\"0898146\"\n,\n\"0898531\"\n,\n\"0898562\"\n,\n\"0898593\"\n,\n\"0898660\"\n,\n\"0898740\"\n,\n\"0898864\"\n,\n\"0898989\"\n,\n\"0899145\"\n,\n\"0899287\"\n,\n\"0899464\"\n,\n\"0900068\"\n,\n\"0900165\"\n,\n\"0900280\"\n,\n\"0901116\"\n,\n\"0901470\"\n,\n\"0901497\"\n,\n\"0902913\"\n,\n\"0902958\"\n,\n\"0903017\"\n,\n\"0904925\"\n,\n\"0904942\"\n,\n\"0905157\"\n,\n\"0906173\"\n,\n\"0906923\"\n,\n\"0906937\"\n,\n\"0906971\"\n,\n\"0907058\"\n,\n\"0907297\"\n,\n\"0907409\"\n,\n\"0907537\"\n,\n\"0908154\"\n,\n\"0908536\"\n,\n\"0908775\"\n,\n\"0908792\"\n,\n\"0909518\"\n,\n\"0910030\"\n,\n\"0910620\"\n,\n\"0910762\"\n,\n\"0911584\"\n,\n\"0911681\"\n,\n\"0911838\"\n,\n\"0913118\"\n,\n\"0913468\"\n,\n\"0913485\"\n,\n\"0913950\"\n,\n\"0914068\"\n,\n\"0914390\"\n,\n\"0914835\"\n,\n\"0915630\"\n,\n\"0915660\"\n,\n\"0915737\"\n,\n\"0915768\"\n,\n\"0915865\"\n,\n\"0916146\"\n,\n\"0916368\"\n,\n\"0916850\"\n,\n\"0918100\"\n,\n\"0918113\"\n,\n\"0918175\"\n,\n\"0918588\"\n,\n\"0918765\"\n,\n\"0919080\"\n,\n\"0919587\"\n,\n\"0919640\"\n,\n\"0920242\"\n,\n\"0921064\"\n,\n\"0921779\"\n,\n\"0922587\"\n,\n\"0923062\"\n,\n\"0923139\"\n,\n\"0923320\"\n,\n\"0923492\"\n,\n\"0923524\"\n,\n\"0923891\"\n,\n\"0924169\"\n,\n\"0924745\"\n,\n\"0924922\"\n,\n\"0925203\"\n,\n\"0925296\"\n,\n\"0925442\"\n,\n\"0925519\"\n,\n\"0927326\"\n,\n\"0927579\"\n,\n\"0927950\"\n,\n\"0928356\"\n,\n\"0929040\"\n,\n\"0929200\"\n,\n\"0929882\"\n,\n\"0930246\"\n,\n\"0931293\"\n,\n\"0931564\"\n,\n\"0931769\"\n,\n\"0931915\"\n,\n\"0932036\"\n,\n\"0932258\"\n,\n\"0933274\"\n,\n\"0933531\"\n,\n\"0933593\"\n,\n\"0933930\"\n,\n\"0934225\"\n,\n\"0934416\"\n,\n\"0934638\"\n,\n\"0934721\"\n,\n\"0934957\"\n,\n\"0935002\"\n,\n\"0935560\"\n,\n\"0935751\"\n,\n\"0936636\"\n,\n\"0937427\"\n,\n\"0938218\"\n,\n\"0938221\"\n,\n\"0938394\"\n,\n\"0938426\"\n,\n\"0938953\"\n,\n\"0939009\"\n,\n\"0939620\"\n,\n\"0940750\"\n,\n\"0940891\"\n,\n\"0941329\"\n,\n\"0941665\"\n,\n\"0941731\"\n,\n\"0942328\"\n,\n\"0942380\"\n,\n\"0942983\"\n,\n\"0943056\"\n,\n\"0943934\"\n,\n\"0944197\"\n,\n\"0945099\"\n,\n\"0945151\"\n,\n\"0945231\"\n,\n\"0945259\"\n,\n\"0945689\"\n,\n\"0945738\"\n,\n\"0945963\"\n,\n\"0946390\"\n,\n\"0946532\"\n,\n\"0946771\"\n,\n\"0947975\"\n,\n\"0948513\"\n,\n\"0948592\"\n,\n\"0949144\"\n,\n\"0950021\"\n,\n\"0950420\"\n,\n\"0950434\"\n,\n\"0950545\"\n,\n\"0950576\"\n,\n\"0951180\"\n,\n\"0951447\"\n,\n\"0951607\"\n,\n\"0951718\"\n,\n\"0951880\"\n,\n\"0952429\"\n,\n\"0952699\"\n,\n\"0953476\"\n,\n\"0954649\"\n,\n\"0956185\"\n,\n\"0956328\"\n,\n\"0957743\"\n,\n\"0958468\"\n,\n\"0959710\"\n,\n\"0959915\"\n,\n\"0960140\"\n,\n\"0960979\"\n,\n\"0961072\"\n,\n\"0961121\"\n,\n\"0961263\"\n,\n\"0961950\"\n,\n\"0962373\"\n,\n\"0962422\"\n,\n\"0962436\"\n,\n\"0963404\"\n,\n\"0964864\"\n,\n\"0964989\"\n,\n\"0964992\"\n,\n\"0965017\"\n,\n\"0965943\"\n,\n\"0966717\"\n,\n\"0966800\"\n,\n\"0966862\"\n,\n\"0967955\"\n,\n\"0968080\"\n,\n\"0968701\"\n,\n\"0968809\"\n,\n\"0969235\"\n,\n\"0969679\"\n,\n\"0973411\"\n,\n\"0973807\"\n,\n\"0973886\"\n,\n\"0975010\"\n,\n\"0975246\"\n,\n\"0975995\"\n,\n\"0976228\"\n,\n\"0977230\"\n,\n\"0977768\"\n,\n\"0977980\"\n,\n\"0978531\"\n,\n\"0978975\"\n,\n\"0979242\"\n,\n\"0980310\"\n,\n\"0980657\"\n,\n\"0981753\"\n,\n\"0981913\"\n,\n\"0981944\"\n,\n\"0981961\"\n,\n\"0982096\"\n,\n\"0982322\"\n,\n\"0982721\"\n,\n\"0982770\"\n,\n\"0983637\"\n,\n\"0983831\"\n,\n\"0983956\"\n,\n\"0985812\"\n,\n\"0988885\"\n,\n\"0989454\"\n,\n\"0989628\"\n,\n\"0990473\"\n,\n\"0990886\"\n,\n\"0991056\"\n,\n\"0991060\"\n,\n\"0992898\"\n,\n\"0993165\"\n,\n\"0993293\"\n,\n\"0993467\"\n,\n\"0993790\"\n,\n\"0994546\"\n,\n\"0994914\"\n,\n\"0995066\"\n,\n\"0996211\"\n,\n\"0996607\"\n,\n\"0996797\"\n,\n\"0997095\"\n,\n\"0997765\"\n,\n\"0999780\"\n,\n\"0999857\"\n,\n\"100000\"\n,\n\"100001\"\n,\n\"100002\"\n,\n\"100003\"\n,\n\"100004\"\n,\n\"100005\"\n,\n\"100006\"\n,\n\"100007\"\n,\n\"100008\"\n,\n\"100009\"\n,\n\"100010\"\n,\n\"100011\"\n,\n\"100013\"\n,\n\"100014\"\n,\n\"100016\"\n,\n\"100017\"\n,\n\"1000172\"\n,\n\"100018\"\n,\n\"100019\"\n,\n\"100020\"\n,\n\"1000204\"\n,\n\"100021\"\n,\n\"100023\"\n,\n\"100024\"\n,\n\"1000249\"\n,\n\"100025\"\n,\n\"100026\"\n,\n\"100027\"\n,\n\"100028\"\n,\n\"100029\"\n,\n\"1000297\"\n,\n\"100030\"\n,\n\"1000301\"\n,\n\"100031\"\n,\n\"100032\"\n,\n\"100033\"\n,\n\"100034\"\n,\n\"100035\"\n,\n\"100036\"\n,\n\"100037\"\n,\n\"100038\"\n,\n\"100039\"\n,\n\"100040\"\n,\n\"100041\"\n,\n\"100042\"\n,\n\"100043\"\n,\n\"100044\"\n,\n\"100045\"\n,\n\"100046\"\n,\n\"100047\"\n,\n\"100048\"\n,\n\"100049\"\n,\n\"100050\"\n,\n\"100051\"\n,\n\"100052\"\n,\n\"100053\"\n,\n\"100054\"\n,\n\"100055\"\n,\n\"100056\"\n,\n\"100057\"\n,\n\"100058\"\n,\n\"100059\"\n,\n\"1000599\"\n,\n\"100060\"\n,\n\"100061\"\n,\n\"100062\"\n,\n\"100063\"\n,\n\"100064\"\n,\n\"100065\"\n,\n\"100066\"\n,\n\"100067\"\n,\n\"100068\"\n,\n\"100069\"\n,\n\"100070\"\n,\n\"100071\"\n,\n\"100072\"\n,\n\"100073\"\n,\n\"100074\"\n,\n\"1000745\"\n,\n\"100075\"\n,\n\"100076\"\n,\n\"100077\"\n,\n\"100078\"\n,\n\"100079\"\n,\n\"100081\"\n,\n\"100082\"\n,\n\"1000825\"\n,\n\"100083\"\n,\n\"100084\"\n,\n\"1000842\"\n,\n\"100085\"\n,\n\"100086\"\n,\n\"100087\"\n,\n\"100089\"\n,\n\"100090\"\n,\n\"100091\"\n,\n\"100092\"\n,\n\"100093\"\n,\n\"100095\"\n,\n\"100096\"\n,\n\"100097\"\n,\n\"100098\"\n,\n\"100099\"\n,\n\"100100\"\n,\n\"100101\"\n,\n\"100102\"\n,\n\"100103\"\n,\n\"100104\"\n,\n\"100105\"\n,\n\"100106\"\n,\n\"100107\"\n,\n\"100108\"\n,\n\"100109\"\n,\n\"100111\"\n,\n\"100112\"\n,\n\"100113\"\n,\n\"100114\"\n,\n\"100116\"\n,\n\"100117\"\n,\n\"100118\"\n,\n\"100119\"\n,\n\"100122\"\n,\n\"100123\"\n,\n\"100124\"\n,\n\"100125\"\n,\n\"100126\"\n,\n\"100128\"\n,\n\"100129\"\n,\n\"100131\"\n,\n\"100133\"\n,\n\"100134\"\n,\n\"100135\"\n,\n\"100136\"\n,\n\"100137\"\n,\n\"100138\"\n,\n\"100139\"\n,\n\"100140\"\n,\n\"100141\"\n,\n\"100142\"\n,\n\"100143\"\n,\n\"100144\"\n,\n\"100145\"\n,\n\"100146\"\n,\n\"100147\"\n,\n\"100148\"\n,\n\"100149\"\n,\n\"100150\"\n,\n\"100151\"\n,\n\"100152\"\n,\n\"1001522\"\n,\n\"100153\"\n,\n\"100154\"\n,\n\"100155\"\n,\n\"100156\"\n,\n\"100157\"\n,\n\"100158\"\n,\n\"100159\"\n,\n\"100160\"\n,\n\"100161\"\n,\n\"100162\"\n,\n\"100163\"\n,\n\"100164\"\n,\n\"100165\"\n,\n\"100166\"\n,\n\"100167\"\n,\n\"100168\"\n,\n\"100173\"\n,\n\"100174\"\n,\n\"100175\"\n,\n\"100177\"\n,\n\"100178\"\n,\n\"100179\"\n,\n\"100180\"\n,\n\"100181\"\n,\n\"100182\"\n,\n\"100183\"\n,\n\"1001872\"\n,\n\"1002650\"\n,\n\"1002694\"\n,\n\"1002760\"\n,\n\"1004276\"\n,\n\"1004405\"\n,\n\"1004564\"\n,\n\"1004835\"\n,\n\"1004852\"\n,\n\"1005386\"\n,\n\"1005466\"\n,\n\"1006434\"\n,\n\"1006496\"\n,\n\"1006690\"\n,\n\"1006944\"\n,\n\"1006958\"\n,\n\"1007211\"\n,\n\"1007398\"\n,\n\"1007575\"\n,\n\"1007610\"\n,\n\"1007926\"\n,\n\"1008269\"\n,\n\"1008304\"\n,\n\"1008862\"\n,\n\"1008876\"\n,\n\"1009130\"\n,\n\"1009191\"\n,\n\"1009400\"\n,\n\"1009622\"\n,\n\"1009636\"\n,\n\"1009972\"\n,\n\"1010193\"\n,\n\"1010225\"\n,\n\"1010290\"\n,\n\"1010319\"\n,\n\"1010589\"\n,\n\"1010669\"\n,\n\"1010718\"\n,\n\"1010832\"\n,\n\"1010974\"\n,\n\"1011095\"\n,\n\"1011207\"\n,\n\"1011560\"\n,\n\"1011591\"\n,\n\"1011720\"\n,\n\"1011893\"\n,\n\"1011956\"\n,\n\"1011973\"\n,\n\"1012174\"\n,\n\"1012587\"\n,\n\"1012605\"\n,\n\"1012684\"\n,\n\"1013014\"\n,\n\"1013093\"\n,\n\"1013489\"\n,\n\"1013670\"\n,\n\"1014000\"\n,\n\"1014044\"\n,\n\"1014058\"\n,\n\"1014061\"\n,\n\"1014092\"\n,\n\"1014138\"\n,\n\"1014141\"\n,\n\"1014350\"\n,\n\"1015091\"\n,\n\"1015616\"\n,\n\"1015678\"\n,\n\"1015730\"\n,\n\"1015918\"\n,\n\"1016220\"\n,\n\"1016375\"\n,\n\"1016469\"\n,\n\"1016632\"\n,\n\"1016694\"\n,\n\"1016709\"\n,\n\"1016810\"\n,\n\"1016982\"\n,\n\"1016996\"\n,\n\"1017007\"\n,\n\"1017038\"\n,\n\"1017069\"\n,\n\"1017170\"\n,\n\"1017232\"\n,\n\"1017277\"\n,\n\"1017485\"\n,\n\"1017631\"\n,\n\"1017805\"\n,\n\"1017836\"\n,\n\"1017950\"\n,\n\"1017964\"\n,\n\"1017978\"\n,\n\"1018228\"\n,\n\"1018422\"\n,\n\"1018436\"\n,\n\"1018453\"\n,\n\"1018484\"\n,\n\"1018520\"\n,\n\"1018658\"\n,\n\"1018741\"\n,\n\"1018818\"\n,\n\"1018849\"\n,\n\"1018932\"\n,\n\"1019022\"\n,\n\"1019084\"\n,\n\"1019466\"\n,\n\"1019515\"\n,\n\"1019737\"\n,\n\"1019785\"\n,\n\"1020659\"\n,\n\"1022515\"\n,\n\"1023368\"\n,\n\"1024239\"\n,\n\"1024287\"\n,\n\"1024447\"\n,\n\"1026622\"\n,\n\"1027156\"\n,\n\"1027395\"\n,\n\"1029487\"\n,\n\"1029810\"\n,\n\"1030427\"\n,\n\"1030809\"\n,\n\"1031350\"\n,\n\"1031620\"\n,\n\"1031745\"\n,\n\"1032091\"\n,\n\"1032279\"\n,\n\"1032300\"\n,\n\"1032439\"\n,\n\"1033073\"\n,\n\"1033438\"\n,\n\"1033566\"\n,\n\"1034330\"\n,\n\"1034485\"\n,\n\"1034978\"\n,\n\"1035786\"\n,\n\"1035963\"\n,\n\"1036740\"\n,\n\"1036993\"\n,\n\"1037209\"\n,\n\"1037274\"\n,\n\"1037496\"\n,\n\"1038287\"\n,\n\"1039450\"\n,\n\"1039814\"\n,\n\"1040180\"\n,\n\"1040260\"\n,\n\"1040323\"\n,\n\"1040385\"\n,\n\"1041561\"\n,\n\"1041607\"\n,\n\"1042113\"\n,\n\"1042352\"\n,\n\"1043365\"\n,\n\"1043476\"\n,\n\"1043750\"\n,\n\"1043907\"\n,\n\"1044683\"\n,\n\"1044910\"\n,\n\"1045092\"\n,\n\"1045808\"\n,\n\"1046217\"\n,\n\"1046570\"\n,\n\"1047250\"\n,\n\"1048170\"\n,\n\"1048548\"\n,\n\"1048551\"\n,\n\"1049280\"\n,\n\"1049308\"\n,\n\"1049738\"\n,\n\"1049866\"\n,\n\"1049929\"\n,\n\"1050073\"\n,\n\"1051485\"\n,\n\"1052804\"\n,\n\"1054291\"\n,\n\"1054690\"\n,\n\"1056020\"\n,\n\"1056290\"\n,\n\"1056318\"\n,\n\"1057431\"\n,\n\"1057702\"\n,\n\"1058028\"\n,\n\"1058298\"\n,\n\"1058826\"\n,\n\"1059488\"\n,\n\"1059762\"\n,\n\"1059970\"\n,\n\"1060619\"\n,\n\"1060653\"\n,\n\"1060667\"\n,\n\"1061350\"\n,\n\"1061461\"\n,\n\"1062839\"\n,\n\"1064136\"\n,\n\"1064140\"\n,\n\"1064389\"\n,\n\"1064521\"\n,\n\"1064552\"\n,\n\"1064774\"\n,\n\"1066897\"\n,\n\"1067230\"\n,\n\"1067418\"\n,\n\"1067803\"\n,\n\"1068083\"\n,\n\"1068194\"\n,\n\"1068354\"\n,\n\"1068500\"\n,\n\"1069003\"\n,\n\"1069051\"\n,\n\"1069225\"\n,\n\"1070660\"\n,\n\"1070785\"\n,\n\"1070896\"\n,\n\"1070962\"\n,\n\"1071021\"\n,\n\"1071083\"\n,\n\"1071163\"\n,\n\"1071528\"\n,\n\"1072020\"\n,\n\"1072558\"\n,\n\"1072561\"\n,\n\"1072669\"\n,\n\"1073925\"\n,\n\"1074206\"\n,\n\"1074924\"\n,\n\"1075028\"\n,\n\"1075604\"\n,\n\"1076409\"\n,\n\"1076510\"\n,\n\"1077012\"\n,\n\"1077248\"\n,\n\"1077380\"\n,\n\"1077456\"\n,\n\"1077490\"\n,\n\"1078389\"\n,\n\"1079072\"\n,\n\"1080376\"\n,\n\"1081167\"\n,\n\"1081410\"\n,\n\"1081694\"\n,\n\"1081726\"\n,\n\"1082391\"\n,\n\"1082739\"\n,\n\"1082978\"\n,\n\"1083724\"\n,\n\"1083929\"\n,\n\"1084404\"\n,\n\"1085021\"\n,\n\"1086079\"\n,\n\"1086575\"\n,\n\"1086783\"\n,\n\"1087002\"\n,\n\"1087033\"\n,\n\"1087349\"\n,\n\"1088334\"\n,\n\"1088941\"\n,\n\"1089843\"\n,\n\"1090383\"\n,\n\"1090637\"\n,\n\"1090734\"\n,\n\"1091029\"\n,\n\"1091619\"\n,\n\"1091640\"\n,\n\"1092076\"\n,\n\"1092729\"\n,\n\"1092794\"\n,\n\"1093554\"\n,\n\"1093617\"\n,\n\"1094043\"\n,\n\"1094345\"\n,\n\"1094490\"\n,\n\"1094505\"\n,\n\"1095504\"\n,\n\"1096055\"\n,\n\"1096503\"\n,\n\"1097259\"\n,\n\"1097627\"\n,\n\"1097661\"\n,\n\"1098404\"\n,\n\"1098706\"\n,\n\"1099323\"\n,\n\"1099528\"\n,\n\"1099767\"\n,\n\"1099881\"\n,\n\"1100870\"\n,\n\"1100920\"\n,\n\"1101675\"\n,\n\"1101835\"\n,\n\"1101866\"\n,\n\"1102310\"\n,\n\"1103004\"\n,\n\"1103226\"\n,\n\"1103448\"\n,\n\"1103531\"\n,\n\"1103833\"\n,\n\"1103878\"\n,\n\"1103989\"\n,\n\"1104260\"\n,\n\"1104721\"\n,\n\"1105318\"\n,\n\"1106428\"\n,\n\"1107413\"\n,\n\"1107697\"\n,\n\"1108141\"\n,\n\"1108873\"\n,\n\"1108940\"\n,\n\"1109519\"\n,\n\"1110222\"\n,\n\"1110524\"\n,\n\"1110906\"\n,\n\"1112456\"\n,\n\"1112872\"\n,\n\"1113056\"\n,\n\"1113140\"\n,\n\"1113344\"\n,\n\"1113629\"\n,\n\"1114152\"\n,\n\"1114884\"\n,\n\"1115915\"\n,\n\"1116710\"\n,\n\"1116737\"\n,\n\"1118114\"\n,\n\"1118145\"\n,\n\"1118495\"\n,\n\"1118766\"\n,\n\"1119637\"\n,\n\"1119814\"\n,\n\"1120129\"\n,\n\"1120417\"\n,\n\"1120753\"\n,\n\"1120927\"\n,\n\"1121159\"\n,\n\"1122286\"\n,\n\"1122911\"\n,\n\"1123050\"\n,\n\"1123698\"\n,\n\"1123907\"\n,\n\"1123986\"\n,\n\"1124187\"\n,\n\"1124586\"\n,\n\"1125620\"\n,\n\"1125873\"\n,\n\"1125936\"\n,\n\"1126282\"\n,\n\"1126362\"\n,\n\"1126598\"\n,\n\"1127486\"\n,\n\"1128055\"\n,\n\"1128330\"\n,\n\"1128600\"\n,\n\"1129533\"\n,\n\"1129818\"\n,\n\"1130791\"\n,\n\"1131760\"\n,\n\"1132006\"\n,\n\"1132120\"\n,\n\"1132245\"\n,\n\"1132325\"\n,\n\"1132550\"\n,\n\"1132870\"\n,\n\"1133261\"\n,\n\"1134260\"\n,\n\"1134288\"\n,\n\"1134660\"\n,\n\"1134784\"\n,\n\"1134961\"\n,\n\"1137698\"\n,\n\"1138430\"\n,\n\"1138750\"\n,\n\"1139679\"\n,\n\"1139696\"\n,\n\"1139728\"\n,\n\"1139970\"\n,\n\"1140240\"\n,\n\"1140351\"\n,\n\"1140445\"\n,\n\"1141427\"\n,\n\"1141510\"\n,\n\"1142634\"\n,\n\"1142682\"\n,\n\"1142922\"\n,\n\"1144407\"\n,\n\"1146068\"\n,\n\"1146564\"\n,\n\"1147372\"\n,\n\"1147497\"\n,\n\"1147710\"\n,\n\"1148660\"\n,\n\"1149065\"\n,\n\"1149176\"\n,\n\"1149319\"\n,\n\"1150529\"\n,\n\"1150660\"\n,\n\"1151212\"\n,\n\"1151230\"\n,\n\"1151740\"\n,\n\"1152096\"\n,\n\"1152735\"\n,\n\"1153210\"\n,\n\"1153509\"\n,\n\"1153543\"\n,\n\"1153637\"\n,\n\"1154365\"\n,\n\"1154476\"\n,\n\"1154861\"\n,\n\"1155586\"\n,\n\"1155670\"\n,\n\"1156186\"\n,\n\"1157789\"\n,\n\"1158119\"\n,\n\"1158300\"\n,\n\"1158583\"\n,\n\"1159069\"\n,\n\"1160168\"\n,\n\"1160234\"\n,\n\"1161281\"\n,\n\"1162024\"\n,\n\"1162041\"\n,\n\"1163006\"\n,\n\"1163099\"\n,\n\"1163356\"\n,\n\"1163422\"\n,\n\"1164022\"\n,\n\"1164452\"\n,\n\"1165021\"\n,\n\"1165230\"\n,\n\"1165528\"\n,\n\"1165913\"\n,\n\"1166766\"\n,\n\"1166877\"\n,\n\"1167192\"\n,\n\"1167318\"\n,\n\"1168094\"\n,\n\"1168191\"\n,\n\"1168299\"\n,\n\"1168542\"\n,\n\"1172205\"\n,\n\"1172780\"\n,\n\"1173998\"\n,\n\"1174296\"\n,\n\"1175295\"\n,\n\"1176055\"\n,\n\"1176790\"\n,\n\"1177550\"\n,\n\"1178116\"\n,\n\"1178768\"\n,\n\"1179864\"\n,\n\"1180099\"\n,\n\"1180547\"\n,\n\"1181740\"\n,\n\"1182642\"\n,\n\"1183544\"\n,\n\"1183850\"\n,\n\"1184734\"\n,\n\"1185525\"\n,\n\"1187523\"\n,\n\"1189504\"\n,\n\"1189982\"\n,\n\"1191199\"\n,\n\"1191904\"\n,\n\"1192549\"\n,\n\"1193548\"\n,\n\"1196070\"\n,\n\"1196753\"\n,\n\"1196770\"\n,\n\"1196820\"\n,\n\"1197353\"\n,\n\"1197530\"\n,\n\"1197589\"\n,\n\"1197943\"\n,\n\"1197988\"\n,\n\"1198095\"\n,\n\"1198911\"\n,\n\"1200274\"\n,\n\"1200337\"\n,\n\"1200340\"\n,\n\"1200687\"\n,\n\"1203063\"\n,\n\"1203720\"\n,\n\"1203990\"\n,\n\"1204697\"\n,\n\"1204860\"\n,\n\"1204906\"\n,\n\"1205457\"\n,\n\"1205460\"\n,\n\"1205700\"\n,\n\"1205873\"\n,\n\"1205936\"\n,\n\"1206522\"\n,\n\"1207140\"\n,\n\"1207220\"\n,\n\"1207410\"\n,\n\"1208038\"\n,\n\"1208565\"\n,\n\"1209502\"\n,\n\"1209950\"\n,\n\"1210136\"\n,\n\"1210344\"\n,\n\"1210760\"\n,\n\"1210774\"\n,\n\"1211884\"\n,\n\"1212134\"\n,\n\"1212262\"\n,\n\"1212484\"\n,\n\"1212595\"\n,\n\"1213036\"\n,\n\"1213470\"\n,\n\"1213515\"\n,\n\"1214642\"\n,\n\"1215589\"\n,\n\"1215735\"\n,\n\"1215880\"\n,\n\"1215909\"\n,\n\"1216557\"\n,\n\"1216703\"\n,\n\"1217396\"\n,\n\"1217653\"\n,\n\"1217941\"\n,\n\"1218139\"\n,\n\"1218173\"\n,\n\"1218489\"\n,\n\"1218715\"\n,\n\"1218812\"\n,\n\"1219013\"\n,\n\"1219141\"\n,\n\"1219940\"\n,\n\"1220210\"\n,\n\"1220875\"\n,\n\"1220955\"\n,\n\"1221062\"\n,\n\"1221080\"\n,\n\"1221111\"\n,\n\"1222696\"\n,\n\"1222890\"\n,\n\"1222905\"\n,\n\"1223248\"\n,\n\"1223886\"\n,\n\"1223890\"\n,\n\"1224632\"\n,\n\"1224810\"\n,\n\"1224868\"\n,\n\"1225440\"\n,\n\"1226228\"\n,\n\"1226689\"\n,\n\"1227195\"\n,\n\"1227421\"\n,\n\"1227817\"\n,\n\"1228340\"\n,\n\"1228559\"\n,\n\"1228798\"\n,\n\"1228881\"\n,\n\"1229051\"\n,\n\"1229260\"\n,\n\"1229322\"\n,\n\"1229370\"\n,\n\"123 456 \"\n,\n\"1230882\"\n,\n\"1230959\"\n,\n\"1231288\"\n,\n\"1231310\"\n,\n\"1231451\"\n,\n\"1231895\"\n,\n\"1232096\"\n,\n\"1232100\"\n,\n\"1232398\"\n,\n\"1233290\"\n,\n\"1233734\"\n,\n\"1234567\"\n,\n\"12345678\"\n,\n\"1235187\"\n,\n\"1235381\"\n,\n\"1236571\"\n,\n\"1236984\"\n,\n\"1237952\"\n,\n\"1238233\"\n,\n\"1238583\"\n,\n\"1238774\"\n,\n\"1239118\"\n,\n\"1240057\"\n,\n\"1240106\"\n,\n\"1240282\"\n,\n\"1240473\"\n,\n\"1240681\"\n,\n\"1242659\"\n,\n\"1242773\"\n,\n\"1242853\"\n,\n\"1243068\"\n,\n\"1243578\"\n,\n\"1243929\"\n,\n\"1244532\"\n,\n\"1244626\"\n,\n\"1244820\"\n,\n\"1245385\"\n,\n\"1245451\"\n,\n\"1247210\"\n,\n\"1247238\"\n,\n\"1247383\"\n,\n\"1247717\"\n,\n\"1248268\"\n,\n\"1248619\"\n,\n\"1248972\"\n,\n\"1249444\"\n,\n\"1249697\"\n,\n\"1249763\"\n,\n\"1249937\"\n,\n\"1249940\"\n,\n\"1250241\"\n,\n\"1250925\"\n,\n\"1252028\"\n,\n\"1252062\"\n,\n\"1252590\"\n,\n\"1253474\"\n,\n\"1253571\"\n,\n\"1253998\"\n,\n\"1254088\"\n,\n\"1254331\"\n,\n\"1254553\"\n,\n\"1254570\"\n,\n\"1254761\"\n,\n\"1254890\"\n,\n\"1254949\"\n,\n\"1255917\"\n,\n\"1256170\"\n,\n\"1256579\"\n,\n\"1256582\"\n,\n\"1256760\"\n,\n\"1256950\"\n,\n\"1257360\"\n,\n\"1257502\"\n,\n\"1257755\"\n,\n\"1257804\"\n,\n\"1257932\"\n,\n\"1258754\"\n,\n\"1258803\"\n,\n\"1258900\"\n,\n\"1258928\"\n,\n\"1259115\"\n,\n\"1259310\"\n,\n\"1259878\"\n,\n\"1260245\"\n,\n\"1260280\"\n,\n\"1260516\"\n,\n\"1261019\"\n,\n\"1261594\"\n,\n\"1262066\"\n,\n\"1263020\"\n,\n\"1263176\"\n,\n\"1263208\"\n,\n\"1263607\"\n,\n\"1264158\"\n,\n\"1265143\"\n,\n\"1265268\"\n,\n\"1265428\"\n,\n\"1265969\"\n,\n\"1265972\"\n,\n\"1266093\"\n,\n\"1266320\"\n,\n\"1266492\"\n,\n\"1266812\"\n,\n\"1267013\"\n,\n\"1267172\"\n,\n\"1267412\"\n,\n\"1267430\"\n,\n\"1267443\"\n,\n\"1267523\"\n,\n\"1267554\"\n,\n\"1267762\"\n,\n\"1267793\"\n,\n\"1267856\"\n,\n\"1269136\"\n,\n\"1269726\"\n,\n\"1269840\"\n,\n\"1270443\"\n,\n\"1270887\"\n,\n\"1270998\"\n,\n\"1271456\"\n,\n\"1272136\"\n,\n\"1272646\"\n,\n\"1272823\"\n,\n\"1274099\"\n,\n\"1274182\"\n,\n\"1274196\"\n,\n\"1274373\"\n,\n\"1274453\"\n,\n\"1274470\"\n,\n\"1275005\"\n,\n\"1275019\"\n,\n\"1275470\"\n,\n\"1275959\"\n,\n\"1276403\"\n,\n\"1276989\"\n,\n\"1277096\"\n,\n\"1277353\"\n,\n\"1277641\"\n,\n\"1277669\"\n,\n\"1277850\"\n,\n\"1279188\"\n,\n\"1279365\"\n,\n\"1279400\"\n,\n\"1279781\"\n,\n\"1280162\"\n,\n\"1280655\"\n,\n\"1280672\"\n,\n\"1280686\"\n,\n\"1280991\"\n,\n\"1281671\"\n,\n\"1281828\"\n,\n\"1282400\"\n,\n\"1282476\"\n,\n\"1282542\"\n,\n\"1283031\"\n,\n\"1283538\"\n,\n\"1284506\"\n,\n\"1284603\"\n,\n\"1284873\"\n,\n\"1284887\"\n,\n\"1286025\"\n,\n\"1286136\"\n,\n\"1287870\"\n,\n\"1287947\"\n,\n\"1288963\"\n,\n\"1288980\"\n,\n\"1289019\"\n,\n\"1289098\"\n,\n\"1289851\"\n,\n\"1289914\"\n,\n\"1291228\"\n,\n\"1291484\"\n,\n\"1291852\"\n,\n\"1292550\"\n,\n\"1292609\"\n,\n\"1292626\"\n,\n\"1293802\"\n,\n\"1293895\"\n,\n\"1294225\"\n,\n\"1295717\"\n,\n\"1295814\"\n,\n\"1295942\"\n,\n\"1296348\"\n,\n\"1296462\"\n,\n\"1296778\"\n,\n\"1296800\"\n,\n\"1297045\"\n,\n\"1297108\"\n,\n\"1297604\"\n,\n\"1298027\"\n,\n\"1298249\"\n,\n\"1299203\"\n,\n\"1299279\"\n,\n\"1299393\"\n,\n\"1299647\"\n,\n\"1299855\"\n,\n\"1300348\"\n,\n\"1301142\"\n,\n\"1301267\"\n,\n\"1302350\"\n,\n\"1302540\"\n,\n\"1303584\"\n,\n\"1304056\"\n,\n\"1305614\"\n,\n\"1306179\"\n,\n\"1306200\"\n,\n\"1307098\"\n,\n\"1307390\"\n,\n\"1307834\"\n,\n\"1308576\"\n,\n\"1309256\"\n,\n\"1309718\"\n,\n\"1310563\"\n,\n\"1310737\"\n,\n\"1310980\"\n,\n\"1311021\"\n,\n\"1311260\"\n,\n\"1311451\"\n,\n\"1311479\"\n,\n\"1311559\"\n,\n\"1311944\"\n,\n\"1312079\"\n,\n\"1312880\"\n,\n\"1314303\"\n,\n\"1315031\"\n,\n\"1315059\"\n,\n\"1315125\"\n,\n\"1315139\"\n,\n\"1315670\"\n,\n\"1316426\"\n,\n\"1316460\"\n,\n\"1316665\"\n,\n\"1318090\"\n,\n\"1318615\"\n,\n\"1319250\"\n,\n\"1319565\"\n,\n\"1323259\"\n,\n\"1323276\"\n,\n\"1324133\"\n,\n\"1324754\"\n,\n\"1326208\"\n,\n\"1326242\"\n,\n\"1328046\"\n,\n\"1328174\"\n,\n\"1329732\"\n,\n\"1330779\"\n,\n\"1331029\"\n,\n\"1331560\"\n,\n\"1331670\"\n,\n\"1332378\"\n,\n\"1332381\"\n,\n\"1333013\"\n,\n\"1334328\"\n,\n\"1334810\"\n,\n\"1334997\"\n,\n\"1336007\"\n,\n\"1336902\"\n,\n\"1336947\"\n,\n\"1337148\"\n,\n\"1337259\"\n,\n\"1337390\"\n,\n\"1338053\"\n,\n\"1338706\"\n,\n\"1339531\"\n,\n\"1339625\"\n,\n\"1339913\"\n,\n\"1340627\"\n,\n\"1341609\"\n,\n\"1341706\"\n,\n\"1343051\"\n,\n\"1343704\"\n,\n\"1344397\"\n,\n\"1344717\"\n,\n\"1345969\"\n,\n\"1347585\"\n,\n\"1348251\"\n,\n\"1348362\"\n,\n\"1348966\"\n,\n\"1350839\"\n,\n\"1351123\"\n,\n\"1351872\"\n,\n\"1352025\"\n,\n\"1352247\"\n,\n\"1353884\"\n,\n\"1354179\"\n,\n\"1355612\"\n,\n\"1357384\"\n,\n\"1358779\"\n,\n\"1359126\"\n,\n\"1359720\"\n,\n\"1360638\"\n,\n\"1362955\"\n,\n\"1363604\"\n,\n\"1363780\"\n,\n\"1364905\"\n,\n\"1365185\"\n,\n\"1367822\"\n,\n\"1370007\"\n,\n\"1370947\"\n,\n\"1371470\"\n,\n\"1372310\"\n,\n\"1373310\"\n,\n\"1373496\"\n,\n\"1373767\"\n,\n\"1373784\"\n,\n\"1374305\"\n,\n\"1374367\"\n,\n\"1374450\"\n,\n\"1374589\"\n,\n\"1374974\"\n,\n\"1375238\"\n,\n\"1376143\"\n,\n\"1376240\"\n,\n\"1376396\"\n,\n\"1376508\"\n,\n\"1376844\"\n,\n\"1377541\"\n,\n\"1377683\"\n,\n\"1377906\"\n,\n\"1377937\"\n,\n\"1378651\"\n,\n\"1378728\"\n,\n\"1378762\"\n,\n\"1380729\"\n,\n\"1384149\"\n,\n\"1384197\"\n,\n\"1384312\"\n,\n\"1385037\"\n,\n\"1385308\"\n,\n\"1385498\"\n,\n\"1386150\"\n,\n\"1386213\"\n,\n\"1386723\"\n,\n\"1389286\"\n,\n\"1390451\"\n,\n\"1390545\"\n,\n\"1392796\"\n,\n\"1392908\"\n,\n\"1393414\"\n,\n\"1394458\"\n,\n\"1394732\"\n,\n\"1396970\"\n,\n\"1397837\"\n,\n\"1399037\"\n,\n\"1399120\"\n,\n\"1399200\"\n,\n\"1399692\"\n,\n\"1400393\"\n,\n\"1401278\"\n,\n\"1403484\"\n,\n\"1403520\"\n,\n\"1403804\"\n,\n\"1405212\"\n,\n\"1406877\"\n,\n\"1409857\"\n,\n\"1410349\"\n,\n\"1410828\"\n,\n\"1416471\"\n,\n\"1419656\"\n,\n\"1421133\"\n,\n\"1421550\"\n,\n\"1421660\"\n,\n\"1422451\"\n,\n\"1422642\"\n,\n\"1423322\"\n,\n\"1425268\"\n,\n\"1425560\"\n,\n\"1428505\"\n,\n\"1428966\"\n,\n\"1430409\"\n,\n\"1430762\"\n,\n\"1432663\"\n,\n\"1432951\"\n,\n\"1433902\"\n,\n\"1435338\"\n,\n\"1435865\"\n,\n\"1437752\"\n,\n\"1439126\"\n,\n\"1441880\"\n,\n\"1443621\"\n,\n\"1445966\"\n,\n\"1446300\"\n,\n\"1449594\"\n,\n\"1450739\"\n,\n\"1451440\"\n,\n\"1451821\"\n,\n\"1457014\"\n,\n\"1457794\"\n,\n\"1460350\"\n,\n\"1460381\"\n,\n\"1460492\"\n,\n\"1462331\"\n,\n\"1463039\"\n,\n\"1463202\"\n,\n\"1463597\"\n,\n\"1463810\"\n,\n\"1463920\"\n,\n\"1464645\"\n,\n\"1467420\"\n,\n\"1469512\"\n,\n\"1469530\"\n,\n\"1469911\"\n,\n\"1470274\"\n,\n\"1470420\"\n,\n\"1470482\"\n,\n\"1470496\"\n,\n\"1470562\"\n,\n\"1470847\"\n,\n\"1471211\"\n,\n\"1471305\"\n,\n\"1471340\"\n,\n\"1471416\"\n,\n\"1471749\"\n,\n\"1472210\"\n,\n\"1472224\"\n,\n\"1472610\"\n,\n\"1472814\"\n,\n\"1472973\"\n,\n\"1473240\"\n,\n\"1473254\"\n,\n\"1473636\"\n,\n\"1474461\"\n,\n\"1474524\"\n,\n\"1474572\"\n,\n\"1475027\"\n,\n\"1475172\"\n,\n\"1476411\"\n,\n\"1478135\"\n,\n\"1478215\"\n,\n\"1478360\"\n,\n\"1478410\"\n,\n\"1479661\"\n,\n\"1479901\"\n,\n\"1480327\"\n,\n\"1480358\"\n,\n\"1483053\"\n,\n\"1483164\"\n,\n\"1484850\"\n,\n\"1489491\"\n,\n\"1489634\"\n,\n\"1489731\"\n,\n\"1490382\"\n,\n\"1491302\"\n,\n\"1491413\"\n,\n\"1491937\"\n,\n\"1492890\"\n,\n\"1493168\"\n,\n\"1493203\"\n,\n\"1493248\"\n,\n\"1493345\"\n,\n\"1493380\"\n,\n\"1493620\"\n,\n\"1493761\"\n,\n\"1493789\"\n,\n\"1493810\"\n,\n\"1493855\"\n,\n\"1493872\"\n,\n\"1493949\"\n,\n\"1494136\"\n,\n\"1494278\"\n,\n\"1494313\"\n,\n\"1496707\"\n,\n\"1497040\"\n,\n\"1497195\"\n,\n\"1497418\"\n,\n\"1497470\"\n,\n\"1497550\"\n,\n\"1497643\"\n,\n\"1497660\"\n,\n\"1497688\"\n,\n\"1497706\"\n,\n\"1498576\"\n,\n\"1499894\"\n,\n\"1500630\"\n,\n\"1501102\"\n,\n\"1501310\"\n,\n\"1501532\"\n,\n\"1502115\"\n,\n\"1504987\"\n,\n\"1505160\"\n,\n\"1505590\"\n,\n\"1505733\"\n,\n\"1505972\"\n,\n\"1506395\"\n,\n\"1506541\"\n,\n\"1508030\"\n,\n\"1509840\"\n,\n\"1510058\"\n,\n\"1511185\"\n,\n\"1513853\"\n,\n\"1513884\"\n,\n\"1514293\"\n,\n\"1514520\"\n,\n\"1514849\"\n,\n\"1515386\"\n,\n\"1515580\"\n,\n\"1515612\"\n,\n\"1515980\"\n,\n\"1516531\"\n,\n\"1516639\"\n,\n\"1517145\"\n,\n\"1517305\"\n,\n\"1517607\"\n,\n\"1517672\"\n,\n\"1518318\"\n,\n\"1518321\"\n,\n\"1518623\"\n,\n\"1518720\"\n,\n\"1518734\"\n,\n\"1519015\"\n,\n\"1519046\"\n,\n\"1519379\"\n,\n\"1519511\"\n,\n\"1519556\"\n,\n\"1519778\"\n,\n\"1519858\"\n,\n\"1519990\"\n,\n\"1520193\"\n,\n\"1520513\"\n,\n\"1520641\"\n,\n\"1520669\"\n,\n\"1520752\"\n,\n\"1521020\"\n,\n\"1521144\"\n,\n\"1521161\"\n,\n\"1521238\"\n,\n\"1521272\"\n,\n\"1521349\"\n,\n\"1521640\"\n,\n\"1521911\"\n,\n\"1522174\"\n,\n\"1522237\"\n,\n\"1522254\"\n,\n\"1522511\"\n,\n\"1522720\"\n,\n\"1522800\"\n,\n\"1522830\"\n,\n\"1523045\"\n,\n\"1523173\"\n,\n\"1523302\"\n,\n\"1523590\"\n,\n\"1523683\"\n,\n\"1524075\"\n,\n\"1525060\"\n,\n\"1525110\"\n,\n\"1525490\"\n,\n\"1525650\"\n,\n\"1526295\"\n,\n\"1526410\"\n,\n\"1526760\"\n,\n\"1527118\"\n,\n\"1527437\"\n,\n\"1528068\"\n,\n\"1528929\"\n,\n\"1529879\"\n,\n\"1529931\"\n,\n\"1530277\"\n,\n\"1530468\"\n,\n\"1531950\"\n,\n\"1532771\"\n,\n\"1532820\"\n,\n\"1533129\"\n,\n\"1533274\"\n,\n\"1533288\"\n,\n\"1533465\"\n,\n\"1533611\"\n,\n\"1534319\"\n,\n\"1534735\"\n,\n\"1535415\"\n,\n\"1535925\"\n,\n\"1536080\"\n,\n\"1536379\"\n,\n\"1536396\"\n,\n\"1537059\"\n,\n\"1537701\"\n,\n\"1537968\"\n,\n\"1538682\"\n,\n\"1538776\"\n,\n\"1539248\"\n,\n\"1539393\"\n,\n\"1539505\"\n,\n\"1540812\"\n,\n\"1540860\"\n,\n\"1543025\"\n,\n\"1543330\"\n,\n\"1543472\"\n,\n\"1543726\"\n,\n\"1543743\"\n,\n\"1544471\"\n,\n\"1545037\"\n,\n\"1545293\"\n,\n\"1545360\"\n,\n\"1545453\"\n,\n\"1545533\"\n,\n\"1545710\"\n,\n\"1546449\"\n,\n\"1546900\"\n,\n\"1547340\"\n,\n\"1547434\"\n,\n\"1547660\"\n,\n\"1548176\"\n,\n\"1548260\"\n,\n\"1549016\"\n,\n\"1549127\"\n,\n\"1549845\"\n,\n\"1549990\"\n,\n\"1550642\"\n,\n\"1550816\"\n,\n\"1550878\"\n,\n\"1551145\"\n,\n\"1551829\"\n,\n\"1551850\"\n,\n\"1551880\"\n,\n\"1553334\"\n,\n\"1554489\"\n,\n\"1554569\"\n,\n\"1554826\"\n,\n\"1554888\"\n,\n\"1555110\"\n,\n\"1555297\"\n,\n\"1555350\"\n,\n\"1555394\"\n,\n\"1555890\"\n,\n\"1555905\"\n,\n\"1556203\"\n,\n\"1556727\"\n,\n\"1557552\"\n,\n\"1558104\"\n,\n\"1558423\"\n,\n\"1558437\"\n,\n\"1558485\"\n,\n\"1558950\"\n,\n\"1559134\"\n,\n\"1559245\"\n,\n\"1559325\"\n,\n\"1559772\"\n,\n\"1560119\"\n,\n\"1560570\"\n,\n\"1560760\"\n,\n\"1561041\"\n,\n\"1561055\"\n,\n\"1561170\"\n,\n\"1561229\"\n,\n\"1561263\"\n,\n\"1561790\"\n,\n\"1561853\"\n,\n\"1562120\"\n,\n\"1562419\"\n,\n\"1562578\"\n,\n\"1563292\"\n,\n\"1563497\"\n,\n\"1563546\"\n,\n\"1564070\"\n,\n\"1564288\"\n,\n\"1564306\"\n,\n\"1564420\"\n,\n\"1564500\"\n,\n\"1564545\"\n,\n\"1564611\"\n,\n\"1564798\"\n,\n\"1564900\"\n,\n\"1565145\"\n,\n\"1565336\"\n,\n\"1565770\"\n,\n\"1566224\"\n,\n\"1566272\"\n,\n\"1566446\"\n,\n\"1566828\"\n,\n\"1566845\"\n,\n\"1566939\"\n,\n\"1567015\"\n,\n\"1567050\"\n,\n\"1567334\"\n,\n\"1567365\"\n,\n\"1567764\"\n,\n\"1568031\"\n,\n\"1568298\"\n,\n\"1568492\"\n,\n\"1568555\"\n,\n\"1568701\"\n,\n\"1568860\"\n,\n\"1569679\"\n,\n\"1569811\"\n,\n\"1570094\"\n,\n\"1570684\"\n,\n\"1571173\"\n,\n\"1571621\"\n,\n\"1571746\"\n,\n\"1572061\"\n,\n\"1572266\"\n,\n\"1572430\"\n,\n\"1573983\"\n,\n\"1574726\"\n,\n\"1575343\"\n,\n\"1575499\"\n,\n\"1575503\"\n,\n\"1576419\"\n,\n\"1576689\"\n,\n\"1576883\"\n,\n\"1576963\"\n,\n\"1577529\"\n,\n\"1577851\"\n,\n\"1578115\"\n,\n\"1578337\"\n,\n\"1578371\"\n,\n\"1578385\"\n,\n\"1578927\"\n,\n\"1579051\"\n,\n\"1579319\"\n,\n\"1579336\"\n,\n\"1579402\"\n,\n\"1579686\"\n,\n\"1580164\"\n,\n\"1580372\"\n,\n\"1581323\"\n,\n\"1581673\"\n,\n\"1582048\"\n,\n\"1582193\"\n,\n\"1582273\"\n,\n\"1582290\"\n,\n\"1583828\"\n,\n\"1584400\"\n,\n\"1584539\"\n,\n\"1585111\"\n,\n\"1585971\"\n,\n\"1586190\"\n,\n\"1586270\"\n,\n\"1586332\"\n,\n\"1586651\"\n,\n\"1587074\"\n,\n\"1587168\"\n,\n\"1587536\"\n,\n\"1587620\"\n,\n\"1587966\"\n,\n\"1588264\"\n,\n\"1588615\"\n,\n\"1590140\"\n,\n\"1590584\"\n,\n\"1590620\"\n,\n\"1590918\"\n,\n\"1591677\"\n,\n\"1592197\"\n,\n\"1592468\"\n,\n\"1593179\"\n,\n\"1593786\"\n,\n\"1593835\"\n,\n\"1593852\"\n,\n\"1594563\"\n,\n\"1594580\"\n,\n\"1595243\"\n,\n\"1596079\"\n,\n\"1596082\"\n,\n\"1596096\"\n,\n\"1596433\"\n,\n\"1596610\"\n,\n\"1597064\"\n,\n\"1598077\"\n,\n\"1598365\"\n,\n\"1598396\"\n,\n\"1598636\"\n,\n\"1598795\"\n,\n\"1599028\"\n,\n\"1599298\"\n,\n\"1599302\"\n,\n\"1599427\"\n,\n\"1599590\"\n,\n\"1599906\"\n,\n\"1600322\"\n,\n\"1600669\"\n,\n\"1600718\"\n,\n\"1600721\"\n,\n\"1600829\"\n,\n\"1602365\"\n,\n\"1603891\"\n,\n\"1604523\"\n,\n\"1605009\"\n,\n\"1605185\"\n,\n\"1606264\"\n,\n\"1607201\"\n,\n\"1607374\"\n,\n\"1607534\"\n,\n\"1607711\"\n,\n\"1609435\"\n,\n\"1610534\"\n,\n\"1611214\"\n,\n\"1611293\"\n,\n\"1611390\"\n,\n\"1611502\"\n,\n\"1611578\"\n,\n\"1611804\"\n,\n\"1611977\"\n,\n\"1612626\"\n,\n\"1612674\"\n,\n\"1612834\"\n,\n\"1612879\"\n,\n\"1613209\"\n,\n\"1613545\"\n,\n\"1613639\"\n,\n\"1613673\"\n,\n\"1614225\"\n,\n\"1614464\"\n,\n\"1614478\"\n,\n\"1614513\"\n,\n\"1615161\"\n,\n\"1615366\"\n,\n\"1615480\"\n,\n\"1615862\"\n,\n\"1615908\"\n,\n\"1615956\"\n,\n\"1616508\"\n,\n\"1616733\"\n,\n\"1616795\"\n,\n\"1617302\"\n,\n\"1617316\"\n,\n\"1617444\"\n,\n\"1617541\"\n,\n\"1618728\"\n,\n\"1619030\"\n,\n\"1619171\"\n,\n\"1619296\"\n,\n\"1619633\"\n,\n\"1619647\"\n,\n\"1620076\"\n,\n\"1620413\"\n,\n\"1620586\"\n,\n\"1621204\"\n,\n\"1622110\"\n,\n\"1622203\"\n,\n\"1622393\"\n,\n\"1623264\"\n,\n\"1624628\"\n,\n\"1624680\"\n,\n\"1626147\"\n,\n\"1626164\"\n,\n\"1626200\"\n,\n\"1626386\"\n,\n\"1626563\"\n,\n\"1626710\"\n,\n\"1626834\"\n,\n\"1627035\"\n,\n\"1627194\"\n,\n\"1627403\"\n,\n\"1627625\"\n,\n\"1627740\"\n,\n\"1628003\"\n,\n\"1628176\"\n,\n\"1628527\"\n,\n\"1628797\"\n,\n\"1629033\"\n,\n\"1629717\"\n,\n\"1631561\"\n,\n\"1631957\"\n,\n\"1632530\"\n,\n\"1632574\"\n,\n\"1632800\"\n,\n\"1633525\"\n,\n\"1633924\"\n,\n\"1634604\"\n,\n\"1634809\"\n,\n\"1635138\"\n,\n\"1635380\"\n,\n\"1636935\"\n,\n\"1636952\"\n,\n\"1637650\"\n,\n\"1638950\"\n,\n\"1639165\"\n,\n\"1639373\"\n,\n\"1639613\"\n,\n\"1639661\"\n,\n\"1641600\"\n,\n\"1641853\"\n,\n\"1642165\"\n,\n\"1645544\"\n,\n\"1648302\"\n,\n\"1648320\"\n,\n\"1648750\"\n,\n\"1651236\"\n,\n\"1651937\"\n,\n\"1653380\"\n,\n\"1653761\"\n,\n\"1654757\"\n,\n\"1654774\"\n,\n\"1654951\"\n,\n\"1655277\"\n,\n\"1655388\"\n,\n\"1655790\"\n,\n\"1655822\"\n,\n\"1655836\"\n,\n\"1656120\"\n,\n\"1657147\"\n,\n\"1657404\"\n,\n\"1657577\"\n,\n\"1657626\"\n,\n\"1658018\"\n,\n\"1658212\"\n,\n\"1658323\"\n,\n\"1658385\"\n,\n\"1658642\"\n,\n\"1658958\"\n,\n\"1659128\"\n,\n\"1660133\"\n,\n\"1660390\"\n,\n\"1660928\"\n,\n\"1661066\"\n,\n\"1661368\"\n,\n\"1661496\"\n,\n\"1661660\"\n,\n\"1661798\"\n,\n\"1662020\"\n,\n\"1662051\"\n,\n\"1662128\"\n,\n\"1662180\"\n,\n\"1662336\"\n,\n\"1662815\"\n,\n\"1663047\"\n,\n\"1663800\"\n,\n\"1663911\"\n,\n\"1664029\"\n,\n\"1664050\"\n,\n\"1664285\"\n,\n\"1664990\"\n,\n\"1665475\"\n,\n\"1665524\"\n,\n\"1665538\"\n,\n\"1665666\"\n,\n\"1665777\"\n,\n\"1666000\"\n,\n\"1666075\"\n,\n\"1666332\"\n,\n\"1666762\"\n,\n\"1666919\"\n,\n\"1667137\"\n,\n\"1667140\"\n,\n\"1667154\"\n,\n\"1667345\"\n,\n\"1667393\"\n,\n\"1667490\"\n,\n\"1667519\"\n,\n\"1667584\"\n,\n\"1667647\"\n,\n\"1667807\"\n,\n\"1668025\"\n,\n\"1669978\"\n,\n\"1670380\"\n,\n\"1670439\"\n,\n\"1670540\"\n,\n\"1670647\"\n,\n\"1671566\"\n,\n\"1671601\"\n,\n\"1671788\"\n,\n\"1672072\"\n,\n\"1672326\"\n,\n\"1672388\"\n,\n\"1672503\"\n,\n\"1672805\"\n,\n\"1673040\"\n,\n\"1673068\"\n,\n\"1673308\"\n,\n\"1673484\"\n,\n\"1673644\"\n,\n\"1674372\"\n,\n\"1674532\"\n,\n\"1674768\"\n,\n\"1674771\"\n,\n\"1675528\"\n,\n\"1675611\"\n,\n\"1675820\"\n,\n\"1675881\"\n,\n\"1676416\"\n,\n\"1676783\"\n,\n\"1676797\"\n,\n\"1676832\"\n,\n\"1676846\"\n,\n\"1676930\"\n,\n\"1676960\"\n,\n\"1677286\"\n,\n\"1677876\"\n,\n\"1678670\"\n,\n\"1679139\"\n,\n\"1679381\"\n,\n\"1679746\"\n,\n\"1679906\"\n,\n\"1679937\"\n,\n\"1680637\"\n,\n\"1680654\"\n,\n\"1680828\"\n,\n\"1681379\"\n,\n\"1681400\"\n,\n\"1681556\"\n,\n\"1681733\"\n,\n\"1681813\"\n,\n\"1682777\"\n,\n\"1683107\"\n,\n\"1683266\"\n,\n\"1683329\"\n,\n\"1683460\"\n,\n\"1684251\"\n,\n\"1684872\"\n,\n\"1685220\"\n,\n\"1685486\"\n,\n\"1685730\"\n,\n\"1686010\"\n,\n\"1686440\"\n,\n\"1687099\"\n,\n\"1687196\"\n,\n\"1687630\"\n,\n\"1687707\"\n,\n\"1687741\"\n,\n\"1687772\"\n,\n\"1687980\"\n,\n\"1688546\"\n,\n\"1688691\"\n,\n\"1688882\"\n,\n\"1689004\"\n,\n\"1689129\"\n,\n\"1689576\"\n,\n\"1690134\"\n,\n\"1690627\"\n,\n\"1690658\"\n,\n\"1690835\"\n,\n\"1690870\"\n,\n\"1691070\"\n,\n\"1691133\"\n,\n\"1691310\"\n,\n\"1691515\"\n,\n\"1691834\"\n,\n\"1692146\"\n,\n\"1692257\"\n,\n\"1692306\"\n,\n\"1693930\"\n,\n\"1694255\"\n,\n\"1694290\"\n,\n\"1694366\"\n,\n\"1694383\"\n,\n\"1694415\"\n,\n\"1694509\"\n,\n\"1694588\"\n,\n\"1694717\"\n,\n\"1694973\"\n,\n\"1695109\"\n,\n\"1695400\"\n,\n\"1695431\"\n,\n\"1695476\"\n,\n\"1696156\"\n,\n\"1696489\"\n,\n\"1696524\"\n,\n\"1696541\"\n,\n\"1696780\"\n,\n\"1696830\"\n,\n\"1696888\"\n,\n\"1696910\"\n,\n\"1697270\"\n,\n\"1697460\"\n,\n\"1697474\"\n,\n\"1697634\"\n,\n\"1697887\"\n,\n\"1697940\"\n,\n\"1698331\"\n,\n\"1698584\"\n,\n\"1698970\"\n,\n\"1699011\"\n,\n\"1699025\"\n,\n\"1699167\"\n,\n\"1699361\"\n,\n\"1699455\"\n,\n\"1699486\"\n,\n\"1699615\"\n,\n\"1699760\"\n,\n\"1699979\"\n,\n\"1700080\"\n,\n\"1700108\"\n,\n\"1700715\"\n,\n\"1700860\"\n,\n\"1701266\"\n,\n\"1701270\"\n,\n\"1701350\"\n,\n\"1701488\"\n,\n\"1701568\"\n,\n\"1701599\"\n,\n\"1701665\"\n,\n\"1701780\"\n,\n\"1702110\"\n,\n\"1702282\"\n,\n\"1702700\"\n,\n\"1703056\"\n,\n\"1703198\"\n,\n\"1703264\"\n,\n\"1703791\"\n,\n\"1703837\"\n,\n\"1704360\"\n,\n\"1704499\"\n,\n\"1704548\"\n,\n\"1704756\"\n,\n\"1705440\"\n,\n\"1705600\"\n,\n\"1705630\"\n,\n\"1705852\"\n,\n\"1705977\"\n,\n\"1706147\"\n,\n\"1706258\"\n,\n\"1706550\"\n,\n\"1706626\"\n,\n\"1706723\"\n,\n\"1706993\"\n,\n\"1707194\"\n,\n\"1707209\"\n,\n\"1707260\"\n,\n\"1707593\"\n,\n\"1707642\"\n,\n\"1707992\"\n,\n\"1708384\"\n,\n\"1708544\"\n,\n\"1708669\"\n,\n\"1708909\"\n,\n\"1709591\"\n,\n\"1709925\"\n,\n\"1710018\"\n,\n\"1710066\"\n,\n\"1710608\"\n,\n\"1710625\"\n,\n\"1711079\"\n,\n\"1711287\"\n,\n\"1711655\"\n,\n\"1711690\"\n,\n\"1711766\"\n,\n\"1712654\"\n,\n\"1712703\"\n,\n\"1713001\"\n,\n\"1713240\"\n,\n\"1713764\"\n,\n\"1713795\"\n,\n\"1713830\"\n,\n\"1713910\"\n,\n\"1714489\"\n,\n\"1714715\"\n,\n\"1714985\"\n,\n\"1715460\"\n,\n\"1715967\"\n,\n\"1715984\"\n,\n\"1716009\"\n,\n\"1716057\"\n,\n\"1716265\"\n,\n\"1716376\"\n,\n\"1716890\"\n,\n\"1716997\"\n,\n\"1717119\"\n,\n\"1717136\"\n,\n\"1717327\"\n,\n\"1717344\"\n,\n\"1717518\"\n,\n\"1717680\"\n,\n\"1717791\"\n,\n\"1718197\"\n,\n\"1718263\"\n,\n\"1718517\"\n,\n\"1718628\"\n,\n\"1718631\"\n,\n\"1718884\"\n,\n\"1718898\"\n,\n\"1719502\"\n,\n\"1719564\"\n,\n\"1719595\"\n,\n\"1719818\"\n,\n\"1720504\"\n,\n\"1720663\"\n,\n\"1720677\"\n,\n\"1720979\"\n,\n\"1721565\"\n,\n\"1721693\"\n,\n\"1722010\"\n,\n\"1722120\"\n,\n\"1723098\"\n,\n\"1723307\"\n,\n\"1723501\"\n,\n\"1723865\"\n,\n\"1723882\"\n,\n\"1723976\"\n,\n\"1724209\"\n,\n\"1724212\"\n,\n\"1724385\"\n,\n\"1724465\"\n,\n\"1724479\"\n,\n\"1724531\"\n,\n\"1724864\"\n,\n\"1725145\"\n,\n\"1725353\"\n,\n\"1725495\"\n,\n\"1725863\"\n,\n\"1726113\"\n,\n\"1726290\"\n,\n\"1726304\"\n,\n\"1726668\"\n,\n\"1727268\"\n,\n\"1727271\"\n,\n\"1727379\"\n,\n\"1727431\"\n,\n\"1727667\"\n,\n\"1727733\"\n,\n\"1728045\"\n,\n\"1728187\"\n,\n\"1728524\"\n,\n\"1728715\"\n,\n\"1728843\"\n,\n\"1729155\"\n,\n\"1729218\"\n,\n\"1729221\"\n,\n\"1729235\"\n,\n\"1729554\"\n,\n\"1729651\"\n,\n\"1730112\"\n,\n\"1730157\"\n,\n\"1730268\"\n,\n\"1730285\"\n,\n\"1730334\"\n,\n\"1730573\"\n,\n\"1731809\"\n,\n\"1731860\"\n,\n\"1732092\"\n,\n\"1732603\"\n,\n\"1732617\"\n,\n\"1732651\"\n,\n\"1732856\"\n,\n\"1733012\"\n,\n\"1733251\"\n,\n\"1733570\"\n,\n\"1734042\"\n,\n\"1734170\"\n,\n\"1734313\"\n,\n\"1734570\"\n,\n\"1734920\"\n,\n\"1735055\"\n,\n\"1735135\"\n,\n\"1736120\"\n,\n\"1736339\"\n,\n\"1736467\"\n,\n\"1736932\"\n,\n\"1737258\"\n,\n\"1737275\"\n,\n\"1738129\"\n,\n\"1738690\"\n,\n\"1738719\"\n,\n\"1738722\"\n,\n\"1738958\"\n,\n\"1739290\"\n,\n\"1739416\"\n,\n\"1739530\"\n,\n\"1739575\"\n,\n\"1739610\"\n,\n\"1739669\"\n,\n\"1740181\"\n,\n\"1740195\"\n,\n\"1740213\"\n,\n\"1740803\"\n,\n\"1741066\"\n,\n\"1741900\"\n,\n\"1744112\"\n,\n\"1744813\"\n,\n\"1744830\"\n,\n\"1745666\"\n,\n\"1745812\"\n,\n\"1745891\"\n,\n\"1746297\"\n,\n\"1746412\"\n,\n\"1746679\"\n,\n\"1746682\"\n,\n\"1747030\"\n,\n\"1748344\"\n,\n\"1748410\"\n,\n\"1749072\"\n,\n\"1751615\"\n,\n\"1751632\"\n,\n\"1751726\"\n,\n\"1751760\"\n,\n\"1751840\"\n,\n\"1754470\"\n,\n\"1754691\"\n,\n\"1754879\"\n,\n\"1755816\"\n,\n\"1756530\"\n,\n\"1756766\"\n,\n\"1757113\"\n,\n\"1757130\"\n,\n\"1757158\"\n,\n\"1757401\"\n,\n\"1757720\"\n,\n\"1757779\"\n,\n\"1758223\"\n,\n\"1761493\"\n,\n\"1762538\"\n,\n\"1762572\"\n,\n\"1762763\"\n,\n\"1762985\"\n,\n\"1765490\"\n,\n\"1768150\"\n,\n\"1768418\"\n,\n\"1769740\"\n,\n\"1769850\"\n,\n\"1770581\"\n,\n\"1772465\"\n,\n\"1772611\"\n,\n\"1772642\"\n,\n\"1773863\"\n,\n\"1773877\"\n,\n\"1774100\"\n,\n\"1774175\"\n,\n\"1774782\"\n,\n\"1775160\"\n,\n\"1775210\"\n,\n\"1775223\"\n,\n\"1775972\"\n,\n\"1775990\"\n,\n\"1776059\"\n,\n\"1776350\"\n,\n\"1776618\"\n,\n\"1778009\"\n,\n\"1778140\"\n,\n\"1778775\"\n,\n\"1779220\"\n,\n\"1779920\"\n,\n\"1780599\"\n,\n\"1780808\"\n,\n\"1781598\"\n,\n\"1781904\"\n,\n\"1782597\"\n,\n\"1783437\"\n,\n\"1783756\"\n,\n\"1784613\"\n,\n\"1784901\"\n,\n\"1784994\"\n,\n\"1785550\"\n,\n\"1785577\"\n,\n\"1785580\"\n,\n\"1786243\"\n,\n\"1786417\"\n,\n\"1786958\"\n,\n\"1786975\"\n,\n\"1787641\"\n,\n\"1789188\"\n,\n\"1789320\"\n,\n\"1789972\"\n,\n\"1790131\"\n,\n\"1791530\"\n,\n\"1791543\"\n,\n\"1791893\"\n,\n\"1793400\"\n,\n\"1794665\"\n,\n\"1794842\"\n,\n\"1795584\"\n,\n\"1796060\"\n,\n\"1796250\"\n,\n\"1796840\"\n,\n\"1797468\"\n,\n\"1799067\"\n,\n\"1799421\"\n,\n\"1799737\"\n,\n\"1800281\"\n,\n\"1800726\"\n,\n\"1800774\"\n,\n\"1800788\"\n,\n\"1801229\"\n,\n\"1801406\"\n,\n\"1802915\"\n,\n\"1803914\"\n,\n\"1804097\"\n,\n\"1805960\"\n,\n\"1806127\"\n,\n\"1806304\"\n,\n\"1806321\"\n,\n\"1806446\"\n,\n\"1806751\"\n,\n\"1808205\"\n,\n\"1808320\"\n,\n\"1808395\"\n,\n\"1808621\"\n,\n\"1809235\"\n,\n\"1809759\"\n,\n\"1810046\"\n,\n\"1810109\"\n,\n\"1811572\"\n,\n\"1811891\"\n,\n\"1812460\"\n,\n\"1814441\"\n,\n\"1815950\"\n,\n\"1815981\"\n,\n\"1816010\"\n,\n\"1816311\"\n,\n\"1816405\"\n,\n\"1816453\"\n,\n\"1816498\"\n,\n\"1816520\"\n,\n\"1816600\"\n,\n\"1816790\"\n,\n\"1816821\"\n,\n\"1817195\"\n,\n\"1817213\"\n,\n\"1817227\"\n,\n\"1817310\"\n,\n\"1817497\"\n,\n\"1817515\"\n,\n\"1817529\"\n,\n\"1817546\"\n,\n\"1817550\"\n,\n\"1817563\"\n,\n\"1817577\"\n,\n\"1817609\"\n,\n\"1817612\"\n,\n\"1817674\"\n,\n\"1817785\"\n,\n\"1817799\"\n,\n\"1818132\"\n,\n\"1818150\"\n,\n\"1818288\"\n,\n\"1818354\"\n,\n\"1818465\"\n,\n\"1818559\"\n,\n\"1818593\"\n,\n\"1818753\"\n,\n\"1818802\"\n,\n\"1818927\"\n,\n\"1818958\"\n,\n\"1819034\"\n,\n\"1819065\"\n,\n\"1819100\"\n,\n\"1819145\"\n,\n\"1819176\"\n,\n\"1819211\"\n,\n\"1819242\"\n,\n\"1819256\"\n,\n\"1819260\"\n,\n\"1819305\"\n,\n\"1819340\"\n,\n\"1819433\"\n,\n\"1819669\"\n,\n\"1819690\"\n,\n\"1819783\"\n,\n\"1819926\"\n,\n\"1819957\"\n,\n\"1819974\"\n,\n\"1820040\"\n,\n\"1820070\"\n,\n\"1820084\"\n,\n\"1820181\"\n,\n\"1820421\"\n,\n\"1820435\"\n,\n\"1820550\"\n,\n\"1820660\"\n,\n\"1820674\"\n,\n\"1820691\"\n,\n\"1820706\"\n,\n\"1820723\"\n,\n\"1820737\"\n,\n\"1820740\"\n,\n\"1820754\"\n,\n\"1820799\"\n,\n\"1820882\"\n,\n\"1820959\"\n,\n\"1820962\"\n,\n\"1821146\"\n,\n\"1821434\"\n,\n\"1821465\"\n,\n\"1821528\"\n,\n\"1821559\"\n,\n\"1821608\"\n,\n\"1821705\"\n,\n\"1821719\"\n,\n\"1821798\"\n,\n\"1821847\"\n,\n\"1822145\"\n,\n\"1822162\"\n,\n\"1822225\"\n,\n\"1822273\"\n,\n\"1822290\"\n,\n\"1822481\"\n,\n\"1822592\"\n,\n\"1822641\"\n,\n\"1822721\"\n,\n\"1822749\"\n,\n\"1822770\"\n,\n\"1822801\"\n,\n\"1822943\"\n,\n\"1822988\"\n,\n\"1823033\"\n,\n\"1823047\"\n,\n\"1823064\"\n,\n\"1823130\"\n,\n\"1823349\"\n,\n\"1823450\"\n,\n\"1823509\"\n,\n\"1823640\"\n,\n\"1823925\"\n,\n\"1824094\"\n,\n\"1824210\"\n,\n\"1824237\"\n,\n\"1824271\"\n,\n\"1824365\"\n,\n\"1824382\"\n,\n\"1824938\"\n,\n\"1825267\"\n,\n\"1825427\"\n,\n\"1825670\"\n,\n\"1825732\"\n,\n\"1826092\"\n,\n\"1826301\"\n,\n\"1826412\"\n,\n\"1826648\"\n,\n\"1826696\"\n,\n\"1827123\"\n,\n\"1827171\"\n,\n\"1827248\"\n,\n\"1827328\"\n,\n\"1827456\"\n,\n\"1827522\"\n,\n\"1827553\"\n,\n\"1827921\"\n,\n\"1828220\"\n,\n\"1828344\"\n,\n\"1828441\"\n,\n\"1828854\"\n,\n\"1829551\"\n,\n\"1829600\"\n,\n\"1829933\"\n,\n\"1830009\"\n,\n\"1830123\"\n,\n\"1830540\"\n,\n\"1830602\"\n,\n\"1830713\"\n,\n\"1831965\"\n,\n\"1832294\"\n,\n\"1832357\"\n,\n\"1832596\"\n,\n\"1832628\"\n,\n\"1832645\"\n,\n\"1832805\"\n,\n\"1832840\"\n,\n\"1833006\"\n,\n\"1833068\"\n,\n\"1833405\"\n,\n\"1833804\"\n,\n\"1834227\"\n,\n\"1834230\"\n,\n\"1834341\"\n,\n\"1834418\"\n,\n\"1834452\"\n,\n\"1834529\"\n,\n\"1834771\"\n,\n\"1835323\"\n,\n\"1835479\"\n,\n\"1835545\"\n,\n\"1836672\"\n,\n\"1836894\"\n,\n\"1836974\"\n,\n\"1837207\"\n,\n\"1837318\"\n,\n\"1837429\"\n,\n\"1837862\"\n,\n\"1837880\"\n,\n\"1837973\"\n,\n\"1838015\"\n,\n\"1838046\"\n,\n\"1838191\"\n,\n\"1838764\"\n,\n\"1839125\"\n,\n\"1839381\"\n,\n\"1840130\"\n,\n\"1840494\"\n,\n\"1840703\"\n,\n\"1840908\"\n,\n\"1840956\"\n,\n\"1841077\"\n,\n\"1841160\"\n,\n\"1841556\"\n,\n\"1841587\"\n,\n\"1842142\"\n,\n\"1842430\"\n,\n\"1842461\"\n,\n\"1843155\"\n,\n\"1843297\"\n,\n\"1843460\"\n,\n\"1843491\"\n,\n\"1844012\"\n,\n\"1844057\"\n,\n\"1844248\"\n,\n\"1844279\"\n,\n\"1844376\"\n,\n\"1844584\"\n,\n\"1844620\"\n,\n\"1844664\"\n,\n\"1844713\"\n,\n\"1844838\"\n,\n\"1845136\"\n,\n\"1845264\"\n,\n\"1845389\"\n,\n\"1846250\"\n,\n\"1846676\"\n,\n\"1846693\"\n,\n\"1847010\"\n,\n\"1847151\"\n,\n\"1847520\"\n,\n\"1847547\"\n,\n\"1847581\"\n,\n\"1848213\"\n,\n\"1848227\"\n,\n\"1848230\"\n,\n\"1848275\"\n,\n\"1848289\"\n,\n\"1848609\"\n,\n\"1848820\"\n,\n\"1849066\"\n,\n\"1849500\"\n,\n\"1849593\"\n,\n\"1850453\"\n,\n\"1850484\"\n,\n\"1850502\"\n,\n\"1850644\"\n,\n\"1850769\"\n,\n\"1851053\"\n,\n\"1851164\"\n,\n\"1851227\"\n,\n\"1851386\"\n,\n\"1851688\"\n,\n\"1851931\"\n,\n\"1852434\"\n,\n\"1852690\"\n,\n\"1852736\"\n,\n\"1853003\"\n,\n\"1853930\"\n,\n\"1854113\"\n,\n\"1854161\"\n,\n\"1854290\"\n,\n\"1854304\"\n,\n\"1854321\"\n,\n\"1854480\"\n,\n\"1854623\"\n,\n\"1854685\"\n,\n\"1854751\"\n,\n\"1854796\"\n,\n\"1855001\"\n,\n\"1855210\"\n,\n\"1855396\"\n,\n\"1855459\"\n,\n\"1855716\"\n,\n\"1855750\"\n,\n\"1855972\"\n,\n\"1856427\"\n,\n\"1856732\"\n,\n\"1857044\"\n,\n\"1857603\"\n,\n\"1857745\"\n,\n\"1857776\"\n,\n\"1857936\"\n,\n\"1858009\"\n,\n\"1858185\"\n,\n\"1858203\"\n,\n\"1858505\"\n,\n\"1858536\"\n,\n\"1858602\"\n,\n\"1858681\"\n,\n\"1858997\"\n,\n\"1859122\"\n,\n\"1859170\"\n,\n\"1859472\"\n,\n\"1860092\"\n,\n\"1860218\"\n,\n\"1860249\"\n,\n\"1860266\"\n,\n\"1860332\"\n,\n\"1860394\"\n,\n\"1860620\"\n,\n\"1860825\"\n,\n\"1861442\"\n,\n\"1861473\"\n,\n\"1861567\"\n,\n\"1861664\"\n,\n\"1861904\"\n,\n\"1861935\"\n,\n\"1862042\"\n,\n\"1862056\"\n,\n\"1862090\"\n,\n\"1862632\"\n,\n\"1862760\"\n,\n\"1862788\"\n,\n\"1862791\"\n,\n\"1863038\"\n,\n\"1864259\"\n,\n\"1864308\"\n,\n\"1864339\"\n,\n\"1865150\"\n,\n\"1865178\"\n,\n\"1865244\"\n,\n\"1865452\"\n,\n\"1865609\"\n,\n\"1866288\"\n,\n\"1866580\"\n,\n\"1866642\"\n,\n\"1866736\"\n,\n\"1867319\"\n,\n\"1867450\"\n,\n\"1868064\"\n,\n\"1868144\"\n,\n\"1868734\"\n,\n\"1868973\"\n,\n\"1869029\"\n,\n\"1869317\"\n,\n\"1869365\"\n,\n\"1869493\"\n,\n\"1870100\"\n,\n\"1870176\"\n,\n\"1870500\"\n,\n\"1870530\"\n,\n\"1871189\"\n,\n\"1871463\"\n,\n\"1871591\"\n,\n\"1871610\"\n,\n\"1871782\"\n,\n\"1871796\"\n,\n\"1871990\"\n,\n\"1872130\"\n,\n\"1872605\"\n,\n\"1872640\"\n,\n\"1872716\"\n,\n\"1872969\"\n,\n\"1873173\"\n,\n\"1873236\"\n,\n\"1873364\"\n,\n\"1873538\"\n,\n\"1873572\"\n,\n\"1874235\"\n,\n\"1874301\"\n,\n\"1874315\"\n,\n\"1874714\"\n,\n\"1874842\"\n,\n\"1874953\"\n,\n\"1875137\"\n,\n\"1875570\"\n,\n\"1875727\"\n,\n\"1875761\"\n,\n\"1876087\"\n,\n\"1876090\"\n,\n\"1876583\"\n,\n\"1876743\"\n,\n\"1876791\"\n,\n\"1877007\"\n,\n\"1877121\"\n,\n\"1877330\"\n,\n\"1877357\"\n,\n\"1878054\"\n,\n\"1878196\"\n,\n\"1878356\"\n,\n\"1878373\"\n,\n\"1878390\"\n,\n\"1878564\"\n,\n\"1878710\"\n,\n\"1878769\"\n,\n\"1879150\"\n,\n\"1879740\"\n,\n\"1879980\"\n,\n\"1880135\"\n,\n\"1880388\"\n,\n\"1880410\"\n,\n\"1880423\"\n,\n\"1880787\"\n,\n\"1880840\"\n,\n\"1881308\"\n,\n\"1881547\"\n,\n\"1881600\"\n,\n\"1881772\"\n,\n\"1881883\"\n,\n\"1882404\"\n,\n\"1882418\"\n,\n\"1882740\"\n,\n\"1882834\"\n,\n\"1882851\"\n,\n\"1883576\"\n,\n\"1883722\"\n,\n\"1883847\"\n,\n\"1883958\"\n,\n\"1883961\"\n,\n\"1884079\"\n,\n\"1884239\"\n,\n\"1884398\"\n,\n\"1884495\"\n,\n\"1884589\"\n,\n\"1884638\"\n,\n\"1884655\"\n,\n\"1884690\"\n,\n\"1884880\"\n,\n\"1884894\"\n,\n\"1884926\"\n,\n\"1884974\"\n,\n\"1886334\"\n,\n\"1886348\"\n,\n\"1886351\"\n,\n\"1886382\"\n,\n\"1886445\"\n,\n\"1886480\"\n,\n\"1886493\"\n,\n\"1886508\"\n,\n\"1887190\"\n,\n\"1887812\"\n,\n\"1887843\"\n,\n\"1887910\"\n,\n\"1887923\"\n,\n\"1888443\"\n,\n\"1888474\"\n,\n\"1888793\"\n,\n\"1888856\"\n,\n\"1888873\"\n,\n\"1888887\"\n,\n\"1888953\"\n,\n\"1889921\"\n,\n\"1889935\"\n,\n\"1890031\"\n,\n\"1890683\"\n,\n\"1890826\"\n,\n\"1890843\"\n,\n\"1890940\"\n,\n\"1891107\"\n,\n\"1891110\"\n,\n\"1891283\"\n,\n\"1891301\"\n,\n\"1891825\"\n,\n\"1891953\"\n,\n\"1892171\"\n,\n\"1892952\"\n,\n\"1893566\"\n,\n\"1893663\"\n,\n\"1893726\"\n,\n\"1893730\"\n,\n\"1893837\"\n,\n\"1893840\"\n,\n\"1894229\"\n,\n\"1894343\"\n,\n\"1894360\"\n,\n\"1894374\"\n,\n\"1894659\"\n,\n\"1896449\"\n,\n\"1897049\"\n,\n\"1897163\"\n,\n\"1897310\"\n,\n\"1897323\"\n,\n\"1898128\"\n,\n\"1898162\"\n,\n\"1898832\"\n,\n\"1898880\"\n,\n\"1898974\"\n,\n\"1898991\"\n,\n\"1900084\"\n,\n\"1901323\"\n,\n\"1901722\"\n,\n\"1905569\"\n,\n\"1905860\"\n,\n\"1905971\"\n,\n\"1906092\"\n,\n\"1906793\"\n,\n\"1907217\"\n,\n\"1908552\"\n,\n\"1909600\"\n,\n\"1909773\"\n,\n\"1909822\"\n,\n\"1909836\"\n,\n\"1910137\"\n,\n\"1910234\"\n,\n\"1911951\"\n,\n\"1912149\"\n,\n\"1912343\"\n,\n\"1913627\"\n,\n\"1913883\"\n,\n\"1914053\"\n,\n\"1914070\"\n,\n\"1914289\"\n,\n\"1914307\"\n,\n\"1915399\"\n,\n\"1916100\"\n,\n\"1916114\"\n,\n\"1916145\"\n,\n\"1918334\"\n,\n\"1919111\"\n,\n\"1919333\"\n,\n\"1919395\"\n,\n\"1921459\"\n,\n\"1921542\"\n,\n\"1922777\"\n,\n\"1922906\"\n,\n\"1923412\"\n,\n\"1923457\"\n,\n\"1925264\"\n,\n\"1925278\"\n,\n\"1925330\"\n,\n\"1925490\"\n,\n\"1925504\"\n,\n\"1925677\"\n,\n\"1926819\"\n,\n\"1930151\"\n,\n\"1930498\"\n,\n\"1930502\"\n,\n\"1931928\"\n,\n\"1931959\"\n,\n\"1932070\"\n,\n\"1932097\"\n,\n\"1934335\"\n,\n\"1934352\"\n,\n\"1934397\"\n,\n\"1934432\"\n,\n\"1935636\"\n,\n\"1938855\"\n,\n\"1942198\"\n,\n\"1943517\"\n,\n\"1944010\"\n,\n\"1944148\"\n,\n\"1944245\"\n,\n\"1944564\"\n,\n\"1945275\"\n,\n\"1945289\"\n,\n\"1945660\"\n,\n\"1945706\"\n,\n\"1945945\"\n,\n\"1950957\"\n,\n\"1951020\"\n,\n\"1952800\"\n,\n\"1953586\"\n,\n\"1953701\"\n,\n\"1957739\"\n,\n\"1957916\"\n,\n\"1965960\"\n,\n\"1968092\"\n,\n\"1968936\"\n,\n\"1969376\"\n,\n\"1970173\"\n,\n\"1970732\"\n,\n\"1971297\"\n,\n\"1972137\"\n,\n\"1972171\"\n,\n\"1972553\"\n,\n\"1972570\"\n,\n\"1972761\"\n,\n\"1972810\"\n,\n\"1973184\"\n,\n\"1973198\"\n,\n\"1973216\"\n,\n\"1973791\"\n,\n\"1974201\"\n,\n\"1974250\"\n,\n\"1974902\"\n,\n\"1974916\"\n,\n\"1974920\"\n,\n\"1975006\"\n,\n\"1975422\"\n,\n\"1975453\"\n,\n\"1975550\"\n,\n\"1975738\"\n,\n\"1975852\"\n,\n\"1975866\"\n,\n\"1976067\"\n,\n\"1976133\"\n,\n\"1976768\"\n,\n\"1976803\"\n,\n\"1976945\"\n,\n\"1977049\"\n,\n\"1978051\"\n,\n\"1978575\"\n,\n\"1978638\"\n,\n\"1978894\"\n,\n\"1979033\"\n,\n\"1979100\"\n,\n\"1979127\"\n,\n\"1979397\"\n,\n\"1979429\"\n,\n\"1979717\"\n,\n\"1979876\"\n,\n\"1979990\"\n,\n\"1980101\"\n,\n\"1980115\"\n,\n\"1980371\"\n,\n\"1980403\"\n,\n\"1980673\"\n,\n\"1980687\"\n,\n\"1980784\"\n,\n\"1980816\"\n,\n\"1980833\"\n,\n\"1980930\"\n,\n\"1980992\"\n,\n\"1981020\"\n,\n\"1981114\"\n,\n\"1981159\"\n,\n\"1981176\"\n,\n\"1981420\"\n,\n\"1981669\"\n,\n\"1981672\"\n,\n\"1982238\"\n,\n\"1982370\"\n,\n\"1982494\"\n,\n\"1982717\"\n,\n\"1983191\"\n,\n\"1983605\"\n,\n\"1984378\"\n,\n\"1984381\"\n,\n\"1984492\"\n,\n\"1984538\"\n,\n\"1984604\"\n,\n\"1984618\"\n,\n\"1984729\"\n,\n\"1985346\"\n,\n\"1985377\"\n,\n\"1985457\"\n,\n\"1985474\"\n,\n\"1985491\"\n,\n\"1985510\"\n,\n\"1985887\"\n,\n\"1985970\"\n,\n\"1985984\"\n,\n\"1986473\"\n,\n\"1986487\"\n,\n\"1986789\"\n,\n\"1986810\"\n,\n\"1987615\"\n,\n\"1987726\"\n,\n\"1988149\"\n,\n\"1988201\"\n,\n\"1988246\"\n,\n\"1988485\"\n,\n\"1988499\"\n,\n\"1989994\"\n,\n\"1990438\"\n,\n\"1990566\"\n,\n\"1990791\"\n,\n\"1990810\"\n,\n\"1991596\"\n,\n\"1991659\"\n,\n\"1991867\"\n,\n\"1992117\"\n,\n\"1992228\"\n,\n\"1992231\"\n,\n\"1992325\"\n,\n\"1992342\"\n,\n\"1994833\"\n,\n\"1994864\"\n,\n\"1994895\"\n,\n\"1996668\"\n,\n\"1998076\"\n,\n\"1998940\"\n,\n\"1999762\"\n,\n\"1999905\"\n,\n\"2000154\"\n,\n\"2000602\"\n,\n\"2001469\"\n,\n\"2001646\"\n,\n\"2001650\"\n,\n\"2001694\"\n,\n\"2003006\"\n,\n\"2003360\"\n,\n\"2003373\"\n,\n\"2003387\"\n,\n\"2003516\"\n,\n\"2003741\"\n,\n\"2003755\"\n,\n\"2003849\"\n,\n\"2003870\"\n,\n\"2003977\"\n,\n\"2004019\"\n,\n\"2004230\"\n,\n\"2004289\"\n,\n\"2004341\"\n,\n\"2004355\"\n,\n\"2006447\"\n,\n\"2008653\"\n,\n\"2008667\"\n,\n\"2008702\"\n,\n\"2008716\"\n,\n\"2009780\"\n,\n\"2009985\"\n,\n\"2013728\"\n,\n\"2016790\"\n,\n\"2019306\"\n,\n\"2020738\"\n,\n\"2020741\"\n,\n\"2021928\"\n,\n\"2022066\"\n,\n\"2022070\"\n,\n\"2023287\"\n,\n\"2023319\"\n,\n\"2024016\"\n,\n\"2024130\"\n,\n\"2025206\"\n,\n\"2025237\"\n,\n\"2029601\"\n,\n\"2032629\"\n,\n\"2033069\"\n,\n\"2036354\"\n,\n\"2036608\"\n,\n\"2040655\"\n,\n\"2041269\"\n,\n\"2041973\"\n,\n\"2043333\"\n,\n\"2043510\"\n,\n\"2044887\"\n,\n\"2045970\"\n,\n\"2046233\"\n,\n\"2046570\"\n,\n\"2046583\"\n,\n\"2048738\"\n,\n\"2048755\"\n,\n\"2049550\"\n,\n\"2049710\"\n,\n\"2050867\"\n,\n\"2050870\"\n,\n\"2050898\"\n,\n\"2051484\"\n,\n\"2051502\"\n,\n\"2051516\"\n,\n\"2051835\"\n,\n\"2052230\"\n,\n\"2052289\"\n,\n\"2052404\"\n,\n\"2053194\"\n,\n\"2053257\"\n,\n\"2053274\"\n,\n\"2053288\"\n,\n\"2054336\"\n,\n\"2054960\"\n,\n\"2055050\"\n,\n\"2055078\"\n,\n\"2055189\"\n,\n\"2055450\"\n,\n\"2055990\"\n,\n\"2058426\"\n,\n\"2058460\"\n,\n\"2058936\"\n,\n\"2058970\"\n,\n\"2059408\"\n,\n\"2059838\"\n,\n\"2059872\"\n,\n\"2060014\"\n,\n\"2060028\"\n,\n\"2060059\"\n,\n\"2060111\"\n,\n\"2060142\"\n,\n\"2066785\"\n,\n\"2067881\"\n,\n\"2067958\"\n,\n\"2068003\"\n,\n\"2068340\"\n,\n\"2068370\"\n,\n\"2068384\"\n,\n\"2073351\"\n,\n\"2077264\"\n,\n\"2078246\"\n,\n\"2080837\"\n,\n\"2086158\"\n,\n\"2086512\"\n,\n\"2087830\"\n,\n\"2089762\"\n,\n\"2090015\"\n,\n\"2090605\"\n,\n\"2094837\"\n,\n\"2094899\"\n,\n\"2094951\"\n,\n\"2098021\"\n,\n\"2102833\"\n,\n\"2105317\"\n,\n\"2108442\"\n,\n\"2109823\"\n,\n\"2110540\"\n,\n\"2111872\"\n,\n\"2111983\"\n,\n\"2112982\"\n,\n\"2113312\"\n,\n\"2113410\"\n,\n\"2114390\"\n,\n\"2114804\"\n,\n\"2119750\"\n,\n\"2121699\"\n,\n\"2121765\"\n,\n\"2125540\"\n,\n\"2125678\"\n,\n\"2125761\"\n,\n\"2125970\"\n,\n\"2126646\"\n,\n\"2127104\"\n,\n\"2127933\"\n,\n\"2135654\"\n,\n\"2136493\"\n,\n\"2136619\"\n,\n\"2137031\"\n,\n\"2139439\"\n,\n\"2142279\"\n,\n\"2143948\"\n,\n\"2143979\"\n,\n\"2151638\"\n,\n\"2156203\"\n,\n\"2156220\"\n,\n\"2156265\"\n,\n\"2156282\"\n,\n\"2156296\"\n,\n\"2156345\"\n,\n\"2157712\"\n,\n\"2161534\"\n,\n\"2162231\"\n,\n\"2163244\"\n,\n\"2164465\"\n,\n\"2165096\"\n,\n\"2165159\"\n,\n\"2165974\"\n,\n\"2166189\"\n,\n\"2169537\"\n,\n\"2170320\"\n,\n\"2174011\"\n,\n\"2175121\"\n,\n\"2175197\"\n,\n\"2175357\"\n,\n\"2175596\"\n,\n\"2177785\"\n,\n\"2180386\"\n,\n\"2180959\"\n,\n\"2182020\"\n,\n\"2183144\"\n,\n\"2185652\"\n,\n\"2185794\"\n,\n\"2186474\"\n,\n\"2187359\"\n,\n\"2188281\"\n,\n\"2189582\"\n,\n\"2189600\"\n,\n\"2190376\"\n,\n\"2190380\"\n,\n\"2190408\"\n,\n\"2190439\"\n,\n\"2190442\"\n,\n\"2190553\"\n,\n\"2190598\"\n,\n\"2191011\"\n,\n\"2191042\"\n,\n\"2191198\"\n,\n\"2191490\"\n,\n\"2191518\"\n,\n\"2191521\"\n,\n\"2191712\"\n,\n\"2191774\"\n,\n\"2191810\"\n,\n\"2191823\"\n,\n\"2191840\"\n,\n\"2192007\"\n,\n\"2192118\"\n,\n\"2192294\"\n,\n\"2192309\"\n,\n\"2192312\"\n,\n\"2192410\"\n,\n\"2192423\"\n,\n\"2192565\"\n,\n\"2192614\"\n,\n\"2192853\"\n,\n\"2192978\"\n,\n\"2193023\"\n,\n\"2193103\"\n,\n\"2193200\"\n,\n\"2193214\"\n,\n\"2193308\"\n,\n\"2193564\"\n,\n\"2193595\"\n,\n\"2193613\"\n,\n\"2193627\"\n,\n\"2193707\"\n,\n\"2193741\"\n,\n\"2193769\"\n,\n\"2194036\"\n,\n\"2194164\"\n,\n\"2194244\"\n,\n\"2194483\"\n,\n\"2194501\"\n,\n\"2194803\"\n,\n\"2194900\"\n,\n\"2196880\"\n,\n\"2198493\"\n,\n\"2199444\"\n,\n\"2199701\"\n,\n\"2199954\"\n,\n\"2201304\"\n,\n\"2201591\"\n,\n\"2201637\"\n,\n\"2201703\"\n,\n\"2201717\"\n,\n\"2202206\"\n,\n\"2202590\"\n,\n\"2203732\"\n,\n\"2203746\"\n,\n\"2204221\"\n,\n\"2204634\"\n,\n\"2204665\"\n,\n\"2204856\"\n,\n\"2204922\"\n,\n\"2204940\"\n,\n\"2204970\"\n,\n\"2205220\"\n,\n\"2205331\"\n,\n\"2205473\"\n,\n\"2205681\"\n,\n\"2209369\"\n,\n\"2209657\"\n,\n\"2209865\"\n,\n\"2210410\"\n,\n\"2210423\"\n,\n\"2210520\"\n,\n\"2210565\"\n,\n\"2210582\"\n,\n\"2210600\"\n,\n\"2211325\"\n,\n\"2211453\"\n,\n\"2211467\"\n,\n\"2211980\"\n,\n\"2212098\"\n,\n\"2212577\"\n,\n\"2212594\"\n,\n\"2212609\"\n,\n\"2212740\"\n,\n\"2212817\"\n,\n\"2212851\"\n,\n\"2213018\"\n,\n\"2213021\"\n,\n\"2213115\"\n,\n\"2213260\"\n,\n\"2213288\"\n,\n\"2213465\"\n,\n\"2213479\"\n,\n\"2213820\"\n,\n\"2213833\"\n,\n\"2213961\"\n,\n\"2214290\"\n,\n\"2214433\"\n,\n\"2214592\"\n,\n\"2214957\"\n,\n\"2215161\"\n,\n\"2215321\"\n,\n\"2215366\"\n,\n\"2215415\"\n,\n\"2215429\"\n,\n\"2215450\"\n,\n\"2216001\"\n,\n\"2216063\"\n,\n\"2216237\"\n,\n\"2216379\"\n,\n\"2216459\"\n,\n\"2216670\"\n,\n\"2216861\"\n,\n\"2216907\"\n,\n\"2217031\"\n,\n\"2217045\"\n,\n\"2217059\"\n,\n\"2217236\"\n,\n\"2217240\"\n,\n\"2217320\"\n,\n\"2217333\"\n,\n\"2217489\"\n,\n\"2217572\"\n,\n\"2217590\"\n,\n\"2217729\"\n,\n\"2217732\"\n,\n\"2217809\"\n,\n\"2218315\"\n,\n\"2218350\"\n,\n\"2218363\"\n,\n\"2218585\"\n,\n\"2218682\"\n,\n\"2218696\"\n,\n\"2218762\"\n,\n\"2218825\"\n,\n\"2218887\"\n,\n\"2218890\"\n,\n\"2218919\"\n,\n\"2218936\"\n,\n\"2218998\"\n,\n\"2219043\"\n,\n\"2219140\"\n,\n\"2219300\"\n,\n\"2220729\"\n,\n\"2220809\"\n,\n\"2220826\"\n,\n\"2220830\"\n,\n\"2221270\"\n,\n\"2221430\"\n,\n\"2221617\"\n,\n\"2221651\"\n,\n\"2221679\"\n,\n\"2221984\"\n,\n\"2222234\"\n,\n\"2222425\"\n,\n\"2222855\"\n,\n\"2223008\"\n,\n\"2223011\"\n,\n\"2223087\"\n,\n\"2223105\"\n,\n\"2223170\"\n,\n\"2223184\"\n,\n\"2223198\"\n,\n\"2223202\"\n,\n\"2223504\"\n,\n\"2223518\"\n,\n\"2223535\"\n,\n\"2223566\"\n,\n\"2223663\"\n,\n\"2223868\"\n,\n\"2223885\"\n,\n\"2223951\"\n,\n\"2224454\"\n,\n\"2224534\"\n,\n\"2224628\"\n,\n\"2224920\"\n,\n\"2224933\"\n,\n\"2224950\"\n,\n\"2225120\"\n,\n\"2225436\"\n,\n\"2225502\"\n,\n\"2225533\"\n,\n\"2225550\"\n,\n\"2225578\"\n,\n\"2226213\"\n,\n\"2226258\"\n,\n\"2226261\"\n,\n\"2226307\"\n,\n\"2226324\"\n,\n\"2226338\"\n,\n\"2226435\"\n,\n\"2226688\"\n,\n\"2226691\"\n,\n\"2227150\"\n,\n\"2227177\"\n,\n\"2227291\"\n,\n\"2227340\"\n,\n\"2227354\"\n,\n\"2227403\"\n,\n\"2227417\"\n,\n\"2227434\"\n,\n\"2227802\"\n,\n\"2227958\"\n,\n\"2227992\"\n,\n\"2228020\"\n,\n\"2228048\"\n,\n\"2228079\"\n,\n\"2228420\"\n,\n\"2228464\"\n,\n\"2228481\"\n,\n\"2228850\"\n,\n\"2228943\"\n,\n\"2229512\"\n,\n\"2229956\"\n,\n\"2230115\"\n,\n\"2230129\"\n,\n\"2230132\"\n,\n\"2230163\"\n,\n\"2230177\"\n,\n\"2230194\"\n,\n\"2230403\"\n,\n\"2230420\"\n,\n\"2230465\"\n,\n\"2230736\"\n,\n\"2230740\"\n,\n\"2231020\"\n,\n\"2231079\"\n,\n\"2231544\"\n,\n\"2231575\"\n,\n\"2231624\"\n,\n\"2231641\"\n,\n\"2231752\"\n,\n\"2231815\"\n,\n\"2231832\"\n,\n\"2231877\"\n,\n\"2232078\"\n,\n\"2232144\"\n,\n\"2232210\"\n,\n\"2232241\"\n,\n\"2232255\"\n,\n\"2232269\"\n,\n\"2232352\"\n,\n\"2232366\"\n,\n\"2232401\"\n,\n\"2232429\"\n,\n\"2232779\"\n,\n\"2232862\"\n,\n\"2232908\"\n,\n\"2232911\"\n,\n\"2232942\"\n,\n\"2233046\"\n,\n\"2233126\"\n,\n\"2233191\"\n,\n\"2233320\"\n,\n\"2234333\"\n,\n\"2234347\"\n,\n\"2234400\"\n,\n\"2234507\"\n,\n\"2234524\"\n,\n\"2234937\"\n,\n\"2234940\"\n,\n\"2234971\"\n,\n\"2235061\"\n,\n\"2235089\"\n,\n\"2235221\"\n,\n\"2235235\"\n,\n\"2235252\"\n,\n\"2235283\"\n,\n\"2235412\"\n,\n\"2235426\"\n,\n\"2236300\"\n,\n\"2236314\"\n,\n\"2236855\"\n,\n\"2236918\"\n,\n\"2236921\"\n,\n\"2236935\"\n,\n\"2236952\"\n,\n\"2236966\"\n,\n\"2236970\"\n,\n\"2237153\"\n,\n\"2237247\"\n,\n\"2238343\"\n,\n\"2238406\"\n,\n\"2238410\"\n,\n\"2238468\"\n,\n\"2238503\"\n,\n\"2238579\"\n,\n\"2238725\"\n,\n\"2238739\"\n,\n\"2238760\"\n,\n\"2238773\"\n,\n\"2238819\"\n,\n\"2239946\"\n,\n\"2239977\"\n,\n\"2240042\"\n,\n\"2240056\"\n,\n\"2240060\"\n,\n\"2240087\"\n,\n\"2240216\"\n,\n\"2240694\"\n,\n\"2240730\"\n,\n\"2240743\"\n,\n\"2241517\"\n,\n\"2241840\"\n,\n\"2244420\"\n,\n\"2244434\"\n,\n\"2244448\"\n,\n\"2244608\"\n,\n\"2244625\"\n,\n\"2245367\"\n,\n\"2246432\"\n,\n\"2247109\"\n,\n\"2247334\"\n,\n\"2247351\"\n,\n\"2248923\"\n,\n\"2249443\"\n,\n\"2249491\"\n,\n\"2249506\"\n,\n\"2249537\"\n,\n\"2249759\"\n,\n\"2249776\"\n,\n\"2249780\"\n,\n\"2249808\"\n,\n\"2249811\"\n,\n\"2250590\"\n,\n\"2250684\"\n,\n\"2250698\"\n,\n\"2250702\"\n,\n\"2250733\"\n,\n\"2250750\"\n,\n\"2250795\"\n,\n\"2252252\"\n,\n\"2252283\"\n,\n\"2253616\"\n,\n\"2253713\"\n,\n\"2255933\"\n,\n\"2257227\"\n,\n\"2257261\"\n,\n\"2257292\"\n,\n\"2257310\"\n,\n\"2262957\"\n,\n\"2262960\"\n,\n\"2263685\"\n,\n\"2263720\"\n,\n\"2264240\"\n,\n\"2264511\"\n,\n\"2265125\"\n,\n\"2265205\"\n,\n\"2265219\"\n,\n\"2265236\"\n,\n\"2265253\"\n,\n\"2265267\"\n,\n\"2265635\"\n,\n\"2265701\"\n,\n\"2265729\"\n,\n\"2265809\"\n,\n\"2265812\"\n,\n\"2265843\"\n,\n\"2265860\"\n,\n\"2265910\"\n,\n\"2267570\"\n,\n\"2267584\"\n,\n\"2267713\"\n,\n\"2267789\"\n,\n\"2268140\"\n,\n\"2268216\"\n,\n\"2268220\"\n,\n\"2269739\"\n,\n\"2269756\"\n,\n\"2269870\"\n,\n\"2270043\"\n,\n\"2270057\"\n,\n\"2270060\"\n,\n\"2270074\"\n,\n\"2270088\"\n,\n\"2270359\"\n,\n\"2270442\"\n,\n\"2270487\"\n,\n\"2271073\"\n,\n\"2271105\"\n,\n\"2271264\"\n,\n\"2271281\"\n,\n\"2271313\"\n,\n\"2271327\"\n,\n\"2271570\"\n,\n\"2271583\"\n,\n\"2271597\"\n,\n\"2271601\"\n,\n\"2271646\"\n,\n\"2271650\"\n,\n\"2271663\"\n,\n\"2271730\"\n,\n\"2271760\"\n,\n\"2271837\"\n,\n\"2272166\"\n,\n\"2272246\"\n,\n\"2272357\"\n,\n\"2272503\"\n,\n\"2272582\"\n,\n\"2272676\"\n,\n\"2272756\"\n,\n\"2272787\"\n,\n\"2272819\"\n,\n\"2272822\"\n,\n\"2272902\"\n,\n\"2272933\"\n,\n\"2272964\"\n,\n\"2273259\"\n,\n\"2273262\"\n,\n\"2273293\"\n,\n\"2273308\"\n,\n\"2273311\"\n,\n\"2273356\"\n,\n\"2273467\"\n,\n\"2273484\"\n,\n\"2273502\"\n,\n\"2273520\"\n,\n\"2273550\"\n,\n\"2273595\"\n,\n\"2273897\"\n,\n\"2273901\"\n,\n\"2274120\"\n,\n\"2274404\"\n,\n\"2274452\"\n,\n\"2274466\"\n,\n\"2274501\"\n,\n\"2274550\"\n,\n\"2274879\"\n,\n\"2274896\"\n,\n\"2274931\"\n,\n\"2274945\"\n,\n\"2275083\"\n,\n\"2275399\"\n,\n\"2275403\"\n,\n\"2275465\"\n,\n\"2275479\"\n,\n\"2275482\"\n,\n\"2275496\"\n,\n\"2275593\"\n,\n\"2275625\"\n,\n\"2275992\"\n,\n\"2276159\"\n,\n\"2276162\"\n,\n\"2276193\"\n,\n\"2276447\"\n,\n\"2276464\"\n,\n\"2276686\"\n,\n\"2276749\"\n,\n\"2276766\"\n,\n\"2276770\"\n,\n\"2276930\"\n,\n\"2276943\"\n,\n\"2276957\"\n,\n\"2276960\"\n,\n\"2277002\"\n,\n\"2277047\"\n,\n\"2277050\"\n,\n\"2277207\"\n,\n\"2277210\"\n,\n\"2277241\"\n]\n,\"limit\":5000,\"offsetby\" : 0,\"count\" : 5000,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/active/?pagesize=5000\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/active/?offsetby=5000&pagesize=5000\"\n      }\n     ]\n}\n"}],"_postman_id":"5e79b12a-2406-4247-bdc3-d20476049109"}],"id":"421c0a17-26b3-4f98-809f-2818f8cbd157","description":"<p>This module relates to active employees, and will always only deal with active employees. The objective is to return an employee result set matching certain use cases, common use cases:</p>\n<ul>\n<li>Determine active employees</li>\n<li>Active employees on a particular date</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"98a3d383-157a-4728-b89b-0ac4739665fd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"894c2e87-c6c2-4ff3-9380-3afe5fd65067","type":"text/javascript","exec":[""]}}],"_postman_id":"421c0a17-26b3-4f98-809f-2818f8cbd157"},{"name":"JML","item":[{"name":"Leaver","item":[{"name":"Day","item":[{"name":"/filter/leaver/day/:days?","id":"1fc2919c-0fe8-4217-8434-ac6d588a81fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/day/30","description":"<p>Use this service to query employees leaving within the next X number of days, use the parameter <code>:days</code> to set the X value. These employees are currently active, however, they are set to leave within X number of days. The parameter must be positive.</p>\n<p>The service will assume today when supplied with no value for <code>:days</code> or a value of 0, this returns employees leaving today.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","jml","leaver","day","30"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"89d2f7e3-b790-4f40-9e5e-5aa3380728b5","name":"Leavers within next 30 days","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/day/30"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 12 Mar 2018 21:13:46 GMT","name":"Date","description":""},{"key":"ETag","value":"\"HEmGvE00e93eT+klCWd8Ob/KpCot3jqSpNBJbI8FS/W1wjXw504P+jl2lZNfxb1b4tAsDakTu8BGMrWulMvw5Q==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-00095ca4","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"1265972\"\n,\n\"1266093\"\n,\n\"1266320\"\n,\n\"1266812\"\n,\n\"1267013\"\n,\n\"1267172\"\n,\n\"1267412\"\n,\n\"1267430\"\n,\n\"1267443\"\n,\n\"1316426\"\n,\n\"1316460\"\n,\n\"1316665\"\n,\n\"1318090\"\n,\n\"1318615\"\n,\n\"1319250\"\n,\n\"1409000\"\n,\n\"1410828\"\n,\n\"1416471\"\n,\n\"1419656\"\n,\n\"1421133\"\n,\n\"1421660\"\n,\n\"1422451\"\n,\n\"1422642\"\n,\n\"1423322\"\n,\n\"1425268\"\n,\n\"1425560\"\n,\n\"1428505\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 27,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/leaver/day/30\"\n      }\n    ]\n}\n"},{"id":"a4d293b5-d863-4ef7-bca8-bd6d588a5fef","name":"Leaving Today","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/day/0"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 13 Mar 2018 12:02:25 GMT","name":"Date","description":""},{"key":"ETag","value":"\"iZE5eFKbFKnZ6UAvakY4osy9aKOhoxFEJdMkYK4pzpYTNPPR0dXUvREJQBZzVjsJG0aJSEmrlhGp/cp9ECeAIg==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-000a2b97","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"1409000\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/leaver/day/0\"\n      }\n    ]\n}\n"}],"_postman_id":"1fc2919c-0fe8-4217-8434-ac6d588a81fb"}],"id":"e1a48372-4a0e-4c12-911b-5279639e7228","description":"<p>Use this service to query employees leaving within the next X number of days.</p>\n","event":[{"listen":"prerequest","script":{"id":"b5253eec-265b-40a8-8415-729fa774bbeb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ef616a76-9bca-49e5-8596-62d3eb137d6e","type":"text/javascript","exec":[""]}}],"_postman_id":"e1a48372-4a0e-4c12-911b-5279639e7228"},{"name":"Date","item":[{"name":"/filter/jml/leaver/date/:date?","id":"b8fe21a0-494e-4aee-8b1e-f8f9c5b909e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/date/20190101","description":"<p>Use this service to query employees leaving based on a supplied date. By providing a future date the service will check employees who are due to leave between \"now\" and the future date. These employees are currently active, but are set to leave by the date provided.</p>\n<p>Date format is YYYYMMDD and the date should be in the future, and the service treats date inclusive.</p>\n<p>If no date is supplied, by default the service will assume today as the date, i.e. find employees leaving today.</p>\n<p>Providing a date less than \"today\" will always return 0 returns, no error will be provided, simply a response of 0 employees i.e. you must provide a future date.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","jml","leaver","date","20190101"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0bfd035a-37e8-4010-b998-cc2027c02e09","name":"Leavers by 10th July 2017","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/date/20180710"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 12 Mar 2018 21:20:49 GMT","name":"Date","description":""},{"key":"ETag","value":"\"n64ZqihwRTaSnvtuJO8evqgaU7E41l1sQh6dvCZ2iJaA88DDSmbv8C/ph/M5S3l9M+IJJjYZ/KhVZTpDuEtdXQ==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-00095dc9","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"1265972\"\n,\n\"1266093\"\n,\n\"1266320\"\n,\n\"1266812\"\n,\n\"1267013\"\n,\n\"1267172\"\n,\n\"1267412\"\n,\n\"1409000\"\n,\n\"1410828\"\n,\n\"1416471\"\n,\n\"1419656\"\n,\n\"1421133\"\n,\n\"1421660\"\n,\n\"1422451\"\n,\n\"1422642\"\n,\n\"1423322\"\n,\n\"1425268\"\n,\n\"1425560\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 18,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/leaver/date/20180324\"\n      }\n    ]\n}\n"}],"_postman_id":"b8fe21a0-494e-4aee-8b1e-f8f9c5b909e5"}],"id":"60822362-832a-4708-8bb6-bbac908475bf","description":"<p>Use this service to query employees leaving based on a supplied date.</p>\n","event":[{"listen":"prerequest","script":{"id":"02d5e1ec-d98f-4c56-84b4-ec0ae853ad89","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ec808816-1ef0-4c62-8226-e1eb8dbaf653","type":"text/javascript","exec":[""]}}],"_postman_id":"60822362-832a-4708-8bb6-bbac908475bf"},{"name":"Left","item":[{"name":"/filter/jml/leaver/left/:days?","id":"ad6286b4-e822-4099-972f-1ca035506dcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/leaver/left/1","description":"<p>Use this service to query individuals who have left within the previous X number of days, use the parameter <code>:days</code> to set the X value. With this service it is possible to determine historical employees.</p>\n<p>These employees are no longer considered active. The parameter must be positive.</p>\n<p>The service will assume yesterday when supplied with no value for <code>:days</code>.</p>\n<p>Individuals leaving <em>today</em> will not appear in this result set. Those leaving today remain active until <em>tomorrow</em>.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","jml","leaver","left","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ad6286b4-e822-4099-972f-1ca035506dcb"}],"id":"d59072cd-12a4-4376-9adb-e0f1ff868846","description":"<p>Use this service to query individuals who have previously left i.e. left within the previous X number of days. These individuals are considered inactive and no longer <em>employeed</em>. The service simply querys the date an individual has left. The date queried is the individuals most recent leaving date (catering for the cases where an individual has re-joined and subsequently left).</p>\n","event":[{"listen":"prerequest","script":{"id":"dbe2712a-a4b2-4b9b-b0aa-c73f5690b77f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"205fbd7f-8282-42c2-8d70-f9b7b41c2336","type":"text/javascript","exec":[""]}}],"_postman_id":"d59072cd-12a4-4376-9adb-e0f1ff868846"}],"id":"43aec5dd-440e-4c51-97b7-6367c8b50784","description":"<p>This module relates to employees leaving, the service will query an individuals leaving date, even though the employee may currently be active.</p>\n<p>Common use cases are:</p>\n<ul>\n<li>Determine individuals leaving within the next X number of days i.e. they are currently active, but have a leave date within the next 10 days.</li>\n<li>Determine individuals who are currently active but will have left by a certain future date i.e. provide a future date and the service will return individuals leaving between now and this future date.</li>\n<li>Determine individuals previously left.</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"6da92349-0814-4e08-b6d1-5f43b4f6fba9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"de9e7d6b-47e9-402c-8ab9-b223f5306182","type":"text/javascript","exec":[""]}}],"_postman_id":"43aec5dd-440e-4c51-97b7-6367c8b50784"},{"name":"Joiner","item":[{"name":"recent","item":[{"name":"/filter/jml/joiner/recent/:days","id":"dfa3b814-63f0-4616-85d3-11810b3fd029","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/joiner/recent/30","description":"<p>This service is focused on recent starters i.e. active individuals who recently joined. With this service you can determine individuals who started within the previous X number of days, i.e. this is a between NOW and - X days.</p>\n<p>in cases where no <code>days</code> parameter has been provided, the service assumes <em>0</em> i.e. who has started <em>today</em>. In most cases it is expected to provide 30 / 60 or 90 days. A max of 36500 is set for the upper limit.</p>\n<p>In all cases employees starting <em>today</em> are included.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","jml","joiner","recent","30"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"236c3d78-5280-42b5-ab51-2931e0494539","name":"Exceeding the Max Threshold","originalRequest":{"method":"GET","header":[],"url":"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/joiner/recent/36501"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 15 Mar 2018 12:12:36 GMT","name":"Date","description":""},{"key":"ETag","value":"\"nN2x9d3E41tTPKzxvz7dKw0hP6y+uPBjgI4mv2+zdxx8IXg8lojzVWg23GzD4VkZycVmFyVr/KOQvZWKurl0kA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-000dfe97","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"004\",\"errorMessage\" :\"Validation failed. Max of 36500 (~100 years)\" }}\n"},{"id":"ef67d0ed-654c-45a4-a907-5c89c40bf5fc","name":"Previous 30 Days","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/joiner/recent/30"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 15 Mar 2018 11:53:56 GMT","name":"Date","description":""},{"key":"ETag","value":"\"140VlUC1D3FC3GEyZ2rH9bAWqVN9hnlxbHzATll48Aj8fNKuVg9wYkKSP/n3RUXZ+h9hRJFOjMHr+CTw2P3fgQ==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"0927066f-15b4-4ceb-ab46-10c24ebde76e-000df1b3","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"5990404\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/joiner/recent/\"\n      }\n    ]\n}\n"}],"_postman_id":"dfa3b814-63f0-4616-85d3-11810b3fd029"}],"id":"4c47e129-dd62-496d-b6f1-789d5bac177d","description":"<p>This service is focused on recent starters i.e. active individuals who recently joined. With this service you can determine individuals you started within the previous X number of days.</p>\n<p>in cases where no <code>days</code> parameter has been provided, the service assumes <em>0</em> i.e. who has started <em>today</em>. In most cases it is expected to provide 30 / 60 or 90 days. A max of 36500 is set for the upper limit.</p>\n","event":[{"listen":"prerequest","script":{"id":"7b8af64a-0801-4336-b354-bdd892b0cc7b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d7f25360-cdf8-492b-b1ad-a98ce5e4cf75","type":"text/javascript","exec":[""]}}],"_postman_id":"4c47e129-dd62-496d-b6f1-789d5bac177d"},{"name":"future","item":[{"name":"/filter/jml/joiner/future/:days","id":"a684aa91-a8e8-48a1-89f1-e6d29c72b968","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/joiner/future/5","description":"<p>Determine individuals due to start within the next X number of days.</p>\n<p>In cases where no <code>days</code> parameter has been provided, the service assumes <em>0</em> i.e. who has started <em>today</em>. In most cases it is expected to provide 30 / 60 or 90 days. A max of 36500 is set for the upper limit.</p>\n<p>In all cases employees starting <em>today</em> are included.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","filter","jml","joiner","future","5"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"50cecdd5-b236-435c-b392-07cf5c7280f7","name":"Starting Next 5 Days.","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/joiner/future/5"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 16 Mar 2018 09:06:02 GMT","name":"Date","description":""},{"key":"ETag","value":"\"a57aOwmxwydB4kqrVe87nAzw9DQGCbwJ+w+BGb7ygM2NEY37h+ymWOeSbINkBYdsAjKEEV+GpYdRIyszNKFUXg==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"cb89685b-0a33-4e88-9829-ed0bf23cf3fc-0000597a","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"1409000\"\n,\n\"1410828\"\n,\n\"1416471\"\n,\n\"1419656\"\n,\n\"1421133\"\n,\n\"5990404\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 6,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/joiner/future/5\"\n      }\n    ]\n}\n"},{"id":"b17049bc-8963-4bae-b0bb-3317a575417e","name":"Starting Today","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/filter/jml/joiner/future/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 16 Mar 2018 09:14:11 GMT","name":"Date","description":""},{"key":"ETag","value":"\"uvizmfzh9HbIvg+bU9Db97yB/zZdZHUPZKquXaeGXMz25ZoDudfkO6lH/nfFZrEDkA99VtHMaWK9iAGZnxcWtw==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"cb89685b-0a33-4e88-9829-ed0bf23cf3fc-00005eff","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"employees\" : [\n\"1265972\"\n,\n\"1266093\"\n,\n\"1266267\"\n,\n\"1266320\"\n,\n\"1425560\"\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 5,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/filter/jml/joiner/future/\"\n      }\n    ]\n}\n"}],"_postman_id":"a684aa91-a8e8-48a1-89f1-e6d29c72b968"}],"id":"c2a63d4f-922c-45a0-8db6-243222a367aa","description":"<p>This service is focused on individuals starting in the future i.e. individuals who are due to start, but are not currently active. With this service you can determine individuals due to commence <em>within</em> the next X number of days i.e. this is a between NOW and + X days.</p>\n","event":[{"listen":"prerequest","script":{"id":"1ef7f08c-3854-4ef7-a2c9-9474091172db","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"04c408e5-a38a-4d4a-8a07-a7237e1750b9","type":"text/javascript","exec":[""]}}],"_postman_id":"c2a63d4f-922c-45a0-8db6-243222a367aa"}],"id":"182240bc-fdf9-40df-a253-6e02c0f1a1a9","description":"<p>This module relates to employees joining, the service will query individuals starting date, even though the employee may currently be active. An individuals start date is their most recent start date, in cases where an employee has left and rejoined, their current start date is the most recent date, this service only queries the most recent start date. The service will not look at original start dates aka <code>day Zero</code>.</p>\n<p>Common use cases are:</p>\n<ul>\n<li>Determine individual's recently joined, i.e. started in last 30 days.</li>\n<li>Determine individual's joining at a future date, i.e. starting in the next 30 days.</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"34a331e4-64d0-4d0d-bb85-028043414016","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"466ceb91-791e-4727-8f47-7a5de7bcbc2c","type":"text/javascript","exec":[""]}}],"_postman_id":"182240bc-fdf9-40df-a253-6e02c0f1a1a9"}],"id":"b3f3cee6-d70c-43bf-ad93-f34596f2adcf","description":"<p>This modules refers to Joiners, Movers and Leavers hence /JML/. Various use cases exist, for example, use this module to determine:</p>\n<ul>\n<li>recently joined employees</li>\n<li>employee's joining within next X number of days</li>\n<li>employee's due to leave based on dates / date</li>\n</ul>\n<p>In general this module will provide filters for employees joining, moving and leaving. The objective is to return an employee result set matching certain use cases.</p>\n","event":[{"listen":"prerequest","script":{"id":"6a0833b8-423d-42d9-ab30-d75ffd5e7ae8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b5f910b4-7fe8-41ed-8f7a-d25e94f70d22","type":"text/javascript","exec":[""]}}],"_postman_id":"b3f3cee6-d70c-43bf-ad93-f34596f2adcf"}],"id":"b40a4004-2ec3-44f8-b3bc-f8680f1acb67","description":"<p>The filter's module objective, is to decouple common query requests. Instead of each service supporting the common queries, these queries are decoupled in this filter module.</p>\n<p>Common Queries include get a list (i.e. a result set) of:</p>\n<ul>\n<li>active employees</li>\n<li>employee's due to leave</li>\n<li>employee's recently joined</li>\n<li>employee's due to join in the near future</li>\n<li>employee's appointments (typically the employees Job)</li>\n</ul>\n<p>Use these filers to query for employees under above headings, and then use the result set to feed other services.</p>\n<p><strong>Pagination and Limits</strong></p>\n<p>These filters allow for larger than normal pagesizes. For example, typically the pagesize (i.e. the result set) is 100 results, however you can now set the pagesize to 10,000 (this is a max value). Therefore if you have 10,000 employees you can make one request, if you have more than 10,000 active employees, the filter will provide the first 10,000 and provide a reference link for the next 10,000. </p>\n<p>Do not set the pagesize above 10,000, if you do, only 100 results will be returned. The web services framework will always revert back to the default (i.e. 100) if the max value has been breached.</p>\n<p>Any instances where more than pagesize exist, e.g. (a pagesize of 100 is used, and 1,000 records exist) the response body will include a link array with additonal links for pagination.</p>\n<p>Each GET request includes following </p>\n<ul>\n<li>limit</li>\n</ul>\n<p>represents the maximum number of records returned in one request e.g. 100 (or whatever the pagesize is)</p>\n<ul>\n<li>offsetby</li>\n</ul>\n<p>represents pagination, the first request will always have an offsetby 0 i.e. the start. Where more than the limit exists offsetby controls the starting position, typically in batches of 100. Each GET request can accept the offsetby parameter.</p>\n<ul>\n<li>count</li>\n</ul>\n<p>the number of records for this reponse, the maximum count will equal the limit parameter i.e. 100.</p>\n<ul>\n<li>hasMore</li>\n</ul>\n<p>a boolean representation indicating if more records exist.</p>\n<ul>\n<li>links</li>\n</ul>\n<p>includes links to first and next. The next link is used when pagination is discovered i.e. more than the limit per request.</p>\n","event":[{"listen":"prerequest","script":{"id":"eb403191-c6ed-4b16-90a2-80f85efd422c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"50bb2ac3-b46d-468d-937e-a2a2859d317c","type":"text/javascript","exec":[""]}}],"_postman_id":"b40a4004-2ec3-44f8-b3bc-f8680f1acb67"},{"name":"Person","item":[{"name":"allowances","item":[{"name":"/person/allowances/paid/currentperiod/:personnelNo","id":"870f8b93-974f-4e9f-9a0f-f58180353120","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/allowances/paid/currentperiod/4956040","description":"<p>The specific end point will provide allowances that have been processed for the employee's most recent period that has been completed i.e. from the employees most recent payslip that has been completed for the employees pay group.</p>\n<p><strong>Parameters</strong></p>\n<p>requires personnelNumber, use the /filter/* endpoints to obtain personnelNumbers</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li><p>appointmenId </p>\n<p>A unique reference identifier for the appointment, this is a system generated identifier.</p>\n</li>\n<li><p>payCode</p>\n</li>\n</ul>\n<p>Represents the actual payCode used to process this item.</p>\n<ul>\n<li>payCodeDescription</li>\n</ul>\n<p>This attribute represents a free text description associated with the paycode.</p>\n<ul>\n<li>analysisCode</li>\n</ul>\n<p>Represents the associated anylsis code associated with the paycode. Analysis codes are used to represent a distinction or grouping of payCodes and are typically used for reporting and grouping purposes.</p>\n<ul>\n<li>analysisCodeDescription</li>\n</ul>\n<p>This attribute represents a free text description associated with the analysisCode.</p>\n<ul>\n<li>value</li>\n</ul>\n<p>This represents the amount on the employee's payslip, in most cases the allowances will be a positive amount, but there can be cases where this amount will be negative.</p>\n<ul>\n<li>payrollPeriod</li>\n</ul>\n<p>This attribute represents the payroll period that the allowance included. This should represent the payroll period associated with the employees pay group that is marked as 'Completed Update'.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","allowances","paid","currentperiod","4956040"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"35eb71f7-9e83-4bb0-b718-ce29cf56b3c5","name":"success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/allowances/paid/currentperiod/4956040"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Nov 2018 15:37:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-00171402"},{"key":"ETag","value":"\"CzWVSoBAGGzx6TAhnBF94Nn1BjnGS+22nCwEWwo0RBzizYGZmXu8kL2iCZVsL8TsMa63EWIkj4bHVKIOfuE7XQ==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"items\": [\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"2001\",\n            \"payCodeDescription\": \"OVERTIME @ 1.00\",\n            \"analysisCode\": \"2000\",\n            \"analysisCodeDescription\": \"OVERTIME\",\n            \"value\": \"147.2\"\n        },\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"6017\",\n            \"payCodeDescription\": \"USC\",\n            \"analysisCode\": \"6000\",\n            \"analysisCodeDescription\": \"STATUTORY DEDUCTIONS\",\n            \"value\": \"-327.4\"\n        },\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"9500\",\n            \"payCodeDescription\": \"EMPLOYER PRSI\",\n            \"analysisCode\": \"9000\",\n            \"analysisCodeDescription\": \"EMPLOYER NI\",\n            \"value\": \"-.74\"\n        },\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"6500\",\n            \"payCodeDescription\": \"EMPLOYEE PRSI\",\n            \"analysisCode\": \"6000\",\n            \"analysisCodeDescription\": \"STATUTORY DEDUCTIONS\",\n            \"value\": \"0\"\n        },\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"6000\",\n            \"payCodeDescription\": \"PAYE\",\n            \"analysisCode\": \"6000\",\n            \"analysisCodeDescription\": \"STATUTORY DEDUCTIONS\",\n            \"value\": \"-1862.48\"\n        },\n        {\n            \"appointmentId\": \"WL0007-4\",\n            \"payrollPeriod\": \"201635\",\n            \"payCode\": \"625\",\n            \"payCodeDescription\": \"ADVANCE MISC\",\n            \"analysisCode\": \"7000\",\n            \"analysisCodeDescription\": \"VOLUNTARY DEDUCTIONS\",\n            \"value\": \"-74.34\"\n        }\n    ],\n    \"limit\": 100,\n    \"offsetby\": 0,\n    \"count\": 6,\n    \"hasMore\": false,\n    \"links\": [\n        {\n            \"rel\": \"first\",\n            \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/allowances/paid/currentperiod/4956040\"\n        }\n    ]\n}"}],"_postman_id":"870f8b93-974f-4e9f-9a0f-f58180353120"}],"id":"b5bf3743-eae2-447e-9b84-ecf76ffa0f1c","description":"<p>This module has only been made available from <strong>CoreHR 26.0.6</strong> and is not available in older versions.</p>\n<p>The allowance module deals with providing allowance information associated with an employee. At this time the module only deals with allowances that have been paid, and is not aware of future allowances.</p>\n","event":[{"listen":"prerequest","script":{"id":"bbaba21f-5b40-4689-bba0-9f7cf4d11249","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b7c70822-80cf-43a5-ad94-4698d2b35c87","type":"text/javascript","exec":[""]}}],"_postman_id":"b5bf3743-eae2-447e-9b84-ecf76ffa0f1c"},{"name":"basicAttributes","item":[{"name":"/person/basicattributes/:personnelNo","id":"ae59a3db-3157-4d7c-8d56-05a88158416f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/basicattributes/","description":"<p>This module returns some of the employee's most basic attributes, however, certain basic attributes are not include in this service for privacy reasons e.g. Social Security Number (SSN). To obtain SSN a separate service is available. The person module typically accepts only <code>personnelNo</code>. Use the filter module to obtain a result sets for various employees status e.g. recently joined, left , active etc.</p>\n<p>Most of these attributes are provied by the tenant, the descriptions may not exactly match with the value provided. For example: A field exists known as \"Home Telephone Number\" a tenant may use this for a Landline Number, a personal business number, a mobile number etc.  </p>\n<p>NB No confirmation takes place on the personnelNo, if an incorrect personnelNo is presented the service will simply respond with no data.</p>\n<p>Following attributes are returned:</p>\n<h2 id=\"general\">General</h2>\n<ul>\n<li>First Name</li>\n</ul>\n<p>Indicates a persons first name.</p>\n<ul>\n<li>Middle Name</li>\n</ul>\n<p>Indicates a persons middle name.</p>\n<ul>\n<li>Last Name</li>\n</ul>\n<p>Indicates a persons middle name.</p>\n<ul>\n<li>Previous Surname</li>\n</ul>\n<p>Indicates a persons previous surname.</p>\n<ul>\n<li>Known As</li>\n</ul>\n<p>Sometimes a person is known as a slightly different name that first, last or middle name. This field represents such sceanrios.</p>\n<ul>\n<li>Title</li>\n</ul>\n<p>Indicates the persons full title description.</p>\n<ul>\n<li>Active</li>\n</ul>\n<p>Simply indicates Y or N, answering the question at this point in time ( i.e. when the serice is called) \"Is Person Currently active?\". In cases where an individual has a leaving date on the same date the service is executed i.e. <em>today</em> the individual is considered active and will have a value of 'Y'.</p>\n<ul>\n<li>OnBoarding Completed</li>\n</ul>\n<p>This attribute will be flagged as 'Y' indicating individual has completed their onboarding process, otherwise this will be flagged as 'N'. </p>\n<ul>\n<li>Next of Kin Name</li>\n</ul>\n<p>The name in CoreHR provided for the individual's next of kin.</p>\n<ul>\n<li>Next of Kin Relationship</li>\n</ul>\n<p>The name in CoreHR provided for the individual's next of kin relationship.</p>\n<ul>\n<li>Next of Kin Contact Number</li>\n</ul>\n<p>The contact number associated with the next of kin.</p>\n<ul>\n<li>Home Telephone Number</li>\n</ul>\n<p>An individuals home telephone number, the area code is included in this field.</p>\n<ul>\n<li>salaryPayMethod</li>\n</ul>\n<p>Represents the method of payment for one's salary. This is a code e.g 'PP', to obtain the description use the reference module web service using a <code>type</code> of <code>PAYM</code>. Your system administrator will have to ensure this reference type is whitelisted.</p>\n<p><strong>NB</strong> To obtain Next of Kin Address use the address module.</p>\n<ul>\n<li>loginId</li>\n</ul>\n<p>An individuals login identifier for self service and mobile applications. NB for SAML enabled sites this attribute will display N/A (SAML enabled site).</p>\n<h2 id=\"dates\">Dates</h2>\n<p>All dates are represented as : YYYYMMDD</p>\n<ul>\n<li>Date of Birth</li>\n</ul>\n<p>An individuals date of birth formated</p>\n<ul>\n<li>Termination Date</li>\n</ul>\n<p>Indicates an individuals most recent date for leaving. In cases where a person has left and rejoined and is flag to leave again this date will alsways be the most recent date for leaving. This may not be populated, this date can be in the futrue.</p>\n<ul>\n<li>Current start Date</li>\n</ul>\n<p>An individuals most recent date started. This will cater for sceanrios where an individual has left and rejoined. It will always represent the current start date.</p>\n<ul>\n<li>Original Start Date</li>\n</ul>\n<p>An individuals first time starting with an organisation. This can cater for scnearioes where an employee has left and rejoined. This date never changes, if an individual is currently active and has never left, this is the same date as Current Start Date. If this date is differnt to current start date, this typically means an individual has rejoined.</p>\n<ul>\n<li>Continuous Service Date</li>\n</ul>\n<p>This date is used for calculating an individual length of service. Within the CorEHR engine this can be a complex process. This field represents the correct continuous service date, there should be no need to attempt to derive this date from the various other dates supplied.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","basicattributes",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"05cbe99a-fda7-4437-9dea-eb09ea7acaaf","name":"Validation Failed AlphaNumeric ","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/basicattributes/123!!"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 22 Jun 2018 11:06:40 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"RmAmWESpjPx1HQcC4yM3LakCm1+pazrdxEpor92H2/Bbgfn5+PkfVrR1SNs1fnfVhP7f+MscIk1F07yw1loGjw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-00143b6d","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Alphanumeric characters only.\",\n                    \"code\": \"9002\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"081f2257-2c78-45d4-b98b-7d7f46a05b4e","name":"Mandatory Field Missing","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/basicattributes/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 22 Jun 2018 11:05:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"Xv9lRXYEJ7eVD2nC2gIUqerGRIFOD81+JnHtfOxPQgWOYt9i+LRFxXCLUSr7Xr8sssp6vyRHeKI0cUBgSxjMyg==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001439db","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"This field is mandatory.\",\n                    \"code\": \"9001\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"1df5b8ab-1edf-453f-9bc2-db8fca011fdd","name":"Working Example","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/basicattributes/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 26 Jun 2018 16:16:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"QozGpjQ/pokQfFuXCrLby9Kfov86tifSFSwitSSyqwRrHSB0VIhvBagWvIthkxz1i96lihX/dAAhFAsj+KzgJQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-000062cb","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"firstName\":\"Marco\",\"middleName\":\"Rufus\",\"lastName\":\"Donnini\",\"previousSurname\":\"Radinski\",\"knownAs\":\"Marco\",\"title\":\"Professor\",\"active\":\"Y\",\"onboardingCompleted\":\"N\",\"dateOfBirth\":\"19700101\",\"currentStartDate\":\"20180315\",\"terminationDate\":\"\",\"originalStartDate\":\"20170102\",\"continuousServiceDate\":\"20180315\",\"nextOfKinName\":\"Rufus Stravous\",\"nextOfKinContactNumber\":\"+44 765892350\",\"nextOfKinRelationship\":\"Partner\",\"salaryPayMethod\":\"PP\",\"homeTelehoneNumber\":\"4401892350\",\"loginId\":\"N/A (SAML enabled site)\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/basicattributes/5990404\"\n      }\n    ]\n}\n"},{"id":"47debd88-9eaa-41d8-844a-f7cec2b492fa","name":"Validation Failed Wrong Field Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/basicattributes/1234567890123"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 22 Jun 2018 11:07:28 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"T2L98k5uY4oOIYGERPhm/fRFFPlBFj5IYfwnRplcyTaCuRCN5aZXRLqBxQjdHdbnstHQbumRWP7agQ3j8kc0FA==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-00143c86","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"The maximum length of this field is 12\",\n                    \"code\": \"9011\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"}],"_postman_id":"ae59a3db-3157-4d7c-8d56-05a88158416f"}],"id":"41651273-9057-4a3c-aace-2f31ae1fc3fa","description":"<p>This section deals with an individuals most basic attributes e.g. name, title, date of birth etc. As CoreHR is a HR system, every field within the app could be argued to be included. Our objective is to provide services for use cases and not expose all fields in one monolithic web service. We also have to consider privacy and security e.g. not every third party service app requires Social Security Number or Bank Account Details etc. Hence, such fields are not included in the basicAttributes service, instead they are available via specific services.</p>\n<p>You might ask <em>where are email, mobile numbers etc and why are they not provided here?</em> </p>\n<p>Instead they are provided via the <code>Contact</code> module (<em>such detail is highly configurable</em>)</p>\n<p>Following attributes are provided as part of this basicAttribute module:</p>\n<h2 id=\"general\">General</h2>\n<ul>\n<li>First Name</li>\n</ul>\n<p>Indicates an individuals first name.</p>\n<ul>\n<li>Middle Name</li>\n</ul>\n<p>Indicates an individuals middle name.</p>\n<ul>\n<li>Last Name</li>\n</ul>\n<p>Indicates an individuals middle name.</p>\n<ul>\n<li>Known As</li>\n</ul>\n<p>Sometimes a person is known as a slightly different name thatn their first, last or middle name. This field represents such scenarios.</p>\n<ul>\n<li>Title</li>\n</ul>\n<p>Indicates an individuals full title description.</p>\n<ul>\n<li>Active</li>\n</ul>\n<p>Simply indicates Y or N, answering the question at this point in time ( i.e. when the serice is called) <em>Is Person Currently active?</em></p>\n<ul>\n<li>Onabording Completed</li>\n</ul>\n<p>Simply indicates Y or N, representing if the individual has completed their onboarding.  </p>\n<ul>\n<li>Next Of Kin</li>\n</ul>\n<p>Information regarding the individuals next of kin.</p>\n<h2 id=\"dates\">Dates</h2>\n<p>All dates are represented as : YYYYMMDD</p>\n<ul>\n<li>Date of Birth</li>\n</ul>\n<p>An individuals date of birth.</p>\n<ul>\n<li>Termination Date</li>\n</ul>\n<p>Indicates an individuals most recent date for leaving. In cases where a person has left, and rejoined, and is flagged to leave again, this date will always represent the most recent date for leaving. This date field may not be populated, this date can be in the futrue.</p>\n<ul>\n<li>Current start Date</li>\n</ul>\n<p>An individuals most recent date started. This will cater for scenarios where an individual has left and rejoined. It will always represent the current start date.</p>\n<ul>\n<li>Original Start Date</li>\n</ul>\n<p>Represents an individuals first date, when they started <em>Day Zero</em> with an organisation. This can cater for scenarios where an employee has left and rejoined. This date never changes, if an individual is currently active and has never left, this is the same date as Current Start Date. If this date is different to current start date, typically suggests an individual has rejoined.</p>\n<ul>\n<li>Continuous Service Date</li>\n</ul>\n<p>This date is used for calculating an individual length of service. Within the CoreHR engine this can be a complex process. This field represents the correct continuous service date, there should be no need to attempt to derive this date from the various other dates supplied.</p>\n","event":[{"listen":"prerequest","script":{"id":"cd286b42-6036-4883-bcbf-f88b5d064a04","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9a3416a2-821a-43b3-8c19-e07a73bb2692","type":"text/javascript","exec":[""]}}],"_postman_id":"41651273-9057-4a3c-aace-2f31ae1fc3fa"},{"name":"address","item":[{"name":"home","item":[{"name":"/person/address/home/:personnelNo","id":"3ba5a34f-6195-48d3-80e5-277c328a41fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/home/5990404","description":"<p>This service simply returns the home address for an individual.</p>\n<p>Home address's have effective dates and have the concept of being active, the current effective and active home address is returned.  </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","address","home","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1cde8e07-a7cb-4757-86eb-687bdf5a5664","name":"Home Address","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/home/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 26 Jun 2018 17:46:29 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"LHgoPsSqJ5Zp8UqBgh5MgVJG1HOKKCBfPREAx0YMiAa1XGYZQFGCugkHcVG78YpKDshSr27rdW7q+8qo0Xaa1Q==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-0000c169","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"line1\":\"01 Sherringham Avenue\",\"line2\":\"Westmore\",\"line3\":\"Windsor\",\"line4\":\"Tottenham\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N17\",\"postCodeSuffix\":\"9XJ\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/address/home/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"3ba5a34f-6195-48d3-80e5-277c328a41fc"}],"id":"4e7598d3-b2a6-499f-9d8a-8b81ed7f434a","description":"<p>This service simply returns the home address for an individual.</p>\n","event":[{"listen":"prerequest","script":{"id":"6b956ad4-7633-41dc-bacb-3a3afd2625eb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2122e651-4b7b-489c-8a06-0100786b105a","type":"text/javascript","exec":[""]}}],"_postman_id":"4e7598d3-b2a6-499f-9d8a-8b81ed7f434a"},{"name":"nextOfKin","item":[{"name":"/person/address/nextofkin/:personnelNo","id":"cf67bc60-d711-4ae4-94f4-ecca9e0f9c3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/nextofkin/5990404","description":"<p>This service simply returns the next of kin address for an individual.</p>\n<p>Next of Kin address's have effective dates and have the concept of being active, the current effective and active Next of Kin address is returned.  </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","address","nextofkin","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"80d16e8f-8f7d-4472-bf67-b61751ee616a","name":"Next Of Kin Address","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/nextofkin/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 26 Jun 2018 17:47:03 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"GH0Ws6A72ZRA9hGnM/hkQzulABHsxNo+6L4wYBM7/01GxS47hp98GWrAUk1Z3T0UyQgnPFcoFtJlDKvttTJzwQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=99","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-0000c1be","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"line1\":\"01 Windsor Street\",\"line2\":\"East Bridge\",\"line3\":\"Kings Avenue\",\"line4\":\"Windsor\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N18\",\"postCodeSuffix\":\"8ZJ\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/address/nextofkin/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"cf67bc60-d711-4ae4-94f4-ecca9e0f9c3c"}],"id":"0278fb47-bbcb-4f97-b2c1-5111692277d6","description":"<p>This service simply returns the next of kin address for an individual.</p>\n","event":[{"listen":"prerequest","script":{"id":"f505f458-f561-4ad5-af9b-04b14b10958a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"500acf61-a1e4-4296-91f0-dac836d9a945","type":"text/javascript","exec":[""]}}],"_postman_id":"0278fb47-bbcb-4f97-b2c1-5111692277d6"},{"name":"work ","item":[{"name":"/person/address/work/:personnelNo","id":"8c1d3d41-8350-4232-86f4-71551900814c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/work/5990404","description":"<p>This service simply returns the work address for an individual.</p>\n<p>Work address's have effective dates and have the concept of being active, the current effective and active work address is returned.  </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","address","work","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3d7ea8d3-e60e-4224-b1df-1e250c2e16b6","name":"Work Address","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/work/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 26 Jun 2018 17:50:18 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"BfvMfrRK99guHS+1Cxo2GDYQj7LsqayBrWRnoH+84jV80kgOOa38STTJaL7oNDTYQNuu9qlKrJPfMDqZZfKWeg==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-0000c393","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"line1\":\"100 Fleetmore Street\",\"line2\":\"West Kings State\",\"line3\":\"Queens Avenue\",\"line4\":\"Windsor\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N17\",\"postCodeSuffix\":\"9SD\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/address/work/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"8c1d3d41-8350-4232-86f4-71551900814c"}],"id":"b0e61097-22e4-4c1f-9a55-e21aec8b5578","description":"<p>This service simply returns the work address for an individual. The address type of 'work' is not deafult address type as part of CoreHR. However, this address type is often created by system Administrators. For this web service to return an Address, the address type must be 'WORK'. </p>\n","event":[{"listen":"prerequest","script":{"id":"3c3d4f71-810a-4c7a-b5cd-8223f86aba6d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9ce2f934-5067-41b1-9d5f-2e14a33472e7","type":"text/javascript","exec":[""]}}],"_postman_id":"b0e61097-22e4-4c1f-9a55-e21aec8b5578"},{"name":"all","item":[{"name":"/person/address/all/:personnelNo","id":"d85d8682-c0ab-4bda-b2fe-6fdb6f5efb22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/all/5990404","description":"<p>This service returns all active addresses for an individual currently ineffective. This includes home, next of kin and <em>other</em> address. </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","address","all","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c92d8970-c302-4066-80d9-ad647660ca7c","name":"All Addresses","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/address/all/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 26 Jun 2018 17:54:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"whBYl/hO41707uWg37s7brO+oRGWKVUVCArWwHkfSzyVWhRscn+I6GNpgMHTDembglIL4AUg8sl4ShdOw6gEhQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-0000c5f8","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"WORK\",\"line1\":\"100 Fleetmore Street\",\"line2\":\"West Kings State\",\"line3\":\"Queens Avenue\",\"line4\":\"Windsor\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N17\",\"postCodeSuffix\":\"9SD\"}\n,\n{\"type\":\"home\",\"line1\":\"01 Sherringham Avenue\",\"line2\":\"Westmore\",\"line3\":\"Windsor\",\"line4\":\"Tottenham\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N17\",\"postCodeSuffix\":\"9XJ\"}\n,\n{\"type\":\"nextOfKin\",\"line1\":\"01 Windsor Street\",\"line2\":\"East Bridge\",\"line3\":\"Kings Avenue\",\"line4\":\"Windsor\",\"line5\":\"London\",\"countyCode\":\"LON\",\"countryCode\":\"GBR\",\"postCodePrefix\":\"N18\",\"postCodeSuffix\":\"8ZJ\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 3,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/address/all/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"d85d8682-c0ab-4bda-b2fe-6fdb6f5efb22"}],"id":"27208112-32a8-47fb-a67b-fda795620967","description":"<p>Use this service for all addresses associated with an individual. A tenant has the ability to create several additional address types. This service will return a result set of additional addresses i.e. all addresses associated with the individual including Home and NextOfKin.</p>\n<p>To determine descriptions for these additional address type, one can use the reference module. </p>\n<p>If a web service app has access to the reference module, and your administrator has whitelisted the reference type <code>ADDTYP</code> the app can query the reference module using the type <code>ADDTYP</code>. These additional <em>other</em> address types are best explained by the HR administrators of the CoreHR application.</p>\n","event":[{"listen":"prerequest","script":{"id":"440106cd-9997-495b-94f8-8c24cfc7791f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cd7ae035-0668-42a2-a31e-ad81c9e4f130","type":"text/javascript","exec":[""]}}],"_postman_id":"27208112-32a8-47fb-a67b-fda795620967"}],"id":"f76b62db-bbb9-401f-9f9e-47f64fc6d1b3","description":"<p>The address module's objective is to determine individual's addresses. CoreHR provides a complete and detailed module for defining different types of addresses. Individual's may have several different addresses, typically referred to as <em>address types</em> e.g. home, business, next of kin, overseas etc. Not all personnel will have each of these address types. Assigning addresses to each person is a matter for each tenant. The CoreHR app also faciliates tenants adding various additional addresses.</p>\n<p>In general, use cases for these services include obtaining:</p>\n<ol>\n<li>an individual's home address</li>\n<li>an individual's next of kin address</li>\n<li>an individual's work address</li>\n<li>other address types associated with an individual</li>\n</ol>\n<p>This module has been split into different easy to use scenarios:</p>\n<ul>\n<li>Home Address</li>\n<li>Next of Kin</li>\n<li>Work</li>\n<li>All</li>\n</ul>\n<p>Home and Next of Kin addresses are simple and explicit. While <em>others</em> are slightly more completex. If the requirement is home address simply use the home address service, and for next of kin use next of kin service. For <em>Other</em> address types refer to the <em>all</em> address service below. Work address has been added as it's a typical use case, however, work address may or may not be in use.</p>\n<p><strong>Address Templating</strong></p>\n<p>This service does <strong>not</strong> implement address templating. Address type templating is a higher level display facility, providing options around the order of how to display an address e.g. display address line 3 before address line 1. Instead, the address is displayed in order 1 through 5.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<p>Each of the address web services use the following parameters:</p>\n<ul>\n<li>personnelNo</li>\n</ul>\n<p>Manadatory</p>\n<p>Type: AlphaNumeric </p>\n<p>Max Length : 12</p>\n","event":[{"listen":"prerequest","script":{"id":"25d23e83-6871-424e-99ea-24ccbec1fee0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cfdb6a84-a2c8-49ad-9e4d-81bc637d4dca","type":"text/javascript","exec":[""]}}],"_postman_id":"f76b62db-bbb9-401f-9f9e-47f64fc6d1b3"},{"name":"workpermit","item":[{"name":"/person/workpermit/:personnelNo","id":"e0032c9a-ed9d-4402-9906-ba88767f8d78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/workpermit/5990404","description":"<p>Provides an individuals work permit information.</p>\n<ul>\n<li><p>Work Permit Number</p>\n</li>\n<li><p>Work Permit</p>\n</li>\n<li><p>Date Work Permit Issued</p>\n</li>\n<li><p>Date Work Permit Expires</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","workpermit","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5e6c5f2f-af73-4cc7-bfd7-d5b1801c4fc4","name":"WorkPermit","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/workpermit/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 20 Mar 2018 12:22:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"QWb+46LohvrS7+AouGLdijCxrGl+3X3XqEryvEgVUAlwh1p2ucoj2InMoYM0rnREohHy9bq6w+aQ5oAQSUGJ7Q==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"cb89685b-0a33-4e88-9829-ed0bf23cf3fc-0005bfb6","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"workPermit\" : [\n{\"workPermitNumber\":\"S234F567\",\"workPermit\":\"J1 Visa\",\"dateWorkPermitIssued\":\"20180310\",\"dateWorkPermitExpires\":\"20190420\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/workpermit/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"e0032c9a-ed9d-4402-9906-ba88767f8d78"}],"id":"32b7d355-3033-46a8-a97e-40c1b4473b0e","description":"<p>Provides an individuals work permit information.</p>\n<ul>\n<li><p>Work Permit Number</p>\n</li>\n<li><p>Work Permit</p>\n</li>\n<li><p>Date Work Permit Issued</p>\n</li>\n<li><p>Date Work Permit Expires</p>\n</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"593c4a14-84e3-4473-bceb-1992d316786c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"66d2a838-1f95-4039-b2ad-87514f5795c9","type":"text/javascript","exec":[""]}}],"_postman_id":"32b7d355-3033-46a8-a97e-40c1b4473b0e"},{"name":"probation","item":[{"name":"/person/probation/:personnelNo","id":"da23bc0f-876b-448d-ba3e-1345b99e5e4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/probation/:personnelNo","description":"<p>The following attributes are associated with an individual's probabtion detail. Not all attributes will be populated.</p>\n<p>All dates presented in 'YYYYMMDD' format.</p>\n<ul>\n<li>Date Complete</li>\n</ul>\n<p>The probabtion completion date is the date which the individuals  probstion is completed.</p>\n<ul>\n<li>Date Expires</li>\n</ul>\n<p>The probation expiry date is the date which the individual's probation is due to expire.</p>\n<ul>\n<li>Date Review One</li>\n</ul>\n<p>The probation review date is the first review date for the individuals probation.</p>\n<ul>\n<li>Date Review Two</li>\n</ul>\n<p>This probation review date is the second review date for the individual's probation. </p>\n<ul>\n<li>Date Extension</li>\n</ul>\n<p>This date represents the individual's probation extension where applicable.</p>\n<ul>\n<li>Extension Reason</li>\n</ul>\n<p>The probation extension reason represents the reason for extending the persons probation. This is a reference related attribute, the associated desription is available from the reference module under the reference type <code>PEXRSN</code>. Note, in order to obtain the description your system administrator will be required to whitelist the reference type <code>PEXRSN</code> and granted the app approrpiate privileges.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","probation",":personnelNo"],"host":["{{url}}"],"query":[],"variable":[{"id":"33c4b862-0ad0-4e04-b379-55cbeb3c4f92","type":"any","value":"","key":"personnelNo"}]}},"response":[{"id":"f5a321e8-cb76-41a0-8f0c-7119f54cd23d","name":"Mandatory Fields missing","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/probation/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 20 Mar 2018 15:15:48 GMT","name":"Date","description":""},{"key":"ETag","value":"\"3F7/81J6deTDSBftnwxU8UmVgbSZ7BSqwntempYXk1fI6MFsiZmdCZzjpIKEAqYZdbMr1ZBKUzs+YvjwwKlhjQ==\"","name":"ETag","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"cb89685b-0a33-4e88-9829-ed0bf23cf3fc-000651f3","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing (PersonnelNo is required) \" }}\n"}],"_postman_id":"da23bc0f-876b-448d-ba3e-1345b99e5e4e"}],"id":"d27a924b-36e4-4647-9e7c-13b8c8c3472c","description":"<p>This module provides an individual's probation detail.</p>\n","event":[{"listen":"prerequest","script":{"id":"d0eb92ba-651a-417f-a1d2-f52bd67b974c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4f112ea2-bb1b-420a-8ab7-86f6c8dec89d","type":"text/javascript","exec":[""]}}],"_postman_id":"d27a924b-36e4-4647-9e7c-13b8c8c3472c"},{"name":"salary","item":[{"name":"/person/salary/:personnelNo/:date?","id":"e3825bc4-20ec-4bae-b6f1-4dd1a2f14887","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/","description":"<p>Provides an employees salary, has the ability to get an employees full salary history along with Salary for a specific date. It is therefore possible to determine current, full history or salary for a specfic date across all of an employees appointments.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<ul>\n<li>personnelNo</li>\n</ul>\n<p>Manadatory</p>\n<p>Type: AlphaNumeric </p>\n<p>Max Length : 12</p>\n<ul>\n<li>date</li>\n</ul>\n<p>Optional</p>\n<p>Format : YYYYMMDD</p>\n<p>When no date is provided, the service assumes current active salary details. When populated \n(note the date formatted must be YYYYMMDD) this will provide employees salary for the specfic date. While providing <code>0</code> indicates to the service to return a result set of employees entire salary history. </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","salary","5990404",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"04d7945f-3779-475c-a42c-11c490e9ad48","name":"Specific Date Salary","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/20170101"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 16:21:20 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"GPVEgtqrfadY/x/zVrU/vGpIU19mAeLjYUtW+8+eKmjCPgv1cvoOcAKyE4rsyx8Kj6WsYYihxI5ogozL+pTvKw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001a7a8d","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161211\",\"dateExpire\":\"20170107\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"OU0011-12458\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/20170101\"\n      }\n    ]\n}\n"},{"id":"75afa1de-42c3-4167-879b-554baa785f94","name":"All Salary History","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/0"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 16:19:22 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"aaipex3HQSzjyVZfbQvaUtOFP/KkzJkt8NzYnXaX1NaFg1kSRoPNLrZbzCfvAtiG74NPxNGZvD4HRaIDZ2lCIg==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001a77c5","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"annual\":\"30000\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"0\",\"dateActive\":\"20170102\",\"dateExpire\":\"\",\"multiplier\":\"1\",\"annualised\":\"30000\",\"actualPay\":\"30000\",\"actualAnnualisedPay\":\"30000\",\"grade\":\"5990\",\"point\":\"1\",\"appointmentID\":\"599014-25\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20130718\",\"dateExpire\":\"20160401\",\"multiplier\":\"1\",\"annualised\":\"14448.25\",\"actualPay\":\"14448.25\",\"actualAnnualisedPay\":\"14448.25\",\"grade\":\"KM\",\"point\":\"19\",\"appointmentID\":\"JXXXXX-4347\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161211\",\"dateExpire\":\"20170107\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"OU0011-12458\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20160402\",\"dateExpire\":\"20160915\",\"multiplier\":\".25641\",\"annualised\":\"14448.25\",\"actualPay\":\"3704.67578\",\"actualAnnualisedPay\":\"3704.67578\",\"grade\":\"KM\",\"point\":\"19\",\"appointmentID\":\"OU0011-2694\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20160916\",\"dateExpire\":\"20160922\",\"multiplier\":\".25641\",\"annualised\":\"14448.25\",\"actualPay\":\"3704.67578\",\"actualAnnualisedPay\":\"3704.67578\",\"grade\":\"KM\",\"point\":\"19\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15262.24\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.5\",\"dateActive\":\"20160923\",\"dateExpire\":\"20160924\",\"multiplier\":\".25641\",\"annualised\":\"15262.24\",\"actualPay\":\"3913.39096\",\"actualAnnualisedPay\":\"3913.39096\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"\",\"daily\":\"\",\"hourly\":\"0\",\"dateActive\":\"20160925\",\"dateExpire\":\"20160925\",\"multiplier\":\".25641\",\"annualised\":\"15770.98\",\"actualPay\":\"4043.83698\",\"actualAnnualisedPay\":\"4043.83698\",\"grade\":\"99\",\"point\":\"9999\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"\",\"daily\":\"\",\"hourly\":\"0\",\"dateActive\":\"20160926\",\"dateExpire\":\"20160930\",\"multiplier\":\".410256\",\"annualised\":\"15770.98\",\"actualPay\":\"6470.13917\",\"actualAnnualisedPay\":\"6470.13917\",\"grade\":\"99\",\"point\":\"9999\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161001\",\"dateExpire\":\"20161029\",\"multiplier\":\".410256\",\"annualised\":\"15770.98\",\"actualPay\":\"6470.13917\",\"actualAnnualisedPay\":\"6470.13917\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161030\",\"dateExpire\":\"20161210\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20170108\",\"dateExpire\":\"\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"TS0011-18339\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 11,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/0\"\n      }\n    ]\n}\n"},{"id":"9be1934a-f7e9-48ba-ae7e-127c98822195","name":"Current Active Salary","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 16:20:34 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"e7BB/yedq9rerTQdSLeQ546D+ECPnESt8lJBTo3F8kTFzbMW1WN+7Dr008eqa0kPKsX4VZ/+SPhBMnTlkegoQg==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001a7975","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"annual\":\"30000\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"0\",\"dateActive\":\"20170102\",\"dateExpire\":\"\",\"multiplier\":\"1\",\"annualised\":\"30000\",\"actualPay\":\"30000\",\"actualAnnualisedPay\":\"30000\",\"grade\":\"5990\",\"point\":\"1\",\"appointmentID\":\"599014-25\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20170108\",\"dateExpire\":\"\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"grade\":\"CLDN\",\"point\":\"20\",\"appointmentID\":\"TS0011-18339\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/\"\n      }\n    ]\n}\n"},{"id":"b491b7c2-1bbd-4e1f-8e3e-2e9ed0acfbb0","name":"Invalid Date","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/1"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 16:22:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"sKp2ti/R6sLLoutzkCNGLcmb5Tgu8M4GSKUF7A5kfUdkL+yEkKA/2pZtdOyezXWgsUt5nVH3zz322P2KeYn4IQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001a7b8e","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Date must be in the format of YYYYMMDD and exactly 8 digits in length.\",\n                    \"code\": \"9008\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"b8265f69-6802-4e20-afcf-722af462c280","name":"Invalid Personnel Number - Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/1234567890123/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 17:42:37 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"+llSfzdC1UDE9v+iRPeAlBVlFgq6jlBrZm+oQrpwg3sLsH1ovzcy5gYcg93hrn0/l47Mr+b9yiMQo5YOngCBLA==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001acb0b","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"The maximum length of this field is 12\",\n                    \"code\": \"9008\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"f24fcd01-6d33-491a-ae28-33878c27b45d","name":"Invalid Date - Month","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/20011301"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 17:38:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"sKp2ti/R6sLLoutzkCNGLcmb5Tgu8M4GSKUF7A5kfUdkL+yEkKA/2pZtdOyezXWgsUt5nVH3zz322P2KeYn4IQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001ac8d1","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Date must be in the format of YYYYMMDD and exactly 8 digits in length.\",\n                    \"code\": \"9008\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"f2504d91-f68c-4cbd-87bf-4e11c38250dd","name":"Invalid Personnel Number","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/599[0/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 25 Jun 2018 17:41:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"RmAmWESpjPx1HQcC4yM3LakCm1+pazrdxEpor92H2/Bbgfn5+PkfVrR1SNs1fnfVhP7f+MscIk1F07yw1loGjw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-001aca5d","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Alphanumeric characters only.\",\n                    \"code\": \"9002\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"}],"_postman_id":"e3825bc4-20ec-4bae-b6f1-4dd1a2f14887"}],"id":"15e3b198-0e16-4e52-b616-fc6af3691726","description":"<p>This module will provide salary detail for an individual. Salary information can be a complex topic,  outlined explains in as simply terms as possible how an employees rate of pay is determined. </p>\n<p>Uses Cases determine</p>\n<ol>\n<li>an employee's current salary detail</li>\n<li>an employee's historical salary detail</li>\n<li>an employee's salary per appointment </li>\n<li>an employee's salary on a specific date</li>\n</ol>\n<p>This salary module is aware of multi-appointments i.e. in cases where an individual has more than one active position (i.e. more than one appointment) two entries or more, will be included in the results set. In cases where only one position is associated with an employee only one entry will be returned.</p>\n<p>Employee's rates of pay can be based on various frequencies:</p>\n<ul>\n<li>Hourly</li>\n<li>Daily</li>\n<li>Weekly</li>\n<li>Annual</li>\n</ul>\n<p>Not all attributes will be populated, the fields populated are dependent on how your system administrators have configured salary / pay details.</p>\n<p>Following attributes are returned:</p>\n<ul>\n<li>annual</li>\n</ul>\n<p>An annual salary rate, typically used for salary based employees. Each month this rate is divided by 12.</p>\n<ul>\n<li>weekly</li>\n</ul>\n<p>A weekly based rate of pay. </p>\n<ul>\n<li>daily</li>\n</ul>\n<p>A daily based rate of pay.</p>\n<ul>\n<li>hourly</li>\n</ul>\n<p>An hourly based rate of pay.</p>\n<ul>\n<li>dateActive</li>\n</ul>\n<p>The date when the rate(s) of pay are effective for employee. An employee can only have one set of active pay rates per appointment.</p>\n<ul>\n<li>dateExpire</li>\n</ul>\n<p>The date when the rate(s) of pay have ended and are no longer active for employee. Useful when viewing historical rates of pay.</p>\n<ul>\n<li>multiplier</li>\n</ul>\n<p>This is a number applied to the rate of pay, typically set to 1, indicating the individual is paid the (rate of pay * 1), often used in cases where employee is part time.</p>\n<ul>\n<li>annualised</li>\n</ul>\n<p>The annual rate of pay, in cases where weekly rate is only provided, this figure presents an annual rate. In cases where the annual rate is defined, this annualised figure is the same value.</p>\n<ul>\n<li>actualPay</li>\n</ul>\n<p>Takes the provided rate(s) of pay and applies the multiplier.</p>\n<ul>\n<li>actualAnnualisedPay</li>\n</ul>\n<p>Takes the annualised figure and applies the multiplier.</p>\n<ul>\n<li>appointmentID</li>\n</ul>\n<p>Employee's unique Job identifier, typically referred to as appointment ID. It is possible an individual has more than one Job/Appointment, if this is the case more the result set will reflect this. </p>\n<ul>\n<li>grade</li>\n</ul>\n<p>This attribute reprsents an employee's salary grade, typically this represents one's Role / Job.</p>\n<ul>\n<li>point</li>\n</ul>\n<p>This attribute represents a level within the Grade, sometimes termed Spine Point. In some cases this value can be '9999', this represents an individual has been assigned a personal point.</p>\n","event":[{"listen":"prerequest","script":{"id":"c4027c03-4245-4132-a9bc-e7bad0a4b8a9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2fea5d69-8e27-47f3-b67a-cca1e5207f98","type":"text/javascript","exec":[""]}}],"_postman_id":"15e3b198-0e16-4e52-b616-fc6af3691726"},{"name":"socialSecurityNumber","item":[{"name":"/person/socialsecuritynumber/:personnelNo","id":"d73080bd-c6e0-44c5-bb03-e6881a37ed13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/socialsecuritynumber/5990404","description":"<p>Simply gets an individuals Social Security Number.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","socialsecuritynumber","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"487b311d-1475-4977-90d7-b200f6bb5714","name":"Salary on Specific Date ","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/20170101"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 21 Mar 2018 17:58:29 GMT","name":"Date","description":""},{"key":"ETag","value":"\"X8DO7XKppamdtc8NWRGV4/oL9G8Xqsj7zouGAbNqDV2Y9g4Wwdl3gRdBM3iciy40xCIPV9WwIQRbWiWwY0QFKg==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-00011bba","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"salary\" : [\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161211\",\"dateExpire\":\"20170107\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"appointmentID\":\"OU0011-12458\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/20170101\"\n      }\n    ]\n}\n"},{"id":"d805a7dc-9491-4311-9d88-cc034272da34","name":"Current Active Salary","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 21 Mar 2018 17:57:37 GMT","name":"Date","description":""},{"key":"ETag","value":"\"FDsnzuXPBRCYJbbDVL2OyeQ9P2HxpYUXcZyf2t1OE5u8nKCRru6K48Y/V+cXg/9KPl/nUAaF7IDq1H8s3HEVSA==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-00011b68","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"salary\" : [\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20170108\",\"dateExpire\":\"\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"appointmentID\":\"TS0011-18339\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/\"\n      }\n    ]\n}\n"},{"id":"dc7eb5f8-2d96-4ddd-8d0a-9cf48508c09d","name":"All Salary History","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/salary/5990404/0"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 21 Mar 2018 17:58:04 GMT","name":"Date","description":""},{"key":"ETag","value":"\"hkaOE4XQSbYdfEu/G4B7X3hnwbEZbElMx/uzYF1NoEK/tWmjE8dhIE0XKrxzA2nxzOD+upOc7BFrs9bjOQsoyw==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-00011b92","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"salary\" : [\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20130718\",\"dateExpire\":\"20160401\",\"multiplier\":\"1\",\"annualised\":\"14448.25\",\"actualPay\":\"14448.25\",\"actualAnnualisedPay\":\"14448.25\",\"appointmentID\":\"JXXXXX-4347\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161211\",\"dateExpire\":\"20170107\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"appointmentID\":\"OU0011-12458\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20160402\",\"dateExpire\":\"20160923\",\"multiplier\":\".25641\",\"annualised\":\"14448.25\",\"actualPay\":\"3704.67578\",\"actualAnnualisedPay\":\"3704.67578\",\"appointmentID\":\"OU0011-2694\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20160924\",\"dateExpire\":\"20160915\",\"multiplier\":\".25641\",\"annualised\":\"14448.25\",\"actualPay\":\"3704.67578\",\"actualAnnualisedPay\":\"3704.67578\",\"appointmentID\":\"OU0011-2694\"}\n,\n{\"annual\":\"14448.25\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.1\",\"dateActive\":\"20160916\",\"dateExpire\":\"20160922\",\"multiplier\":\".25641\",\"annualised\":\"14448.25\",\"actualPay\":\"3704.67578\",\"actualAnnualisedPay\":\"3704.67578\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15262.24\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.5\",\"dateActive\":\"20160923\",\"dateExpire\":\"20160924\",\"multiplier\":\".25641\",\"annualised\":\"15262.24\",\"actualPay\":\"3913.39096\",\"actualAnnualisedPay\":\"3913.39096\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"\",\"daily\":\"\",\"hourly\":\"\",\"dateActive\":\"20160925\",\"dateExpire\":\"20160925\",\"multiplier\":\".25641\",\"annualised\":\"15770.98\",\"actualPay\":\"4043.83698\",\"actualAnnualisedPay\":\"4043.83698\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"\",\"daily\":\"\",\"hourly\":\"\",\"dateActive\":\"20160926\",\"dateExpire\":\"20160930\",\"multiplier\":\".410256\",\"annualised\":\"15770.98\",\"actualPay\":\"6470.13917\",\"actualAnnualisedPay\":\"6470.13917\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161001\",\"dateExpire\":\"20161029\",\"multiplier\":\".410256\",\"annualised\":\"15770.98\",\"actualPay\":\"6470.13917\",\"actualAnnualisedPay\":\"6470.13917\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20161030\",\"dateExpire\":\"20161210\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"appointmentID\":\"TS0011-12438\"}\n,\n{\"annual\":\"15770.98\",\"weekly\":\"0\",\"daily\":\"0\",\"hourly\":\"7.75\",\"dateActive\":\"20170108\",\"dateExpire\":\"\",\"multiplier\":\".307692\",\"annualised\":\"15770.98\",\"actualPay\":\"4852.60438\",\"actualAnnualisedPay\":\"4852.60438\",\"appointmentID\":\"TS0011-18339\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 11,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/salary/5990404/0\"\n      }\n    ]\n}\n"}],"_postman_id":"d73080bd-c6e0-44c5-bb03-e6881a37ed13"}],"id":"a1951999-c09e-4473-ae4b-37934627fdfe","description":"<p>An individuals National Social number e.g. Social Security Number.</p>\n","event":[{"listen":"prerequest","script":{"id":"bacefca3-38c3-46c0-b830-7cb900b216b8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3a0c86e6-4085-44ac-8ad4-67d9dbdce7bf","type":"text/javascript","exec":[""]}}],"_postman_id":"a1951999-c09e-4473-ae4b-37934627fdfe"},{"name":"bank","item":[{"name":"/person/bank/:personnelNo","id":"d86f426d-75a9-47a9-bb7d-ef7325d2a9bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/bank/5990404","description":"<p>Provides an employees bank account details both Salary and Expense. In addition the building society number is also available form this web service.</p>\n<p>NB - relates to tenants implementing HR, no special consideration has been provided to <em>Payroll Only Special tenants</em>.</p>\n<p>Tenant's implement different approaches to storing an individual's bank account detail. This service provides both traditional sort code / bank account code's and the newer BIC and IBAN. </p>\n<p>No conversion process takes place, instead the information held in CoreHR is displayed i.e. if the tenant has not provided BIC and IBAN for an individual, the expectation for this service is not to display same.</p>\n<ul>\n<li>personnelNo</li>\n</ul>\n<p>this is manadatory, at a minimum this parameter must be provided.</p>\n<p>Returns following information for both Salary and Expense:</p>\n<ul>\n<li>Sort Code</li>\n</ul>\n<p>An individual's traditional Bank Branch identification. Left padding with 0's is <strong>not</strong> applied when the value is less than 6 characters. This is fixed in V27.0.8+.</p>\n<ul>\n<li>Bank Account Number</li>\n</ul>\n<p>An individual's traditional Bank Account Number. Left padding with 0's is <strong>not</strong> applied when the value is less than 8 characters. This is fixed in V27.0.8+.</p>\n<ul>\n<li>BIC</li>\n</ul>\n<p>An individual's Bank Identification code</p>\n<ul>\n<li>IBAN</li>\n</ul>\n<p>An individual's International Bank Account Number</p>\n<ul>\n<li>Building Society Reference</li>\n</ul>\n<p>An individual's building society reference number </p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","bank","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b5edba5c-6214-409f-aa5e-e6d99eb85426","name":"Salary and Expense","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/bank/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 05 Apr 2018 14:24:56 GMT","name":"Date","description":""},{"key":"ETag","value":"\"kPah9YnLuQejW3/UQrmaws6hdxEb5O4JN3azU8xWPt3TOpcq+1RDvvJdvW8ILk19RiBm3x/Ypr/sHf/UhfyiiQ==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"d99bff8e-c042-4720-8fb9-2dea429dc7ce-0001db16","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"accounts\" : [\n{\"type\":\"salary\",\"bankSortCode\":\"902813\",\"bankAccountNumber\":\"12345678\",\"bic\":\"AIBKIE2DXXX\",\"iBan\":\"IE49AIBK93015612345678\"}\n,\n{\"type\":\"expense\",\"bankSortCode\":\"912314\",\"bankAccountNumber\":\"87235622\",\"bic\":\"AIBKIE2DXXX\",\"iBan\":\"IE49AIBK93015612345678\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/bank/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"d86f426d-75a9-47a9-bb7d-ef7325d2a9bc"}],"id":"96fe8873-a576-42e0-bf4f-0a5340d43b7d","description":"<p>A simply service to retrieve an individuals bank account details. </p>\n<p>An individual may have more than one bank account, e.g. one for Salary payments and another for Expense. These account details maybe the same or different. </p>\n<p>This service caters for both Salary and Expense bank accounts.</p>\n","event":[{"listen":"prerequest","script":{"id":"afed91d9-7499-47c4-a04f-f1b9f4a83fc5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fb319359-2692-4685-a1a0-abb4812ef7f2","type":"text/javascript","exec":[""]}}],"_postman_id":"96fe8873-a576-42e0-bf4f-0a5340d43b7d"},{"name":"genderIdentity","item":[{"name":"/person/genderidentity/:personnelNo","id":"70820e11-dec9-474b-b66b-99c28ae36d60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/genderidentity/5990404","description":"<p>Provides an individuals legal sex and gender identification detail. </p>\n<ul>\n<li>personnelNo</li>\n</ul>\n<p>this is manadatory, at a minimum this parameter must be provided.</p>\n<p>Returns following attributes:</p>\n<ul>\n<li><p>Legal Sex</p>\n</li>\n<li><p>Gender Identity</p>\n</li>\n</ul>\n<p>This is a gender identification code, for associated descriptions use the Reference Module with the reference type <code>GNDRID</code>.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","genderidentity","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c0d21b06-9cb8-40e8-8058-875cdae45a10","name":"Success Gender Identification","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/genderidentity/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 05 Apr 2018 16:34:48 GMT","name":"Date","description":""},{"key":"ETag","value":"\"V20dpEGbShAmexMXpHDLO2Wsz4XNGFYA3rmIn8tc+dkrLG1ZvUMnMenBkRzynWnOxsex8AhDqrvLl+g1IlS8vg==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"d99bff8e-c042-4720-8fb9-2dea429dc7ce-0002537e","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"genderIdentity\" : [\n{\"legalSex\":\"M\",\"genderIdentity\":\"ANDR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/genderidentity/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"70820e11-dec9-474b-b66b-99c28ae36d60"}],"id":"a8a6b8a4-bb2e-44d9-9439-27a524f15fc7","description":"<p>This service provides information relating to an individual's gender identification.</p>\n","_postman_id":"a8a6b8a4-bb2e-44d9-9439-27a524f15fc7"},{"name":"costAllocation","item":[{"name":"/person/costallocation/:personnelNo","id":"5ca60eb6-281a-4490-a2d3-3e6b1ba2a8d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/costallocation/5990404","description":"<p>This service provides the ability to obtain an employees cost allocations, all cost allocations are returned both current and historic (dates are provided to distinguish open / closed allocations). Generally this service not return 100's of cost allocations, and therefore no special filters are created. </p>\n<p>Cost Alloactions can be defined at the employee or appointment level.This service is defined at the employee level, but will return appointment ID's where appropriate.</p>\n<p><strong>Parameters</strong></p>\n<p>requires personnelNumber, use the /filter/* endpoints to obtain personnelNumbers</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li>costCentre</li>\n</ul>\n<p>the cost centre, this code can be mapped to the reference module, using <code>COST</code>. This attribute should always be populated.</p>\n<ul>\n<li>percent</li>\n</ul>\n<p>the percentage applied to this cost allocation. This attribute should always be populated.</p>\n<ul>\n<li>location</li>\n</ul>\n<p>the location applied to this cost allocation, this code can be mapped to the reference module, using <code>LOC</code></p>\n<ul>\n<li>project</li>\n</ul>\n<p>the project applied to this cost allocation, this code can be mapped to the reference module, using <code>PROJ</code></p>\n<ul>\n<li>expense</li>\n</ul>\n<p>the expense applied to this cost allocation, this code can be mapped to the reference module, using <code>EXPS</code></p>\n<ul>\n<li>allocationId</li>\n</ul>\n<p>unique identifier for a cost allocation. Provides an ability to link directly back to the cost allocation. This attribute should always be populated.</p>\n<p>  Example:</p>\n<p>  An employees salary is calculated and associated with three different cost centres, and query where the value at cost centre   X comes from, the allocation ID (if present) can link back to the exact cost allocation that triggered it, e.g. 25% of costs to cost centre X.</p>\n<ul>\n<li>appointmentId</li>\n</ul>\n<p> The appointment associated with this cost allocation</p>\n<ul>\n<li>startDate</li>\n</ul>\n<p>the date this cost allocation comes into affect, format YYYYMMDD</p>\n<ul>\n<li>endDate</li>\n</ul>\n<p>the date this cost allocation is no longer in effect, format YYYYMMDD</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","costallocation","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6db8f3a4-5969-46a2-ac58-f12a52ae450b","name":"Success Cost Allocations","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/costallocation/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 02 May 2018 11:00:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"6XCcIUTnTS/FuB7jjB/DDFRD/fz8jTWUTGZDWvK6rZuE8/isin3lnJogmwcCAHD4IuCST8s+6cRPWCA2FDMbCw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"d99bff8e-c042-4720-8fb9-2dea429dc7ce-003c1ddc","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"attributes\" : [\n{\"costCentre\":\"BM40008\",\"startDate\":\"20170715\",\"endDate\":\"20170831\",\"percent\":\"100\",\"location\":\"\",\"allocationId\":2017071974748241,\"appointmentId\":\"502629-3\",\"expense\":\"40290\",\"project\":\"7\"}\n,\n{\"costCentre\":\"BM40008\",\"startDate\":\"20170711\",\"endDate\":\"20170714\",\"percent\":\"100\",\"location\":\"\",\"allocationId\":2017071974745300,\"appointmentId\":\"502629-1\",\"expense\":\"40290\",\"project\":\"7\"}\n,\n{\"costCentre\":\"BM40014\",\"startDate\":\"20170704\",\"endDate\":\"20170710\",\"percent\":\"50\",\"location\":\"\",\"allocationId\":2017071974745296,\"appointmentId\":\"502629-1\",\"expense\":\"40560\",\"project\":\"5\"}\n,\n{\"costCentre\":\"BM00000\",\"startDate\":\"20170704\",\"endDate\":\"20170710\",\"percent\":\"50\",\"location\":\"1\",\"allocationId\":2017071974745298,\"appointmentId\":\"502629-1\",\"expense\":\"40290\",\"project\":\"7\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 4,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/costallocation/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"5ca60eb6-281a-4490-a2d3-3e6b1ba2a8d9"}],"id":"8d301d78-55ad-41dc-b656-a00a43965e5c","description":"<p>This service provides the ability to obtain an employees cost allocations, all cost allocations are returned both current and historic (dates are provided to distinguish open / closed allocations). Generally this service not return 100's of cost allocations, and therefore no special filters are created. </p>\n<p>Cost Alloactions can be defined at the employee or appointment level.This service is defined at the employee level, but will return appointment ID's where appropriate.</p>\n","event":[{"listen":"prerequest","script":{"id":"fdbe4c65-0306-4321-b393-14665af8720a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"904d2c56-564c-4630-806d-47ade091ca34","type":"text/javascript","exec":[""]}}],"_postman_id":"8d301d78-55ad-41dc-b656-a00a43965e5c"},{"name":"appointment","item":[{"name":"/person/appointment/:personnelNo","id":"fab040f4-305f-4991-9a04-d58257ad695e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/appointment/5990404","description":"<p>This service returns an individuals appointment related information. An appointment has various different descriptions including Contract, Post, Job, Position etc. Individuals may have more than one appointment at any given moment, though typically an individual will hold one appointment at any one time.</p>\n<p><strong>Parameters</strong></p>\n<p>requires personnelNumber, use the /filter/* endpoints to obtain personnelNumbers</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li><p>appointmenId </p>\n<p>A unique reference identifier for the appointment, this is a system generated identifier.</p>\n</li>\n<li><p>appointmentStatus - following explains the details:</p>\n</li>\n</ul>\n<ul>\n<li><p><code>PL</code> (Planned) - When a new appointment is created it will have the status of PL. This is like a placeholder appointment. You can enter planned details like the planned contract dates. <strong>No person</strong> is linked to the appointment at this stage. As such for this service you should never see this status.</p>\n</li>\n<li><p><code>AU</code> (Authorised) - When the post administrator authorises a planned appointment, the appointment status changes to AU. This is a placeholder appointment that has been authorised. <strong>No person</strong> is linked to the appointment at this stage. As such for this service you should never see this status.</p>\n</li>\n<li><p><code>RE</code> (Recruitment in Progress) - If the recruitment module is in use, you can optionally link an authorised appointment to an open vacancy. The appointment status changes to RE. A person gets linked to the appointment via the recruitment module when they are offered and accept a vacancy offer.</p>\n</li>\n<li><p><code>AP</code> (Appointed) - The appointment status changes to AP when an employee new or existing is appointed to the appointment. Further contract details can be entered at this stage. It is usually indicative of a person accepting the contract but has not yet started it. The post can be configured that when you link an employee to the appointment that this stage is bypassed and the status goes straight to commenced. </p>\n</li>\n<li><p><code>CO</code> Commenced - The person has started on the appointment. A salary record is generated. For new starters they cannot be brought on to payroll until they are commenced. This should be the most common status encountered.</p>\n</li>\n<li><p><code>CF</code> Commenced Future - The person is commencing the appointment at a future date. The status reverts to CO when the start date of the appointment becomes effective.</p>\n</li>\n<li><p><code>EN</code> Ended - The appointment has been ended because the person has left the organisation or has started in a new appointment.</p>\n</li>\n</ul>\n<ul>\n<li>category</li>\n</ul>\n<p> Categorises appointments based on an organisations requirements. E.g. Categorising employees who are entitled to additional levels of annual leave. For associated descriptions use the Reference Module with the reference type <code>CATG</code>.</p>\n<ul>\n<li><p>subCategory</p>\n<p>Typically used to further break down the Category. For associated descriptions use the Reference Module with the reference type <code>SUBC</code>.</p>\n</li>\n<li><p>startDate</p>\n</li>\n</ul>\n<p> The appointment start date.</p>\n<ul>\n<li>endDate</li>\n</ul>\n<p> The appointment start date.</p>\n<ul>\n<li>lastAmendedDate</li>\n</ul>\n<p>(requires version 26.0.9+)</p>\n<p> This date indicated a changed has been made to the appointment.</p>\n<ul>\n<li>FTE</li>\n</ul>\n<p> Full Time Eqivalence of the appointment between 0 and 1 (inclusive).</p>\n<ul>\n<li><p>contractId</p>\n<p>provides ability to set a contract identifier and associate with the appiointment.</p>\n</li>\n<li><p>jobTitle</p>\n</li>\n</ul>\n<p> The title of the apponitment ad used to describe the name of the position.</p>\n<ul>\n<li>jobCategory</li>\n</ul>\n<p> This is an appointment level field used to categorise job titles into groups of similar job titles. For associated descriptions use the Reference Module with the reference type <code>JOBCAT</code>.</p>\n<ul>\n<li>postNumber</li>\n</ul>\n<p> the is the post profile number from which the appointmnet is based on. A post is essentially a blue print for the appointments.</p>\n<ul>\n<li>primaryFlag</li>\n</ul>\n<p> this attribute will simply indicate if the appointment is the \"Substantive\" appointment as of today, this is an employees primary appointment.</p>\n<ul>\n<li>project</li>\n</ul>\n<p> this attribute is populated when the appointment is associated with a project</p>\n<ul>\n<li>Hierarchy / Structure Related - explains where the appointment fits within an organisation, not all of these fields will be populated. The number of fields populated depend on the the configuration of the organisation structure. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</li>\n</ul>\n<ul>\n<li><p><code>structureCode</code> - ability to map back to the Organisation Hierarchy end point /organisation</p>\n</li>\n<li><p><code>company</code> - Used to indicate the company / organisation on the structure of where the person's appointment sits. This is usually the highest level of the organisation. For associated descriptions use the Reference Module with the reference type <code>ORGZ</code>.</p>\n</li>\n<li><p><code>managementUnit</code> - Used to indicate the management unit within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>MGTU</code>.</p>\n</li>\n<li><p><code>department</code> - Used to indicate the department within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DEPT</code>.</p>\n</li>\n<li><p><code>costCentre</code> - The cost centre associated with this appointment. For associated descriptions use the Reference Module with the reference type <code>COST</code>.</p>\n</li>\n<li><p><code>division</code> - Used to indicate the division within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>DIV</code>.</p>\n</li>\n<li><p><code>location</code> - Used to indicate the location within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>LOC</code>.</p>\n</li>\n<li><p><code>workGroup</code> - Used to indicate the workGroup within the organisation on the structure of where the person's appointment sits. For associated descriptions use the Reference Module with the reference type <code>WRKGRP</code>.</p>\n</li>\n<li><p><code>user1</code> .. <code>user5</code> - Additional customized fields, how these are mapped and defined refer to the web service /organisation, using the provided structure code.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","appointment","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5c4b7adb-2762-482d-9044-b3142ce80991","name":"Appointments","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/appointment/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS","name":"Access-Control-Allow-Methods-Age","description":"Custom header"},{"key":"Access-Control-Max-Age","value":"600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 13 Sep 2018 16:53:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"6uEzXT1L1a7EIjGqPALAQgc9J/ltVCH+5VWSSPcILmIbcvZSnpH8IsU7NQnEpM2ryVKA3gvPMQcMIw2sgvZILA==-gzip\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"b0b00ddc-b960-4e37-b4b3-3d5446e9ff5e-0008a914","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"appointments\" : [\n{\"appointmentId\":\"SS0151-2004\",\"appointmentStatus\":\"CO\",\"primaryFlag\":\"N\",\"category\":\"ST_P\",\"subCategory\":\"0006\",\"startDate\":\"20170901\",\"endDate\":\"\",\"FTE\":\"1\",\"contractId\":\"SS0151-2004\",\"jobTitle\":\"J00151\",\"jobCategory\":\"PT\",\"project\":\"\",\"postNumber\":\"SS0151\",\"reasonCode\":\"IHRS\",\"action\":\"\",\"hierarchy\" : {\"structureCode\":\"5\",\"company\":\"1\",\"managementUnit\":\"1024\",\"department\":\"9054\",\"costCentre\":\"OU73523\",\"division\":\"\",\"location\":\"4661\",\"workGroup\":\"H00055\",\"user1\":\"\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"9439\"}}\n,\n{\"appointmentId\":\"502630-2\",\"appointmentStatus\":\"AP\",\"primaryFlag\":\"N\",\"category\":\"ST_P\",\"subCategory\":\"0006\",\"startDate\":\"20170717\",\"endDate\":\"\",\"FTE\":\"1\",\"contractId\":\"502630-2\",\"jobTitle\":\"J01018\",\"jobCategory\":\"PT\",\"project\":\"\",\"postNumber\":\"502630\",\"reasonCode\":\"ST_JT\",\"action\":\"\",\"hierarchy\" : {\"structureCode\":\"5050\",\"company\":\"5050\",\"managementUnit\":\"50543\",\"department\":\"SC10\",\"costCentre\":\"BM40031\",\"division\":\"5401\",\"location\":\"3065\",\"workGroup\":\"H00029\",\"user1\":\"SD01\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"\"}}\n,\n{\"appointmentId\":\"599014-25\",\"appointmentStatus\":\"CO\",\"primaryFlag\":\"Y\",\"category\":\"ST_P\",\"subCategory\":\"0006\",\"startDate\":\"20170102\",\"endDate\":\"\",\"FTE\":\"1\",\"contractId\":\"599014-25\",\"jobTitle\":\"NC13\",\"jobCategory\":\"PT\",\"project\":\"\",\"postNumber\":\"599014\",\"reasonCode\":\"\",\"action\":\"\",\"hierarchy\" : {\"structureCode\":\"5990\",\"company\":\"5990\",\"managementUnit\":\"59941\",\"department\":\"NC01\",\"costCentre\":\"NC01\",\"division\":\"5991\",\"location\":\"5991\",\"workGroup\":\"NC02\",\"user1\":\"NC26\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"\"}}\n,\n{\"appointmentId\":\"SS0093-2093\",\"appointmentStatus\":\"EN\",\"primaryFlag\":\"N\",\"category\":\"ST_P\",\"subCategory\":\"0006\",\"startDate\":\"20170101\",\"endDate\":\"20170714\",\"FTE\":\"1\",\"contractId\":\"SS0093-2093\",\"jobTitle\":\"J00093\",\"jobCategory\":\"PT\",\"project\":\"5\",\"postNumber\":\"SS0093\",\"reasonCode\":\"SR\",\"action\":\"AC\",\"hierarchy\" : {\"structureCode\":\"5\",\"company\":\"1\",\"managementUnit\":\"1023\",\"department\":\"9043\",\"costCentre\":\"MS71120\",\"division\":\"\",\"location\":\"3079\",\"workGroup\":\"H00044\",\"user1\":\"\",\"user2\":\"\",\"user3\":\"\",\"user4\":\"\",\"user5\":\"9408\"}}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 4,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/appointment/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"fab040f4-305f-4991-9a04-d58257ad695e"}],"id":"5e000f16-79ba-423d-a7c6-b7d4709ec173","description":"<p>This service provides the ability to obtain an employees list of appointments, an employee can have more than one appointment. All appointments are returned, however each individual movement is <strong>not</strong> returned. The most recent detail associated with the appointment is returned. </p>\n<p>An appointment has various different descriptions including Contract, Post, Job, Position etc. Individuals may have more than one appointment at any given moment, though typically an individual will hold one appointment at any one time.</p>\n<p><strong>Example</strong></p>\n<p>On 1st Jan 2018, employee Marco is a software engineer and his appoointment has a cost centre 100.</p>\n<p>Appointment - 001</p>\n<p>Title - Software Engineer</p>\n<p>Cost Centre - 100</p>\n<p>All requests for Marcos appointment will return one appointmnet for Marco with a cost of <strong>100</strong>.</p>\n<p>On 10th July 2018, management decide to move all engineering to a new cost centre 200, this is called a movement i.e. some change of attribute associated with Marco's appointment. In this case the change relates to a cost centre.</p>\n<p>Appointment - 001</p>\n<p>Title - Software Engineer</p>\n<p>Cost Centre - 200</p>\n<p>All requests (from 10th July 2018) for Marcos appointment will return one appointment for Marco with a cost of <strong>200</strong>.</p>\n","event":[{"listen":"prerequest","script":{"id":"44d8342d-db31-4362-a99d-c180f55736e5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d574af8c-5321-42f0-92b6-190c500691b4","type":"text/javascript","exec":[""]}}],"_postman_id":"5e000f16-79ba-423d-a7c6-b7d4709ec173"},{"name":"pension","item":[{"name":"/person/pension/:personnelNo","id":"6612e17d-fab2-4328-8325-c37ea5fb22e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/pension/5990404","description":"<p>This is a very simple web service returning basic information for an individuals pension. All entries related to an employee pension will be returned including active and ended.</p>\n<p><strong>Parameters</strong></p>\n<ul>\n<li>personnelNo</li>\n</ul>\n<p>Manadatory</p>\n<p>Type: AlphaNumeric </p>\n<p>Max Length : 12</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of all pension schemes associated with the individual is returned, the most recently joined pension scheme is returned first.</p>\n<ul>\n<li>schemeCode</li>\n</ul>\n<p>A unique code associated with the pension scheme.</p>\n<ul>\n<li>appointmentID</li>\n</ul>\n<p>this attribute is populated if the individual's pension scheme is associated with a particular appointment. </p>\n<ul>\n<li>dateEnd</li>\n</ul>\n<p>indicates when the pension scheme ended for the individual, returned in format YYYYMMDD.</p>\n<ul>\n<li>dateJoined</li>\n</ul>\n<p>indicates when the employee joined the pension scheme, returned in format YYYYMMDD</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","pension","5990404"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"00d4d30e-bfc6-49fa-9cd9-c386cbe3d13a","name":"Mandatory Data Missing","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/pension/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 28 Jun 2018 16:05:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"IIhsxH2Ji400+QeroRmFt6gc2g7b1QHixhZywWjc6NIWGfPAw4CjTnzhC2v+lA38covxOStmFbtsMyf36pPvsw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-00073eeb","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"This field is mandatory.\",\n                    \"code\": \"9001\",\n                    \"jsonKey\": \"personnelNo\",\n                    \"isWarning\": false\n}\n]}\n"},{"id":"2aa845bb-5b7d-4cf6-b7c1-4fff5ef8ffc3","name":"Pension Information","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/pension/5990404"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 28 Jun 2018 14:23:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"W5TPVaB+Aiz7z+FMBASz6aWxLjN19XWifM8GIKX9g1eWI9T7Qvo5y/XuEu4PwXTwb3XEpiy20o/FgtMMdrJRdQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"36358185-2628-4866-b940-6211236b00ea-0006b88a","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"schemeCode\":16,\"dateJoined\":\"20170601\",\"dateEnd\":\"\",\"appointmentID\":\"DP0007-2077\"}\n,\n{\"schemeCode\":15,\"dateJoined\":\"20161022\",\"dateEnd\":\"20170901\",\"appointmentID\":\"SD88712-1\"}\n,\n{\"schemeCode\":16,\"dateJoined\":\"20151019\",\"dateEnd\":\"\",\"appointmentID\":\"FD4005-1\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 3,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/pension/5990404\"\n      }\n    ]\n}\n"}],"_postman_id":"6612e17d-fab2-4328-8325-c37ea5fb22e6"}],"id":"16f4b005-e986-490b-bf8f-2eac4c3e7955","description":"<p>This web service returns data related to an individual's pension.</p>\n","event":[{"listen":"prerequest","script":{"id":"e366cc15-5db1-4194-8d6e-f28d61eb8e65","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"48dd53de-2489-4e5f-8afd-a6e8a77e9052","type":"text/javascript","exec":[""]}}],"_postman_id":"16f4b005-e986-490b-bf8f-2eac4c3e7955"},{"name":"reportsTo","item":[{"name":"person/reportsto/:personnelNumber/:appointmentid?","id":"764d4ada-4d0a-4048-859e-cac31c917ff4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/5990404/","description":"<p><strong>Parameters</strong></p>\n<ul>\n<li>personnelNumber</li>\n</ul>\n<p>This attribute is the personnelNumber of the individual to find their reportsTo / manager.</p>\n<p>Manadatory</p>\n<p>Type : AlphaNumeric </p>\n<p>Max Length : 12</p>\n<ul>\n<li>appointmentId</li>\n</ul>\n<p>This attribute can be any of the individuals appointmentId's. An individual is required to have at least one appointmentID and is often referred to as substantive / primary appointmentId.</p>\n<p>Optional</p>\n<p>Type : AlphaNumeric </p>\n<p>(this field is typically XXXXX-XX, even though it is flagged as alpha Numberic, the '-' (dash) is excluded from a validation perspective i.e. when validation / sanitisation is performed the dash is excluded)</p>\n<p>Max Length : 16</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<ul>\n<li>reportsToPersonnelNumber</li>\n</ul>\n<p>This attribute represents the individual's 'Report To Personnel Number', typically their manager / line manager / Supervisor etc. You can use this attribute as the personnelNumber for any other web service requesting personnelNumber. As such it is possible to obtain further information for the 'ReportsTo'. </p>\n<ul>\n<li>reportsToName</li>\n</ul>\n<p>This attribute represents the individual's 'Report To Name' i.e. typically the name of their manager / line manager / Supervisor etc.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","person","reportsto","5990404",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"504c90c7-4ce4-4eb8-8380-99ac4bc073eb","name":"Invalid PersonnelNumber Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/1234567890123/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 10:37:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"U1TQYcXzLmuMBybM9sxQnH+pnJ45yfK9QyLZfZerGvSE8XpFYujUbMeaYutfoYGti5eB8XXY1L1Zsc/zuvTYJQ==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-00140369","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"The maximum length of this field is 12\",\n                    \"code\": \"9008\",\n                    \"jsonKey\": \"personnelNo\",\n                    \"isWarning\": false\n}\n]}\n"},{"id":"76f2aecf-2b9b-40e4-947d-3d05c0ff9a03","name":"Invalid PersonnelNumber Type","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/12345678[]/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 10:36:25 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"l61gq8U/3Ddnb8zX5veO7cQVtiR39qcu0L0AUV3aYxGLsn2WfS2frH7+m+AsDD+dAiRYTAdNcYd29zRxkhBYKA==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-00140227","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Alphanumeric characters only.\",\n                    \"code\": \"9002\",\n                    \"jsonKey\": \"personnelNo\",\n                    \"isWarning\": false\n}\n]}\n"},{"id":"96adf328-c6cd-4dd1-a642-94321cee1131","name":"PersonnelNumber and AppointmentID","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/5990404/599014-25"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 10:21:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"31sy6J0QsiwFzAdrVi7qAyzs+hvz6E2rE/5kyizpDEhT65JmvEMorDrEovo3NLM/eYUCQmpmBAz06mwdCt2Yew==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-0013edca","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"reportsToPersonnelNumber\":\"5990181\",\"reportsToName\":\"Sasha Digweed\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/reportsto/5990404/599014-25\"\n      }\n    ]\n}\n"},{"id":"ed28f7bf-e088-43c2-8c31-738361ec6e5d","name":"Invalid AppointmentID Type","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/5990404/123!"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 10:40:29 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"RmAmWESpjPx1HQcC4yM3LakCm1+pazrdxEpor92H2/Bbgfn5+PkfVrR1SNs1fnfVhP7f+MscIk1F07yw1loGjw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-0014079d","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Alphanumeric characters only.\",\n                    \"code\": \"9002\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"eeaf2aae-0f8d-47a2-91fb-287d0080f7ae","name":"PersonnelNumber Only","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/5990404/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 09:43:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"pZVLqJiJtJRnx3Q2SNnEn7mzHsEJE7h3AYFTFFddSSAABwOp+IfG7nt/RNZwkio5FpXtWJPuYQ8Vk8/lKfjWkw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-0013bc9c","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"reportsToPersonnelNumber\":\"5990181\",\"reportsToName\":\"Sasha Digweed\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/person/reportsto/5990404/\"\n      }\n    ]\n}\n"},{"id":"f06d3c2a-7193-4284-ae5a-199fc44ad593","name":"Invalid AppointmentID Length","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/person/reportsto/5990404/12345678901234567"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy","value":"default-src 'none'; connect-src '*'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 27 Jul 2018 10:39:34 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"2hERA1Oq6h48UWWRIfHmdaguVn33swa/4feFw1P/coF2t3J4ZczHKP+Kd64JweIz++0TdVUF4Bh+ni899eavNw==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"7207ce2e-8434-4e7f-aeb0-a3761f6b1b32-00140659","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 1,\n        \"errors\": 1,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"The maximum length of this field is 16\",\n                    \"code\": \"9008\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"}],"_postman_id":"764d4ada-4d0a-4048-859e-cac31c917ff4"}],"id":"9c54acb7-0614-42d0-b4a0-22084575537a","description":"<p>This web service returns an individual's Reporting to manager / supervisor etc. It is a very simple web service, simply provide the personnel number and the individual's 'ReportTo' is returned. By only providing the personnelNumber, the individuals substantive (primary) appointment is used. </p>\n<p>Optionally provide an appointment ID, this will then indicate to the service to return an individuals 'ReportTo' for the person and the specific appointment provided.</p>\n<p>With respect to the 'ReportsTo' effective date, in all cases this web service uses the current date i.e. the date the web service is called.</p>\n","_postman_id":"9c54acb7-0614-42d0-b4a0-22084575537a"}],"id":"4851f821-6d30-4dd1-af0e-2730695c2047","description":"<p>This person module is all about personnel associated with an organisation, typically employee's, though sometimes contractors. </p>\n<p>All personnel entities have a <code>personnelNo</code>. Each of these services will accept a <code>personnelNo</code> as an atttrbute. To obtain sets of <code>personnelNo</code> use the <code>filter</code> module. The person module is typically used to determine following detail regarind an organisations personnel:</p>\n<ul>\n<li>basic attributes (name, joined date etc.)</li>\n<li>address detail</li>\n<li>probation information</li>\n<li>work permit details</li>\n<li>bank Account information</li>\n<li>salary information</li>\n</ul>\n<p>Separate services are defined for each of above, rather than one large service.</p>\n<p>NB : as this module only accepts the primary identifer <code>personnelNo</code> the <code>pagesize</code> option has no affect.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<p>personnelNo</p>\n<p>Mandatory: Yes</p>\n<p>Expected Type: AlphaNumeric</p>\n<p>Length Max : 12</p>\n","event":[{"listen":"prerequest","script":{"id":"a113da35-5890-4852-82f8-08b6dbb258d7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d108a441-2386-4cd0-99eb-66f205fb96c6","type":"text/javascript","exec":[""]}}],"_postman_id":"4851f821-6d30-4dd1-af0e-2730695c2047"},{"name":"Organisation","item":[{"name":"structure","item":[{"name":"config","item":[{"name":"/organisation/structure/config","id":"d1008e52-a85c-49ef-aa09-d310747c3371","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/organisation/structure/config","description":"<p><strong>Parameters</strong></p>\n<p>no parameters are required to call this service.</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of organisational structures are returned.</p>\n<ul>\n<li>structureCode</li>\n</ul>\n<p>A unique identifier associated with this specfic organisations hierarchy.</p>\n<ul>\n<li>hierarchyName</li>\n</ul>\n<p>A description for this structure / hierarchy. The description will be defined by your HR Administration colleagues.</p>\n<ul>\n<li>level1Type .. level12Type</li>\n</ul>\n<p>This is a list from 1 through 12. These will list the types for each of the levels of hierarchy, for example Level One might by Company, Level 2 might be Management unit etc. These levels will be based on Reference data and can be mapped back to the reference module. In general it it is possible to use this type and reference back to the reference module.</p>\n<ul>\n<li>hierarchyInd1 .. hierarchyInd12</li>\n</ul>\n<p>This is a list from 1 through 12. These attributes indicate if the corresponding level is part of a hierarchy rather than just part of the structure. Reference back to the Organisation Module description for an explaination of the Hierarchy v's Structure concept. The indicator is simply Y or N.</p>\n<ul>\n<li>label1 .. label12</li>\n</ul>\n<p>These are the descriptions associated with the level1 .. level12 type. </p>\n<ul>\n<li>displayMode1 .. displayMode12</li>\n</ul>\n<p>It is possible to configure the display description for each element. This mode can return one of the following CD (code description), DC (description code) and D (description). </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>For example - \nif the displayMode is CD (code description) then the description would be\n\n1001 : Engineering \n\nthe code is 1001 while the description is Engineering\n</code></pre><ul>\n<li>dateApplied</li>\n</ul>\n<p>indicates the date the structure was made active.</p>\n<ul>\n<li>dateInput</li>\n</ul>\n<p>this is the date the structure was first created.</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","organisation","structure","config"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"48249c34-ba9e-41f5-aaf6-d17d5adbd87a","name":"Success 200","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/organisation/structure/config"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 18 Jun 2018 14:17:29 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"QdYOzMA/b7fLqDLuLuinGXapZCFy2sgKwURL3ZcmhlywvfNbIke+t0+o8zLlq3NRlMvneOeex5JqR1ExtMDm2g==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-0008576a","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"structure\" : [\n{\"structureCode\":\"7000\",\"hierarchyName\":\"Company 7000\",\"dateInput\":\"20170209\",\"dateApplied\":\"20170209\",\"level1Type\":\"ORGZ\",\"level2Type\":\"MGTU\",\"level3Type\":\"DEPT\",\"level4Type\":\"USER1\",\"level5Type\":\"DIV\",\"level6Type\":\"COST\",\"level7Type\":\"LOC\",\"level8Type\":\"WRKGRP\",\"level9Type\":\"\",\"level10Type\":\"\",\"level11Type\":\"\",\"level12Type\":\"\",\"label1\":\"Company\",\"label2\":\"Management Unit\",\"label3\":\"Department\",\"label4\":\"Team\",\"label5\":\"Division\",\"label6\":\"Cost Centre\",\"label7\":\"Location\",\"label8\":\"Work Group\",\"label9\":\"\",\"label10\":\"\",\"label11\":\"\",\"label12\":\"\",\"hierarchy1Ind\":\"Y\",\"hierarchy2Ind\":\"Y\",\"hierarchy3Ind\":\"Y\",\"hierarchy4Ind\":\"N\",\"hierarchy5Ind\":\"N\",\"hierarchy6Ind\":\"N\",\"hierarchy7Ind\":\"N\",\"hierarchy8Ind\":\"N\",\"hierarchy9Ind\":\"N\",\"hierarchy10Ind\":\"N\",\"hierarchy11Ind\":\"N\",\"hierarchy12Ind\":\"N\",\"displayMode1\":\"CD\",\"displayMode2\":\"CD\",\"displayMode3\":\"CD\",\"displayMode4\":\"CD\",\"displayMode5\":\"CD\",\"displayMode6\":\"CD\",\"displayMode7\":\"CD\",\"displayMode8\":\"CD\",\"displayMode9\":\"CD\",\"displayMode10\":\"CD\",\"displayMode11\":\"CD\",\"displayMode12\":\"CD\"}\n,\n{\"structureCode\":\"7001\",\"hierarchyName\":\"Company 7001\",\"dateInput\":\"20170209\",\"dateApplied\":\"20170209\",\"level1Type\":\"ORGZ\",\"level2Type\":\"MGTU\",\"level3Type\":\"DEPT\",\"level4Type\":\"USER1\",\"level5Type\":\"DIV\",\"level6Type\":\"COST\",\"level7Type\":\"LOC\",\"level8Type\":\"WRKGRP\",\"level9Type\":\"\",\"level10Type\":\"\",\"level11Type\":\"\",\"level12Type\":\"\",\"label1\":\"Company\",\"label2\":\"Management Unit\",\"label3\":\"Department\",\"label4\":\"Team\",\"label5\":\"Division\",\"label6\":\"Cost Centre\",\"label7\":\"Location\",\"label8\":\"Work Group\",\"label9\":\"\",\"label10\":\"\",\"label11\":\"\",\"label12\":\"\",\"hierarchy1Ind\":\"Y\",\"hierarchy2Ind\":\"Y\",\"hierarchy3Ind\":\"Y\",\"hierarchy4Ind\":\"N\",\"hierarchy5Ind\":\"N\",\"hierarchy6Ind\":\"N\",\"hierarchy7Ind\":\"N\",\"hierarchy8Ind\":\"N\",\"hierarchy9Ind\":\"N\",\"hierarchy10Ind\":\"N\",\"hierarchy11Ind\":\"N\",\"hierarchy12Ind\":\"N\",\"displayMode1\":\"CD\",\"displayMode2\":\"CD\",\"displayMode3\":\"CD\",\"displayMode4\":\"CD\",\"displayMode5\":\"CD\",\"displayMode6\":\"CD\",\"displayMode7\":\"CD\",\"displayMode8\":\"CD\",\"displayMode9\":\"CD\",\"displayMode10\":\"CD\",\"displayMode11\":\"CD\",\"displayMode12\":\"CD\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/organisation/settings\"\n      }\n    ]\n}\n"}],"_postman_id":"d1008e52-a85c-49ef-aa09-d310747c3371"}],"id":"de2511a0-0b7f-49b5-ada5-83a843b1c05f","description":"<p>This web service returns the \"metadata\" / \"settings\" for a structure, describing how the structure is defined. This service does <em>not</em> return the actual data (see /organisation/data). </p>\n","event":[{"listen":"prerequest","script":{"id":"10219f6a-6b3d-4e00-a96b-bccc79671081","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"54e349b6-f476-47a6-92e2-9483e4bc4c05","type":"text/javascript","exec":[""]}}],"_postman_id":"de2511a0-0b7f-49b5-ada5-83a843b1c05f"},{"name":"nodes","item":[{"name":"/organisation/structure/nodes/:structureCode?","id":"de6e95d5-9841-4d9b-b05b-7fadda7dcccb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/organisation/structure/nodes/7000","description":"<p>This webservice is subject to pagination,and, therefore by default only 100 rows are returned, it is possible to set the pagesize up to a maximum of 5,000 if the use case is to reduce the number of requests and attempt to obtain all rows in one request.</p>\n<p><strong>Parameters</strong></p>\n<ul>\n<li>structureCode</li>\n</ul>\n<p>A structure code is required to call this web service, use the /organisation/settings web service to get a list. Typically organisations will only have a few of these structure codes configured and usually this takes place during initial project implementation. </p>\n<p>Expected Type: Alpha_Numeric</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<ul>\n<li>ID</li>\n</ul>\n<p>A unique identifier associated with this specfic item, each item will have a unique ID.</p>\n<ul>\n<li>parentID</li>\n</ul>\n<p>The parentID associated with the unique ID, each item will have a parentID. For the 'Root' the parent ID will be set to the structure code. </p>\n<ul>\n<li>nodeDepth</li>\n</ul>\n<p>Each item has a depth associated with it, i.e. this is the level an item exists within the hierarchy. Starts at 1. For example all items with a nodeDepth of 1 should map directly to the number of structures defined, typically this is only a few, and nodeDepth's 2 and 3 will also only have a few, while the many nodeDepths from 4 will most likely exist.</p>\n<ul>\n<li>path</li>\n</ul>\n<p>This attribute provides an easy to see path i.e. the hierarchy for the item, this defines each of the parents all the way up to root. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>For example: \nA path with 10:1:1000:1016\nindicates the current item has a nodeDepth 4 with the following hierarchy struture:\n    - 10  \n        - 1 \n            - 1000  \n                - 1016\nthe root would be 10 and the current item being 1016\n</code></pre><ul>\n<li>description</li>\n</ul>\n<p>This attributes describes the current item (not the entire path). The description may include both code and description, this is dependent on the displayMode as defined in the  /organisation/settings. In cases where the code is to be included, the code and description will be ':'. There is no clue in this description as to the path or nodeDepth (unless of course HR administrations have defined in the description) </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>For example:\n\n1001 : Engineering \n\nthe code is 1001 while the description is Engineering\n</code></pre>","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","organisation","structure","nodes","7000"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"608d01ab-0996-4ab2-bb71-3af20478b293","name":"BadRequest 400","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/organisation/structure/nodes/7000@1234567"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 20 Jun 2018 12:29:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"vNMSXQGDZSxGpQFzhmh0e2NNjOYnXzjbL3rOmFoXvPMgJryNiBCAfwXrD6niNRSAhLOODtxjpJXCUACYYlooWg==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-000e3f83","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{\n        \"total\": 2,\n        \"errors\": 2,\n        \"warnings\": 0,\n        \"log\": [\n{\n                    \"message\": \"Alphanumeric characters only.\",\n                    \"code\": \"9002\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n,\n{\n                    \"message\": \"The maximum length of this field is 6\",\n                    \"code\": \"9011\",\n                    \"jsonKey\": false,\n                    \"isWarning\": false\n}\n]}\n"},{"id":"df72040d-5889-472c-8f8d-4a7dae1e8524","name":"Success 200","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/organisation/structure/nodes/7000"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 18 Jun 2018 14:50:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"\"YP16PeuRAWoR3WGCp0lvXsgBSafRD2E+Ya2V9CsHzeJNDHICPNpWzHSYbMqX1/7p/E0ZEzjLzhWv0KcRhXSp1w==\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-ORACLE-DMS-ECID","value":"30038f37-18e0-4c74-a73d-1ed97dac4bc1-000881f0","name":"X-ORACLE-DMS-ECID","description":"Custom header"},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"\n{ \"structure\" : [\n{\"id\":\"7000020990043714\",\"parentID\":\"7000\",\"nodeDepth\":\"1\",\"path\":\"7000\",\"description\":\"Unit Test 7000\"}\n,\n{\"id\":\"7000020990043716\",\"parentID\":\"7000020990043714\",\"nodeDepth\":\"2\",\"path\":\"7000:7000\",\"description\":\"7000 : Unit Test Company 7000\"}\n,\n{\"id\":\"7000020990043717\",\"parentID\":\"7000020990043716\",\"nodeDepth\":\"3\",\"path\":\"7000:7000:7041\",\"description\":\"7041 : Product and Operations\"}\n,\n{\"id\":\"7000020990043718\",\"parentID\":\"7000020990043716\",\"nodeDepth\":\"3\",\"path\":\"7000:7000:7042\",\"description\":\"7042 : Sales and Marketing\"}\n,\n{\"id\":\"7000020990043719\",\"parentID\":\"7000020990043716\",\"nodeDepth\":\"3\",\"path\":\"7000:7000:7043\",\"description\":\"7043 : Finance\"}\n,\n{\"id\":\"7000020990043720\",\"parentID\":\"7000020990043716\",\"nodeDepth\":\"3\",\"path\":\"7000:7000:7044\",\"description\":\"7044 : Human Resources\"}\n,\n{\"id\":\"7000020990043743\",\"parentID\":\"7000020990043716\",\"nodeDepth\":\"3\",\"path\":\"7000:7000:7045\",\"description\":\"7045 : CoreHR\"}\n,\n{\"id\":\"7000020990043721\",\"parentID\":\"7000020990043717\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7041:7001\",\"description\":\"7001 : Development \"}\n,\n{\"id\":\"7000020990043722\",\"parentID\":\"7000020990043717\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7041:7002\",\"description\":\"7002 : Product \"}\n,\n{\"id\":\"7000020990043723\",\"parentID\":\"7000020990043717\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7041:7003\",\"description\":\"7003 : Operations \"}\n,\n{\"id\":\"7000020990043724\",\"parentID\":\"7000020990043717\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7041:7004\",\"description\":\"7004 : Product and Operations \"}\n,\n{\"id\":\"7000020990043730\",\"parentID\":\"7000020990043718\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7042:7006\",\"description\":\"7006 : Marketing \"}\n,\n{\"id\":\"7000020990043731\",\"parentID\":\"7000020990043718\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7042:7007\",\"description\":\"7007 : Human Resource \"}\n,\n{\"id\":\"7000020990043732\",\"parentID\":\"7000020990043718\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7042:7008\",\"description\":\"7008 : Finance \"}\n,\n{\"id\":\"7000020990043738\",\"parentID\":\"7000020990043720\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7044:7009\",\"description\":\"7009 : Payroll \"}\n,\n{\"id\":\"7000020990043736\",\"parentID\":\"7000020990043719\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7043:7010\",\"description\":\"7010 : CoreHR \"}\n,\n{\"id\":\"7000020990043737\",\"parentID\":\"7000020990043719\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7043:7011\",\"description\":\"7011 : \"}\n,\n{\"id\":\"7000020990043745\",\"parentID\":\"7000020990043743\",\"nodeDepth\":\"4\",\"path\":\"7000:7000:7045:70O5\",\"description\":\"70O5 : \"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 18,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/devws/corehr/v1/organisation/data/7000\"\n      }\n    ]\n}\n"}],"_postman_id":"de6e95d5-9841-4d9b-b05b-7fadda7dcccb"}],"id":"e7af35ed-deab-4425-8eae-18d0d64e9658","description":"<p>This web service returns all the node data associated with a specific structure code. The /organisation/structure/config defines the configuration and associated hierarchy / structure of levels, while the /organisation/structure/nodes web service applies the configurtion settings and returns the node data associated with same, including ID, parentID and nodeDepthLevel etc.</p>\n","event":[{"listen":"prerequest","script":{"id":"022226e0-74e9-412d-a225-54247ed4787d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9df61879-a130-4898-99dd-b52303dd458e","type":"text/javascript","exec":[""]}}],"_postman_id":"e7af35ed-deab-4425-8eae-18d0d64e9658"}],"id":"f695efdf-c5c5-4b81-8b61-0e51f4902eec","description":"<p>This is just a grouping for all structure related elements, currently this is grouping only includes</p>\n<ul>\n<li>the structure configuration information </li>\n<li>the structure node information</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"97ae38d1-fc99-4164-8f2e-45184535a8ba","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f0b493fd-013b-4a74-8e6b-26846220075e","type":"text/javascript","exec":[""]}}],"_postman_id":"f695efdf-c5c5-4b81-8b61-0e51f4902eec"}],"id":"b611622e-e845-44ea-a006-44fbbebaadd5","description":"<p>An organisation will set up an organisational structure within CoreHR. This service will return an organisational structure.</p>\n<p>For Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>- Company  \n    - Management Unit  \n        - Department  \n            - Cost Centre\n</code></pre><p>As part of the organisational setup, an important concept exists Structure v's Hierarchy. A hierarchy is considered a subset of the previous level. For example from the above example, lets assume all are part of the hierarchy, this would mean:</p>\n<p>For a company, the available management units are mapped to a company, selecting a company means a specfic list of management units a valid to be selected, and selecting a management unit drives the departments that can be selected, once a department is selected only specific cost centres can then be selected. In other words the entire strucutre has a hierarchy link. CoreHR can support up to 12 levels of structure / hierarchy, the number of levels used is set by your HR administration colleagues.</p>\n<p>This hierearchy is completely configurable. The structure of the organisation is best discussed with the appropriate HR individuals within your organisation who have configured CoreHR.</p>\n","event":[{"listen":"prerequest","script":{"id":"bd2b8f6b-83c1-4df1-814a-77ee9c95435a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"71535318-4f3a-47f4-ad3b-4d1e4c9aaf61","type":"text/javascript","exec":[""]}}],"_postman_id":"b611622e-e845-44ea-a006-44fbbebaadd5"},{"name":"HESA","item":[{"name":"staffid","item":[{"name":"/hesa/staffid/:personnelNo","id":"381cb49b-d36b-4299-ad64-f3350664eace","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/hesa/staffid/9913681","description":"<p>The specific end point will return an employee's HESA assigned staff ID. This staff ID is derived based on an algorithm that includes personnel number, year joined, institute ID an a check digit. </p>\n<p><strong>Parameters</strong></p>\n<p>requires personnelNumber, use the /filter/* endpoints to obtain personnelNumbers</p>\n<p><strong>JSON Response Body Explained</strong></p>\n<p>An array of appointments are returned.</p>\n<ul>\n<li><p>staffid </p>\n<p>A unique reference identifier for the appointment, this is a system generated identifier.</p>\n</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","v1","hesa","staffid","9913681"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"32738633-afc0-4f76-ab37-cc95d4501224","name":"Not Found","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/hesa/staffid/123"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Nov 2018 15:40:26 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-0017192f"},{"key":"ETag","value":"\"1skHyZ4bik1l92MgrpAI8MkU5t4g4SDlPW/QIyZWLNz6NVbLyV/yq+aQTav5z1ptovIQZJWUW+M0SgH8i4nnYw==\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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":"{}"},{"id":"f731f6aa-dbbe-47de-859d-4327bf558612","name":"success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{tenant}}/{{schema}}/v1/hesa/staffid/9913681"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Nov 2018 15:38:53 GMT"},{"key":"Server","value":"Apache"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains;"},{"key":"X-ORACLE-DMS-ECID","value":"fc0eaafe-cec9-418c-9c67-dd411ddfe4e1-001716ab"},{"key":"ETag","value":"\"J8rHluOYEeiptQdO90ROsKlFtP1Q4L1OYtHOQi++5qZ86LEd1W4v6PZz8pxsQBCCONpc5yB5weOeVT/JuqMcCA==-gzip\""},{"key":"X-ORACLE-DMS-RID","value":"0"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate"},{"key":"Access-Control-Max-Age","value":"600"},{"key":"Access-Control-Allow-Methods-Age","value":"GET, POST, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"X-CSRF, X-REQUESTED-WITH, CONTENT-TYPE, X-COREHR-PROXY-AS, X-COREHR-DEBUG, AUTHORIZATION,X-COREHR-INTEGRITY"},{"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    \"staffId\": \"1410759136810\"\n}"}],"_postman_id":"381cb49b-d36b-4299-ad64-f3350664eace"}],"id":"9c8de1b3-20e8-4fec-a910-730021512dc4","description":"<p>The specific end point will return an employee's HESA assigned staff ID. This staff ID is derived based on an algorithm that includes personnel number, year joined, institute ID an a check digit. </p>\n","event":[{"listen":"prerequest","script":{"id":"b2a3215a-e7d1-4174-9da6-57918dcded5c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"72f36502-0b19-4025-866a-3e83d381f974","type":"text/javascript","exec":[""]}}],"_postman_id":"9c8de1b3-20e8-4fec-a910-730021512dc4"}],"id":"7800ee3b-bad2-4550-a00a-54de2e5d4bb6","description":"<p>This module has only been made available from <strong>CoreHR 26.0.6</strong> and is not available in older versions.</p>\n<p>HESA relates only to the higher education (HE) in the UK. </p>\n","event":[{"listen":"prerequest","script":{"id":"07b5b218-325b-49f1-a802-c8166d5d4c39","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e3eaaa28-2081-4dc0-af83-27b190220bfb","type":"text/javascript","exec":[""]}}],"_postman_id":"7800ee3b-bad2-4550-a00a-54de2e5d4bb6"}],"id":"79446a18-37aa-4e44-a557-da141fd13c70","_postman_id":"79446a18-37aa-4e44-a557-da141fd13c70","description":""},{"name":"V25","item":[{"name":"Clocking","item":[{"name":"/clocking/user/","id":"158b17df-f131-48f4-83ac-9c40af83b063","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer LBmqAWEBeoLdkbwNkJwPUQ.."}],"body":{"mode":"raw","raw":"{\n\"person\" : \"\", \"badge_no\": \"4752066\", \n\"clock_date_time\" : \"2017-02-15 08:56 +00:00\",\n\"record_type\"     : \"\", \n\"function_code\"   : \"COST\", \n\"function_value\"  : \"2\",  \n\"device_id\"       : \"D123456789-1234567\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/clocking/user/","description":"<p>Create a new clocking record in the clocking module for subsequent transfer into CoreTime. On successful completion, users will have submitted a new clocking record which subject subsequent CoreTime validation will be transferred into CoreTime the next time the interface runs.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<p><strong>person</strong></p>\n<p>Is an CoreHR employee id also known as <code>personnel number</code> although it is alphanumeric.</p>\n<p><strong>badge_no</strong></p>\n<p>Is the badge number that the CoreHR employee uses. Badge must be valid and linked to a valid CoreHR employee for the clocking to interface into CoreTime.</p>\n<p><strong>clock_date_time</strong></p>\n<p>The Date and Time that this particular clocking is for. Required to be in YYYY-MM-DD HH24:MI TZH:TZM format. Mandatory.</p>\n<p><strong>record_type</strong></p>\n<p>The Transactional event associated with the clocking. Optional but if specified must be one of:</p>\n<ul>\n<li><code>B0</code>     <em>Undefined.</em></li>\n<li><code>B1</code>     <em>In.</em></li>\n<li><code>B2</code>     <em>Out.</em></li>\n<li><code>B3</code>     <em>Business Absence.</em></li>\n</ul>\n<p><strong>function_code</strong></p>\n<p>Optional function code but if specified must be one of:</p>\n<ul>\n<li><code>CALLIN</code></li>\n<li><code>UNSBRK</code></li>\n<li><code>STD</code></li>\n<li><code>TNAIN</code></li>\n<li><code>CALLOT</code></li>\n<li><code>TNAOUT</code></li>\n<li><code>OVERTM</code></li>\n<li><code>COST</code></li>\n</ul>\n<p><strong>function_value</strong></p>\n<p>Optional function_value relating to the above code.</p>\n<p><strong>device_id</strong></p>\n<p>Optional free text to describe the Device ID where the clocking was recorded e.g. Main Entrance Device.</p>\n<p><strong>Mandatory</strong></p>\n<ul>\n<li>Either person or badge_no - if both are provided then badge_no takes precedence.</li>\n<li>clock_date_time</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","clocking","user",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7b01614e-2781-4339-8022-7910f7698c23","name":"200 - Success","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json","description":"The mime type of this content"},{"key":"Authorization","value":"Bearer LBmqAWEBeoLdkbwNkJwPUQ.."}],"body":{"mode":"raw","raw":"{\n\"person\" : \"\", \"badge_no\": \"4752066\", \n\"clock_date_time\" : \"2017-02-15 08:56 +00:00\",\n\"record_type\"     : \"\", \n\"function_code\"   : \"COST\", \n\"function_value\"  : \"2\",  \n\"device_id\"       : \"D123456789-1234567\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/clocking/user/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 15 May 2017 14:48:42 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"158b17df-f131-48f4-83ac-9c40af83b063"}],"id":"b1bdc9cd-3852-4efb-92de-ae945df4be0c","description":"<p>The clocking module provides ability to insert Core Time clocking records for a CoreHR employee.</p>\n<p><strong>Constraints, Limitations, Mandatory and Validation</strong></p>\n<p>The clocking module is designed to handle a large volume of data and so validation at the point of insertion is limited to all required fields being present and the data in them being of the correct format, length and precision. \nAs such duplicate records, expired badges, invalid personnel etc.. will be received by the clocking module provided all data is in the correct format and length. The validation process is completed by the Core Time Interface. </p>\n<p>Fields are as in the table below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Length</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Person</td>\n<td>Character</td>\n<td>10</td>\n</tr>\n<tr>\n<td>Badge No</td>\n<td>Number</td>\n<td>18</td>\n</tr>\n<tr>\n<td>Clock Date Time</td>\n<td>Date YYYY-MM-DD HH24:MI TZH:TZM</td>\n<td>26</td>\n</tr>\n<tr>\n<td>Record Type</td>\n<td>Character</td>\n<td>2</td>\n</tr>\n<tr>\n<td>Function Code</td>\n<td>Character</td>\n<td>6</td>\n</tr>\n<tr>\n<td>Function Value</td>\n<td>Character</td>\n<td>18</td>\n</tr>\n<tr>\n<td>Device ID</td>\n<td>Character</td>\n<td>100</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: Clock Date Time is mandatory and either Person or Badge No must also be provided.</p>\n<p><strong>Interface to CoreTime and Validation</strong></p>\n<p>The validation process is completed at the point of interface to CoreTime. It is during this process that duplicates are rejected and CoreTime related validation is performed. Specifically:</p>\n<ul>\n<li>Person does not exist as CoreHR employee</li>\n<li>Badge does not exist or is not valid</li>\n<li>Record Type is valid</li>\n<li>Function Code is valid</li>\n<li>Duplicate Clocking - defined as where a clocking already exists in CoreTime for this person at the same date/time.</li>\n</ul>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001  Both badge and person fields are not populated. One must be populated.</li>\n<li>400 / 002  clock_date_time field is not populated.</li>\n<li>400 / 003  clock_date_time field is not in the correct format.</li>\n<li>404 / 004 Non standard database exception inserting this clocking.</li>\n<li>404 / 005 record_type is invalid. Must be either empty, B0, B1, B2 or B3.</li>\n<li>400 / 006  function_code is invalid. Must be either empty, CALLIN, UNSBRK, STD, TNAIN, CALLOT, TNAOUT, OVERTM or COST.</li>\n<li>400 / 999  Basic sanitization error. Where a filed is not the correct data type or length or the data is deemed to be unsafe for recording within the system. Details of the fields failing sanitization are returned in the sanatizeError object in the Response.</li>\n</ul>\n","_postman_id":"b1bdc9cd-3852-4efb-92de-ae945df4be0c"},{"name":"Contact","item":[{"name":"/contact/","id":"88a37d0e-2770-467b-8897-baed597a66f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer p7Zy3YYr3Yck6yOVXUYPaQ.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/","description":"<p>Get a list of registered / whitelisted contacts. Tenant has an ability to define contacts available for creating / updating. A tenant may not allow all contacts to be updated or created, this base URI provides the list of valid contact types. In cases where server returns validation errors, refer to this list.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"18ce5e84-cfb9-40fd-8517-370b9a18e8a8","name":"200 - Response OK","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:00:52 GMT","name":"Date","description":""},{"key":"ETag","value":"\"uwlnRwLu1teq90JMcLw3B68+EOyVApqwZ0O87dUiP4G6rHtTNS14dRJz0YaKyE8k7RmWTnrUodwqt3OwuAMICA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"EMAIL\", \"length\": 80, \"dataType\" : \"EMAIL\"}\n,\n{\"type\":\"MOBILE\", \"length\": 20, \"dataType\" : \"MOB\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/\"\n      }\n    ]\n}\n"}],"_postman_id":"88a37d0e-2770-467b-8897-baed597a66f5"},{"name":"/contact/:type/","id":"bf1f79dc-0fe4-4792-b5e0-bb865ba0f8f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/EMAIL/","description":"<p>Get a list of all users for a particular contact type. Typically used to get a list of all users <code>email</code> addresses. </p>\n<p>This service will only return whitelisted contact types. A tenant may decide to only whitelist a subset of all contacts e.g. EMAIL is whitelisted while MOBILE is not. Only accounts where the contact type is populated are returned. To find accounts with missing contact information use the web service /contact/missing/:type</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","EMAIL",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"75d27db3-703c-4786-9a81-76c7af00c67a","name":"404 - Invalid Contact type","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/MOB/"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 15 Nov 2016 19:51:28 GMT","name":"Date","description":""},{"key":"ETag","value":"\"WIZPZbpKwxRRgssW8lwH34floeFnPJzhb0Pc1fxiiWRv2Gqy41LgVu19up1qzvTBBMK6i635jWpyDaAsi5TVnQ==-gzip\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Contact type does not exist\" }}\n"},{"id":"7cc5919c-e318-4e10-82fd-784ed7ad1350","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/EMAIL/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 15 Nov 2016 19:46:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"6iQZlpyFhjCcA3IiwUAR9L8mLF0w4tdo6M6kmFN3AV+v32sX/fFbqqgk/bMg7pMmUv2y1+9/cnGbLcj57836dw==-gzip\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"coreHRId\":\"003676\", \"value\": \"webservices003676@corehr.com\"}\n,\n{\"coreHRId\":\"003674\", \"value\": \"webservices003674@corehr.com\"}\n,\n{\"coreHRId\":\"003332\", \"value\": \"webservices003332@corehr.com\"}\n,\n{\"coreHRId\":\"003333\", \"value\": \"webservices003333@corehr.com\"}\n,\n{\"coreHRId\":\"INT009\", \"value\": \"webservicesINT009@corehr.com\"}\n,\n{\"coreHRId\":\"INT010\", \"value\": \"webservicesINT010@corehr.com\"}\n,\n{\"coreHRId\":\"600100\", \"value\": \"webservices600100@corehr.com\"}\n,\n{\"coreHRId\":\"600101\", \"value\": \"webservices600101@corehr.com\"}\n,\n{\"coreHRId\":\"600102\", \"value\": \"webservices600102@corehr.com\"}\n,\n{\"coreHRId\":\"7777\", \"value\": \"webservices7777@corehr.com\"}\n,\n{\"coreHRId\":\"C876876\", \"value\": \"webservicesC876876@corehr.com\"}\n,\n{\"coreHRId\":\"003193\", \"value\": \"webservices003193@corehr.com\"}\n,\n{\"coreHRId\":\"003528\", \"value\": \"webservices003528@corehr.com\"}\n,\n{\"coreHRId\":\"gh1234\", \"value\": \"webservicesgh1234@corehr.com\"}\n,\n{\"coreHRId\":\"JG1234\", \"value\": \"webservicesJG1234@corehr.com\"}\n,\n{\"coreHRId\":\"002145\", \"value\": \"webservices002145@corehr.com\"}\n,\n{\"coreHRId\":\"002144\", \"value\": \"webservices002144@corehr.com\"}\n,\n{\"coreHRId\":\"002146\", \"value\": \"webservices002146@corehr.com\"}\n,\n{\"coreHRId\":\"000660\", \"value\": \"webservices000660@corehr.com\"}\n,\n{\"coreHRId\":\"002626\", \"value\": \"webservices002626@corehr.com\"}\n,\n{\"coreHRId\":\"000740\", \"value\": \"webservices000740@corehr.com\"}\n,\n{\"coreHRId\":\"000936\", \"value\": \"webservices000936@corehr.com\"}\n,\n{\"coreHRId\":\"000830\", \"value\": \"webservices000830@corehr.com\"}\n,\n{\"coreHRId\":\"000831\", \"value\": \"webservices000831@corehr.com\"}\n,\n{\"coreHRId\":\"000880\", \"value\": \"webservices000880@corehr.com\"}\n,\n{\"coreHRId\":\"1000491\", \"value\": \"webservices1000491@corehr.com\"}\n,\n{\"coreHRId\":\"000014\", \"value\": \"webservices000014@corehr.com\"}\n,\n{\"coreHRId\":\"000115\", \"value\": \"webservices000115@corehr.com\"}\n,\n{\"coreHRId\":\"000012\", \"value\": \"webservices000012@corehr.com\"}\n,\n{\"coreHRId\":\"000015\", \"value\": \"webservices000015@corehr.com\"}\n,\n{\"coreHRId\":\"000296\", \"value\": \"webservices000296@corehr.com\"}\n,\n{\"coreHRId\":\"000297\", \"value\": \"webservices000297@corehr.com\"}\n,\n{\"coreHRId\":\"000328\", \"value\": \"webservices000328@corehr.com\"}\n,\n{\"coreHRId\":\"000590\", \"value\": \"webservices000590@corehr.com\"}\n,\n{\"coreHRId\":\"000227\", \"value\": \"webservices000227@corehr.com\"}\n,\n{\"coreHRId\":\"001873\", \"value\": \"webservices001873@corehr.com\"}\n,\n{\"coreHRId\":\"000275\", \"value\": \"webservices000275@corehr.com\"}\n,\n{\"coreHRId\":\"CUT-001\", \"value\": \"webservicesCUT-001@corehr.com\"}\n,\n{\"coreHRId\":\"END-001\", \"value\": \"webservicesEND-001@corehr.com\"}\n,\n{\"coreHRId\":\"000286\", \"value\": \"webservices000286@corehr.com\"}\n,\n{\"coreHRId\":\"001987\", \"value\": \"webservices001987@corehr.com\"}\n,\n{\"coreHRId\":\"000180\", \"value\": \"webservices000180@corehr.com\"}\n,\n{\"coreHRId\":\"001993\", \"value\": \"webservices001993@corehr.com\"}\n,\n{\"coreHRId\":\"000598\", \"value\": \"webservices000598@corehr.com\"}\n,\n{\"coreHRId\":\"000601\", \"value\": \"webservices000601@corehr.com\"}\n,\n{\"coreHRId\":\"002037\", \"value\": \"webservices002037@corehr.com\"}\n,\n{\"coreHRId\":\"GH992\", \"value\": \"webservicesGH992@corehr.com\"}\n,\n{\"coreHRId\":\"000119\", \"value\": \"webservices000119@corehr.com\"}\n,\n{\"coreHRId\":\"000124\", \"value\": \"webservices000124@corehr.com\"}\n,\n{\"coreHRId\":\"000587\", \"value\": \"webservices000587@corehr.com\"}\n,\n{\"coreHRId\":\"000588\", \"value\": \"webservices000588@corehr.com\"}\n,\n{\"coreHRId\":\"000592\", \"value\": \"webservices000592@corehr.com\"}\n,\n{\"coreHRId\":\"000594\", \"value\": \"webservices000594@corehr.com\"}\n,\n{\"coreHRId\":\"002315\", \"value\": \"webservices002315@corehr.com\"}\n,\n{\"coreHRId\":\"000904\", \"value\": \"webservices000904@corehr.com\"}\n,\n{\"coreHRId\":\"002261\", \"value\": \"webservices002261@corehr.com\"}\n,\n{\"coreHRId\":\"002262\", \"value\": \"webservices002262@corehr.com\"}\n,\n{\"coreHRId\":\"CUT-012\", \"value\": \"webservicesCUT-012@corehr.com\"}\n,\n{\"coreHRId\":\"002248\", \"value\": \"webservices002248@corehr.com\"}\n,\n{\"coreHRId\":\"002249\", \"value\": \"webservices002249@corehr.com\"}\n,\n{\"coreHRId\":\"002250\", \"value\": \"webservices002250@corehr.com\"}\n,\n{\"coreHRId\":\"002367\", \"value\": \"webservices002367@corehr.com\"}\n,\n{\"coreHRId\":\"002368\", \"value\": \"webservices002368@corehr.com\"}\n,\n{\"coreHRId\":\"002369\", \"value\": \"webservices002369@corehr.com\"}\n,\n{\"coreHRId\":\"000826\", \"value\": \"webservices000826@corehr.com\"}\n,\n{\"coreHRId\":\"000897\", \"value\": \"webservices000897@corehr.com\"}\n,\n{\"coreHRId\":\"001128\", \"value\": \"webservices001128@corehr.com\"}\n,\n{\"coreHRId\":\"002629\", \"value\": \"webservices002629@corehr.com\"}\n,\n{\"coreHRId\":\"002697\", \"value\": \"webservices002697@corehr.com\"}\n,\n{\"coreHRId\":\"000934\", \"value\": \"webservices000934@corehr.com\"}\n,\n{\"coreHRId\":\"002624\", \"value\": \"webservices002624@corehr.com\"}\n,\n{\"coreHRId\":\"000290\", \"value\": \"webservices000290@corehr.com\"}\n,\n{\"coreHRId\":\"000837\", \"value\": \"webservices000837@corehr.com\"}\n,\n{\"coreHRId\":\"002444\", \"value\": \"webservices002444@corehr.com\"}\n,\n{\"coreHRId\":\"002685\", \"value\": \"webservices002685@corehr.com\"}\n,\n{\"coreHRId\":\"002227\", \"value\": \"webservices002227@corehr.com\"}\n,\n{\"coreHRId\":\"002169\", \"value\": \"webservices002169@corehr.com\"}\n,\n{\"coreHRId\":\"000849\", \"value\": \"webservices000849@corehr.com\"}\n,\n{\"coreHRId\":\"000808\", \"value\": \"webservices000808@corehr.com\"}\n,\n{\"coreHRId\":\"002091\", \"value\": \"webservices002091@corehr.com\"}\n,\n{\"coreHRId\":\"1010101010\", \"value\": \"webservices1010101010@corehr.com\"}\n,\n{\"coreHRId\":\"20202020\", \"value\": \"webservices20202020@corehr.com\"}\n,\n{\"coreHRId\":\"GM967\", \"value\": \"webservicesGM967@corehr.com\"}\n,\n{\"coreHRId\":\"GM969\", \"value\": \"webservicesGM969@corehr.com\"}\n,\n{\"coreHRId\":\"DB678\", \"value\": \"webservicesDB678@corehr.com\"}\n,\n{\"coreHRId\":\"002651\", \"value\": \"webservices002651@corehr.com\"}\n,\n{\"coreHRId\":\"gh23\", \"value\": \"webservicesgh23@corehr.com\"}\n,\n{\"coreHRId\":\"6633228\", \"value\": \"webservices6633228@corehr.com\"}\n,\n{\"coreHRId\":\"250\", \"value\": \"webservices250@corehr.com\"}\n,\n{\"coreHRId\":\"260\", \"value\": \"webservices260@corehr.com\"}\n,\n{\"coreHRId\":\"002705\", \"value\": \"webservices002705@corehr.com\"}\n,\n{\"coreHRId\":\"002103\", \"value\": \"webservices002103@corehr.com\"}\n,\n{\"coreHRId\":\"000950\", \"value\": \"webservices000950@corehr.com\"}\n,\n{\"coreHRId\":\"002756\", \"value\": \"webservices002756@corehr.com\"}\n,\n{\"coreHRId\":\"002652\", \"value\": \"webservices002652@corehr.com\"}\n,\n{\"coreHRId\":\"jg1234\", \"value\": \"webservicesjg1234@corehr.com\"}\n,\n{\"coreHRId\":\"DF5609\", \"value\": \"webservicesDF5609@corehr.com\"}\n,\n{\"coreHRId\":\"002289\", \"value\": \"webservices002289@corehr.com\"}\n,\n{\"coreHRId\":\"002727\", \"value\": \"webservices002727@corehr.com\"}\n,\n{\"coreHRId\":\"000179\", \"value\": \"webservices000179@corehr.com\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://localhost/ws/tenant/corehr/v1/contact/EMAIL/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"https://localhost/ws/tenant/corehr/v1/contact/EMAIL/?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"bf1f79dc-0fe4-4792-b5e0-bb865ba0f8f8"},{"name":"/contact/user/:person/","id":"c87b5880-c456-4280-92fd-fd53e7f5b2a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/","description":"<p>This web service returns all contacts for the <code>person</code>. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2bf34198-c6ee-48d3-a3c4-88c5567ec65f","name":"200 - No User","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/101/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:01:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"O9HyTNymWfaETgxd2+q0Z8TsEInPQq/SaTstLGNYuk0ULMG4HwXQCLduJMqhelPi2gIHQzv5MIpmEwSbtWPRpA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 0,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/101/\"\n      }\n    ]\n}\n"},{"id":"a81ebe45-f523-46ff-9c2e-b8cac6d8dbcc","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:07:46 GMT","name":"Date","description":""},{"key":"ETag","value":"\"LhGBatBRxgaYUmBtTmvXvChPohvGeovn7W4uxHWhB4+QRQzr2hMGTwHgTVmNBSC5LBBs5caMKtNgcUPRq//F4g==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"EMAIL\", \"value\": \"darragh.michael.duffy@corehr.com\"}\n,\n{\"type\":\"MOBILE\", \"value\": \"+353 86 879394365\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/100/\"\n      }\n    ]\n}\n"}],"_postman_id":"c87b5880-c456-4280-92fd-fd53e7f5b2a4"},{"name":"/contact/user/:person/:type","id":"7169d124-3795-4600-bc27-995793425797","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service returns a specific contact for an associated <code>person</code> and <code>type</code>. Refer to /contact/ for a complete list of contacts available.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"612dfa5a-e1e4-4ac8-981c-d1f50c3c0ce6","name":"200 - Success - EMAIL","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:09:26 GMT","name":"Date","description":""},{"key":"ETag","value":"\"Pc4vB09OL4Wki+1My6sbuyspVqD9UgcaBW5WwkJt7G+pjphL6HqjfPhY3QJdY9rBBhTQiZpy3yiq/0Ss9VN8Og==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"EMAIL\", \"value\": \"darragh.michael.duffy@corehr.com\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/100/EMAIL\"\n      }\n    ]\n}\n"},{"id":"8b1c8c8d-75b1-4ed1-8ff3-9e80b076d40c","name":"200 - Success - MOBILE","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/MOBILE"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:09:49 GMT","name":"Date","description":""},{"key":"ETag","value":"\"scMWmM8Da5PAtTmblpgR7OkNQV1BzUC3oAQTxAwklCyu4Ho/oxtaOFLKAD3gitBDb+yEJe9jVdbxDOQC/3ADBw==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"MOBILE\", \"value\": \"+353 86 879394365\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/100/MOBILE\"\n      }\n    ]\n}\n"},{"id":"f18d3533-38df-4ddc-b352-4e791da4abc3","name":"200 - No User","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/101/MOBILE"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:10:07 GMT","name":"Date","description":""},{"key":"ETag","value":"\"ay7m5ryBPHhMsOJ1KjoM5eH7l1NGTfBQtHtRz3pe6vAnViut/MxWuBYfXJAq8eIwVG9Mdw++NsyHV8rF1b+n9w==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 0,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/101/MOBILE\"\n      }\n    ]\n}\n"}],"_postman_id":"7169d124-3795-4600-bc27-995793425797"},{"name":"/contact/user/:person/:type","id":"0b2f92d2-422c-480f-8123-19429a25617c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"value\" :\"darragh.duffy@corehr.com\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service provides ability to create a new contact type for a user. The contact type should not already exist for this account. As previously noted a tenant may whitelist contact types. Refer to /contact/ for a complete list of contacts available.</p>\n<p>The value of the contact type must be provided in the request body as JSON e.g.</p>\n<blockquote>\n<p>{\"value\" :\"<a href=\"mailto:darragh.james.duffy@corehr.com\">darragh.james.duffy@corehr.com</a>\"}</p>\n</blockquote>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0ec7b88a-5a22-4457-9847-01551b37d9c3","name":"400 - Bad Request - Error Code 006","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:41:20 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"006\",\"errorMessage\" :\"Validation failed. Existing contact for user, use PATCH to update\" }}\n"},{"id":"533a4286-9354-4693-a328-51abab137e74","name":"201 - Success - Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:40:49 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"59af9740-6f86-4b5c-bd2a-dedc4719397a","name":"400 - Bad Request - Error Code 005","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/PHONE"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:44:28 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"005\",\"errorMessage\" :\"Validation failed. Ensure contact type is allowed and has correct format\" }}\n"},{"id":"94ab7cc2-6b5e-43bf-b381-a17adf1948c6","name":"400 - Bad Request - Error Code 001","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:42:45 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing\" }}\n"},{"id":"d92da96b-7bd5-4430-a1c9-1c242d95b107","name":"404 - Not Found - Error Code 003","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/7788/EMAIL"},"status":"Not Found","code":404,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:43:31 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"003\",\"errorMessage\" :\"Validation failed. User account does not exist\" }}\n"}],"_postman_id":"0b2f92d2-422c-480f-8123-19429a25617c"},{"name":"/contact/user/:person/:type","id":"9abccc42-5b14-42bb-8294-6bb26685f193","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"value\" :\"darragh.james.duffy@corehr.com\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service provides ability to patch / update a contact type for a user. The contact type <strong>must</strong> already exist for this account. As previously noted a tenant may whitelist contact types. Refer to /contact/ for a complete list of contacts available.</p>\n<p>The value of the contact type must be provided in the request body as JSON e.g.</p>\n<blockquote>\n<p>{\"value\" :\"<a href=\"mailto:darragh.james.duffy@corehr.com\">darragh.james.duffy@corehr.com</a>\"}</p>\n</blockquote>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3f9a22c4-03ee-46a4-8f5e-251416394416","name":"201- Success - Created","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:45:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"844dd241-f2d5-451d-bd2c-f349c5778821","name":"404 - Not Found - Error Code 003","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/7788/EMAIL"},"status":"Not Found","code":404,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:47:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"003\",\"errorMessage\" :\"Validation failed. User account does not exist\" }}\n"},{"id":"d95e664e-272c-4f5d-82b8-6e48e0e8424d","name":"400 - Bad Request - Error Code 001","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:46:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing\" }}\n"},{"id":"ea192a8c-7b9b-489d-90a3-2ebca3090d2f","name":"404 - Not Found - Error Code 002","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/Phone"},"status":"Not Found","code":404,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:48:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Contact does not exist\" }}\n"}],"_postman_id":"9abccc42-5b14-42bb-8294-6bb26685f193"},{"name":"/contact/user/:person/:type","id":"fd7ec5f3-5d3f-45fc-920b-10a7971fcc44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service provides ability to delete a contact from a users / employees profile. The contact type should already exist for this account. As previously noted a tenant may whitelist contact types. Refer to /contact/ for a complete list of contacts available. All contact types are case sensitive.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"081c8bed-680b-47b5-8488-547340e5c661","name":"200 - Response OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 11 Nov 2016 14:46:13 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"fd7ec5f3-5d3f-45fc-920b-10a7971fcc44"},{"name":"/contact/missing/:type","id":"96170c57-64b8-48fe-b33a-6a21aedac74a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/missing/EMAIL","description":"<p>This web service provides ability to list user accounts with missing contact types. For example find all users with a missing <code>EMAIL</code> contact.</p>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","missing","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a66eba06-21b2-427f-ada2-0161dbf5fbef","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/missing/EMAIL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:20:51 GMT","name":"Date","description":""},{"key":"ETag","value":"\"CxtmnGZgL6Fnj+S5DOnKKr5OPrcNWUF/Tp/4y80gZt+7x/+jHBqLIZD6vvrFUddPuXIu33rL+abP5e3np94DYA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"corehrid\":\"000003703\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003704\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003706\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003707\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003708\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003709\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003710\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003711\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003712\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003713\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003714\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003715\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003716\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003717\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003718\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003720\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003721\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003722\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003723\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000013\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000017\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000018\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000020\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000022\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000023\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000025\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000027\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000028\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000030\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000031\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000032\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000035\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000036\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000038\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000039\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000041\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000042\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000043\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000044\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000045\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000046\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000047\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000048\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000049\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000050\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000051\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000052\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000053\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000054\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000055\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000056\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000057\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000058\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000059\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000060\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000061\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000063\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000064\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000065\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000066\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000067\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000069\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000070\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000071\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000072\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000073\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000078\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000080\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000081\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000082\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000084\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000085\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000086\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000088\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000090\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000091\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000092\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000093\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000094\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000096\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000097\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000098\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000099\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000100\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"0001000\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000101\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000102\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000103\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000105\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000106\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000107\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000108\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000109\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000110\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000111\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000112\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000113\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000114\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000118\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000120\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/missing/EMAIL\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/missing/EMAIL?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"96170c57-64b8-48fe-b33a-6a21aedac74a"}],"id":"a5cad8f8-3490-4186-afe9-5bc37c52e2de","description":"<p>Contact module provides ability to interact with contact information associated with an account in CoreHR. Different contact types exist and can be defined by a tenant e.g EMAIL, MOBILE etc. Not all tenants have the same list of contacts i.e. each tenant can define a whitelist of contacts exposed to web services.</p>\n<p><strong>Contraints, Limitations &amp; Mandatory</strong></p>\n<p>The contact module is case senstive, no process converts the contact type provided to upper or lower case. You must ensure you have set the case correctly, otherwise no data will be returned. Within CoreHR contact types are typically uppercase.</p>\n<p>Person is mandatory, person represents users unique CoreHR ID, this is often referenced as <code>personnel number</code></p>\n<p><strong>Optionally</strong> </p>\n<p>Provide the type of contact e.g. <code>EMAIL</code> to get users associated email address.</p>\n<p>In cases where <code>type</code> is not specified all contact details are returned associated with employee.</p>\n<p>In Summary contact provides ability to</p>\n<ul>\n<li>Enumerate users contact information</li>\n<li>Obtain a specific contact type </li>\n<li>Update / Patch an existing contact type</li>\n<li>Assign a new contact type to a user</li>\n</ul>\n<p><strong>Error Codes</strong></p>\n<p>Note <code>type</code> is case senstive, no process converts the type provided into upper or lower case. You must ensure you have set the case correctly, otherwise no data will be returned. </p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001  Mandatory fields are missing</li>\n<li>404 / 002  Validation failed. Contact does not exist</li>\n<li>404 / 003  Validation failed. User account does not exist</li>\n<li>400 / 005 Validation failed. Ensure contact type is allowed and has correct format</li>\n<li>400 / 006  Validation failed. Existing contact for user, use PATCH to update</li>\n<li>404 / 007  Contact type does not exist for user, consider using POST to create</li>\n</ul>\n<p><strong>Note</strong> </p>\n<p>Where a contact exists within CoreHR, this does not mean an account in CoreHR has this contact assigned, e.g. not every account would have a mobile / cell number. Keep this in mind if you attempt to PATCH a contact type and server responds with a validation error.</p>\n","_postman_id":"a5cad8f8-3490-4186-afe9-5bc37c52e2de"},{"name":"Image","item":[{"name":"/image/user/","id":"633ba3c4-4bb2-47ef-ac75-bdfcd7e8cf2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"authorization","value":"Bearer MZun_JVHkiiNm9SXgadz4A.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>This Web Service is used to retrieve (GET) the image profile for a CoreHR user on the system. Returns a binary image file.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$  curl -o ./local_copy_of_profile.jpeg -k --request GET --url https://devapi.corehr.com/ws/frame/corehr/v1/image/user/0890126 \\\n --header 'authorization: Bearer MZun_JVHkiiNm9SXgadz4A..'\n</code></pre>\n<p>This command will save the binary image of CoreHR User <code>0890126</code> into the file <code>local_copy_of_profile.jpeg</code>. If alternatively the person did not have an image on the system then the web service would return an http code 404 with and verbose errorCode of 1008. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1da4ed80-2e45-4d35-837b-2b60c0e931cd","name":"Successfull GET","originalRequest":{"method":"GET","header":[{"key":"authorization","value":"Bearer MZun_JVHkiiNm9SXgadz4A.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"OK","code":200,"_postman_previewlanguage":"auto","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Disposition","value":"filename=\"0890126.GIFF\"; filename*=UTF-8''0890126.GIFF","name":"Content-Disposition","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"image/GIFF","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 16:37:26 GMT","name":"Date","description":""},{"key":"ETag","value":"\"j9mJrveZSvs7gkL4ts+ozuq3PRxaNSFSStvjAW2auCnxwS+XXia03jqP+qm1FXXgVzmdyy+4rIR6LGyDsgpwzA==\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002dd3","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"GIF89a\u0000\u0002\u0000\u0002�\n\u0000~}}~}}~}}~}}~}}~}}~}}~}}~}}~}}������������������!�\u001aCreated with GIMP on a Mac\u0000!�\u0004\u0001\n\u0000\u000f\u0000,\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0002@\u0004���I��8�ͻ�`(�di�h��l��p,�tm�x��|����pH,\u001a�Ȥr�l:�ШtJ�Z�جv��z���xL.����z�n����|N���\u0016\u0001\"������  \u0001\b\u0002x���2\u0007��������\u0007���f�����������C\b������\b���'|������\u0001���������}���u���ʷ��h����Ӡ���Z����ݒ���O\u0002�������F��������>������:�����  �Q\u0000����\n\f\\\b\u0003�Ç�\u0018Jt\u0001��E@\u00133� w��Au�\u001aC��H��ȓ\u0014K�܆�%��+c�R���\fw2sn�g�'\u000e�@1�\u001c:\u0004ZP�ֈ*ur��ҧ<�\u0005R\u0001�i��A�ʱ��\u0016RW~e\u0011v\u0016ȭ���\u001bK�@\u0001\u0001\u0002�&)[\u000e�+�$\u0003�\u0015#��J�v���z+��\u0003\b\nťI�-�ć\u0007\u0013��4p�ɘ3w�\u001c\u0005��Ϡwr.\u0015���T{G/:ͺ�*��Q�uM��)Ʊ?t�ͻ��Թ)�\u001eN<U�  œ+\u0007�z��盹B�N=\u0012p���k��\u0007�K�����)�<w���??ξ�����˟O��������Ͽ���\u0000\u0006�(��\u0004\u0016h��\b&���\f6���\u0010F(��\u0014Vh��\u0018f���\u001cv��� �(�\u000f}\u0001�׈\u000fJ\u0006Z\u0000ޡ��n�]�bH*��He3������\b�g<\"\u0003��t\u0000\u0019�6C\u0012�F�G����b4�\u0010�`�(%@�Q9\u0005�WB$��M0��AO��Ԙ$�9\u0005�i�\u0019��lb��\u0014��  P�s:Q�����g\u0014b�IM�Z����|Y�\u0016�*�h\u001b����\u001dpF�G��*b��If\u001aN��\u0011�i\u001c{B�h\b\u0005�\u001a\u0014�\u001b}���@�:��-\b�)7\u0007������\n+\n����\u001d�\"��\u0007��tb\u0013%��櫙�Z:\u001d�\"F+�z�Rx��vv� ��B�`��F�ߡ��;������:Z����ȳKmkﾞxK\u0014�\u0000�\u0002\u0015�\u0001\u0017�ڿ\u0006'̌M�*�0'�2��Ē��0�\u0014G|��\u001cw��� �,��$�l��(����,����0�,��4�l��8����<����@\u0007-��D\u0017m��H'���L7���PG-��\u0005\\�\u000b\u0002�N]��\u0000���\"�j6��r\u0010�\u001a�dc��p^��\u0004�����\u0010k����9p�7\u000fuw�7\r\u0001���Â���\u001f��vx hϽ���S\u0000��rK=����7����d����g~4��|M�,S�^�Ӫ���٭wҸϱ��t��+�9��x\u001e4���\u000e�q�\u000f�ӻ\u001b߈�B�^��@+o.��O�����\r���']�P{':�R�8�_��0���\u001e�\u0007�������;��\u0015�/���k������\b���\u0000\n0\u0005V\u0003��\u000ex��-�n\f$\u0001\u001f\fh\u0001�P�\u0002\u0013��\u0004@�>\r8�0\u0010�@�.X4���\u0005a���V�<��L}�� \b��\u0014\u0017r\u0000��\u001a�\u0007ma�\u0011T���\u000eLx��%P\u001a$\\\u0003\u0010o���\u0011�\u001e=��\u0013�\u0011E7��\"Ml��\u0011-\u0012�<-q%��a\n�rE\u0015z��߻G\u0017E4�4:��\u0011��\u001b���\u0006��4\u001f�cm2���LH�}TV��\u0018����=�,�\u0019\u0007���������!�\u0002�H\u000eg�>��%����lRJ��$�سEQn'�>1%�F�IUj���@�+��Ɛ��RP������k!�����,�i��\u0010So59&���Ln�Q\u001c�l�sꈍRJS�\u0003��5�\u0005K\rz���\f�8�I�r����L�:���v������<�I�z����̧>���~���\u0000\r�@\u0007JЂ\u001a��\bM�B\u0017�І:��\u0010��D�'JъZ��\u0018ͨF7�юz�� \r�HGJҒ���(M�JW�Җ���0ՠ\\b�\u00052\n).4�A��!Ĝ� �\bY�OA`�|�ҥ�D\u000759\n��\b5���I--�Լ������>�ڔ��3���j?�J\u001c�����:(X�#�wr�8^\u001d�[���r�U�h��Q�I�+��m\u0006kg_��ר͕Gq��`\u001bUX���ZwM�aǔ���/�84�3��لmVs�����'Z�}/qn\u0014�\u001d��X�EVh�UXceVȴ52}�,��,9���N�8�d�|�;�֬��{mpE�I=�:-����nU�4WV���\u0015nv7  ZU\u001a\u0017f�\r�vy;�H^ה�u.ӐK:��,���-���:�6\r���nϴ\u000b5�b̽9#����0\u0000�춊-�|_6YuU��z�[x1�]��Wa�EZ������6r��߆��a���M%.ډ��b�]�\\\u0019�-�*��Ù��l20`\u001d�N\u001c\u001fIǪ\u0005�<᫞\u0005����\u00012\u0003Wܛ\u0016\u000b�ɮqr\u0004�쬂\"�7JV'�mcdrR9'R\u0016�y�\\�Ҿ�31�\u0000���\u0007j��)i��\u001f��4ح��1��\u0004L���\u001d�����  ����2�y\u0002[��$�I��\u0011��W��Oi\u0011f�\u0001��4�Ȳ^p���9+4�4>6\u001d�O\u0007��(K�#\u001a��H7\"W8p5 ��1(W�\u0002o�\u0003*\b�S\u001f�:g���+&�\u000b2S  ���uM����\u0011{Pʦ\u0013�'\u0011m(\u0005[\u0019�&�J��!S��\u0000��A\u0001d=\rT+�����  ��\u000eV{h�HRw\u001eН�[W\b���5\f���x�\u001bB��f\u0002�\u001d��\u000b�\u000f\u0004g��\u000f\u000e10=���\b�� �\u000f\u001f\u0019���\u0018��1\u000e\f����\u001c�ÿ��B��\u0001��\u00031r��|��@y`T\u000e�\u0013J��mr��q^��\u0006ќ��h�S�.\u0013\u0004m����8%��\u0013����L\u000fF���B�\"��U��u������\u000f�1s��g�>f��|���^�\u0007�m�����������8��\u000f�tz�=4��{ir\u0003w�#I5z7<B��\fś�3lw�-�N��K~�v�<\u001e��p���������\u0012y�O~���R\n�zI����\u001fJ�a�\u000f�7����I�q�\u000e�ǁ��o  �U���\u000f?�5)��g����\u001e%�w��Z\u0012}�������gt�}���\r��~�e/~���S��*g�v\u0000�\u000f�0=\u001d���O��G����Ͽ��������\u0000\u0018�\u00028�\u0004X�\u0006x�\b��\n��\f؀\u000e��\u0010\u0018�\u00128�\u0014X�\u0016x�\u0018��\u001a��\u001c؁\u001e�� \u0018�\"8�!\u0010\u0001\u0000;"}],"_postman_id":"633ba3c4-4bb2-47ef-ac75-bdfcd7e8cf2b"},{"name":"/image/user/","id":"c448f21d-cc79-40b2-b680-4be8f723f203","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer E63-fevVwKH-CV4E_TScUA.."},{"key":"Content-Type","value":"image/png"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>This Web Service is used to insert a profile image for a CoreHR user on the system where none exists. The image is provided as binary data in the body of the request.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$ curl --request POST --url https://api.corehr.com/ws/tenant/corehr/v1/image/user/0890126 \\\n  --header \"Expect:\" \\\n  --header 'content-type:image/png' \\\n  --header 'authorization: Bearer E63-fevVwKH-CV4E_TScUA..' \\\n  --data-binary \"@./original_profile.png\" \n</code></pre>\n<p>The above cURL will insert the file <code>original_profile.png</code> as the binary image profile photo for the CoreHR User <code>0890126</code> where they do not have an profile image already configured on the system.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"99d8cccf-cf18-43fd-b9ba-b5659c901ae1","name":"New profile image added","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer N3Q1pq4ltsFO89nxd7jdSw.."},{"key":"Content-Type","value":"image/gif"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 15:58:03 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002d2b","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true,  \"person\": \"0890126\",\"mimeType\": \"image/gif\",\"fileFormat\": \"GIFF\",\"width\": \"512\",\"height\": \"512\",\"blobLength\": \"2734\",\"contentLength\":\"2734\"}}\n"},{"id":"cca6e5f0-e690-4fb3-b69b-c6daba30e23e","name":"No image included in POST","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer N3Q1pq4ltsFO89nxd7jdSw.."},{"key":"Content-Type","value":"image/gif"}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"Unsupported Media Type","code":415,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 16:02:22 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002d3d","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"1002\",\"errorMessage\" :\"An image file (gif, png, jpeg or tiff) of size greater than zero must be attached to this request.\" }}\n"}],"_postman_id":"c448f21d-cc79-40b2-b680-4be8f723f203"},{"name":"/image/user/ ","id":"b3e24217-61d9-4318-87c2-e0b51bf6dac4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer Fbbanqy44exS0Nat7Ep3oQ.."},{"key":"Content-Type","value":"image/jpeg"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>Web Service used to update the profile image for a CoreHR user on the system. This overwrites their current profile image with this new image. The image is provided as binary data in the body of the request.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$ curl --request PATCH --url https://api.corehr.com/ws/tenant/corehr/v1/image/user/0890126 \\\n  --header \"Expect:\" \\\n  --header 'content-type:image/jpeg' \\\n  --header 'authorization: Bearer Fbbanqy44exS0Nat7Ep3oQ..' \\\n  --data-binary \"@./new_profile.jpg\" \n</code></pre>\n<p>The above cURL will insert the file <code>new_profile.jpg</code> as the binary image profile photo for the CoreHR User <code>0890126</code> where they already have a profile image in CoreHR. This will over-write the existing profile image.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0b6bb9f4-35c9-46c9-a7e5-2bb7b01c77fa","name":"Image update to GIF","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer seHDfknuDp9vu9UYFvsRRQ.."},{"key":"Content-Type","value":"image/gif"}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 15:38:37 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002d17","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true,  \"person\": \"0890126\",\"mimeType\": \"image/gif\",\"fileFormat\": \"GIFF\",\"width\": \"512\",\"height\": \"512\",\"blobLength\": \"2734\",\"contentLength\":\"2734\"}}\n"},{"id":"f7124654-d0aa-4779-b76e-bfc2d57d600d","name":"Unsupported image type PATCH attempt","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer JWsqzJY8n1LFVJRvqakNjQ.."},{"key":"Content-Type","value":"image/bmp"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126"},"status":"Unsupported Media Type","code":415,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 21 Sep 2017 15:54:55 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"4e56fb7b-1e33-454f-94e2-5e0b7be75919-00002d1f","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"1003\",\"errorMessage\" :\"There was an issue with the supplied image being recognized as a supported image (gif, png, jpeg or tiff) please save as another supported format and re-try.\" }}\n"}],"_postman_id":"b3e24217-61d9-4318-87c2-e0b51bf6dac4"},{"name":"/image/user/","id":"9c85b5f5-823d-4d3c-8330-58206f7c0d7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"authorization","value":"Bearer MZun_JVHkiiNm9SXgadz4A.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>This Web Service is used to retrieve (GET) the image profile for a CoreHR user on the system. Returns a binary image file.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$  curl -o ./local_copy_of_profile.jpeg -k --request GET --url https://devapi.corehr.com/ws/frame/corehr/v1/image/user/0890126 \\\n --header 'authorization: Bearer MZun_JVHkiiNm9SXgadz4A..'\n</code></pre>\n<p>This command will save the binary image of CoreHR User <code>0890126</code> into the file <code>local_copy_of_profile.jpeg</code>. If alternatively the person did not have an image on the system then the web service would return an http code 404 with and verbose errorCode of 1008. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9c85b5f5-823d-4d3c-8330-58206f7c0d7d"},{"name":"/image/user/ ","id":"984c7d5c-2cc7-4af1-9053-9be3d009056a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer Fbbanqy44exS0Nat7Ep3oQ.."},{"key":"Content-Type","value":"image/jpeg"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>Web Service used to update the profile image for a CoreHR user on the system. This overwrites their current profile image with this new image. The image is provided as binary data in the body of the request.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$ curl --request PATCH --url https://api.corehr.com/ws/tenant/corehr/v1/image/user/0890126 \\\n  --header \"Expect:\" \\\n  --header 'content-type:image/jpeg' \\\n  --header 'authorization: Bearer Fbbanqy44exS0Nat7Ep3oQ..' \\\n  --data-binary \"@./new_profile.jpg\" \n</code></pre>\n<p>The above cURL will insert the file <code>new_profile.jpg</code> as the binary image profile photo for the CoreHR User <code>0890126</code> where they already have a profile image in CoreHR. This will over-write the existing profile image.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"984c7d5c-2cc7-4af1-9053-9be3d009056a"},{"name":"/image/user/","id":"014fb7b3-1ed8-4251-906d-9273764acfab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer E63-fevVwKH-CV4E_TScUA.."},{"key":"Content-Type","value":"image/png"}],"body":{"mode":"file","file":{}},"url":"{{url}}/ws/{{schema}}/{{version}}/image/user/0890126","description":"<p>This Web Service is used to insert a profile image for a CoreHR user on the system where none exists. The image is provided as binary data in the body of the request.</p>\n<p>Example cURL:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">$ curl --request POST --url https://api.corehr.com/ws/tenant/corehr/v1/image/user/0890126 \\\n  --header \"Expect:\" \\\n  --header 'content-type:image/png' \\\n  --header 'authorization: Bearer E63-fevVwKH-CV4E_TScUA..' \\\n  --data-binary \"@./original_profile.png\" \n</code></pre>\n<p>The above cURL will insert the file <code>original_profile.png</code> as the binary image profile photo for the CoreHR User <code>0890126</code> where they do not have an profile image already configured on the system.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","image","user","0890126"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"014fb7b3-1ed8-4251-906d-9273764acfab"}],"id":"568b4101-9678-423f-bf76-2eab51400a67","description":"<p>The image web service provides a means for uploading and viewing a CoreHR user's profile picture.</p>\n<p><strong>Constraints, Limitations, Mandatory and Validation</strong></p>\n<p>Images uploaded can be a maximum of 500KB in size and must be provided in one of the following file formats:</p>\n<ul>\n<li>gif</li>\n<li>png</li>\n<li>jpeg</li>\n<li>tiff</li>\n</ul>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>415 / 1001  Invalid content type, only image/gif, image/png, image/jpeg or image/tiff allowed</li>\n<li>415 / 1002  n image file (gif, png, jpeg or tiff) of size greater than zero must be attached to this request.</li>\n<li>415 / 1003  There was an issue with the supplied image being recognized as a supported image (gif, png, jpeg or tiff) please save as another supported format and re-try.</li>\n<li>415 / 1004 The attached image exceeded the maximum allowed file size for an image.</li>\n<li>400 / 1005 The person supplied is not currently a valid person on the system. Please check the personnel details.</li>\n<li>400 / 1006  This person does not have an image on the system to update please change this request to POST to insert the image.</li>\n<li>400 / 1007  This person already has an image on the system to insert please change this request to PATCH to update the image.</li>\n<li>404 / 1008  This person does not currently have an image on the system to retrieve.</li>\n</ul>\n","_postman_id":"568b4101-9678-423f-bf76-2eab51400a67"},{"name":"Provision","item":[{"name":"native","item":[{"name":"auth","item":[{"name":"/provision/native/auth/uuid/","id":"f61ec7e3-1d17-4723-a4af-52e3960d3f49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\" : \"email\",\n  \"id\" : \"darragh@COREHR.com\"\n}"},"url":"{{url}}/ws/devws/corehr/v1/provision/native/auth/uuid","description":"<p>Use this service if you want to remove UUID's. The service can facility bulk UUID removal/purge and individual employee UUID.</p>\n<p>This is useful in cases where you have a need</p>\n<ul>\n<li>to remove an individuals UUID e.g. as part of a leaver process.</li>\n<li>to implement a policy requiring users to re-register, this would be similar to a password policy</li>\n</ul>\n<p><strong>Constraints and Limitations</strong></p>\n<ul>\n<li><code>type</code> must be one of the following:</li>\n</ul>\n<p>email</p>\n<p>ALL</p>\n<ul>\n<li><code>id</code></li>\n</ul>\n<p>must now be a valid type i.e. a valid Email address. In cases where ALL is used for type, the id should be left blank.</p>\n<p>If invalid ID provided nothing is deleted, i.e. if an invalid email address provided a status of 404 is returned. For valid email address a 200 is returned, indicating a success.</p>\n<p><strong>Parameters</strong></p>\n<ul>\n<li><code>type</code> this must be email, username, employeeNumber or all. \"ALL\" is reserved for bulk removal, this will remove all the registered UUID's, therefore use with caution</li>\n<li><code>id</code> this must be a valid email address</li>\n</ul>\n","urlObject":{"path":["ws","devws","corehr","v1","provision","native","auth","uuid"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f61ec7e3-1d17-4723-a4af-52e3960d3f49"}],"id":"26aa4a78-975a-4aa7-a899-068ef3904085","description":"<p>CoreHR's native mobile application facilitates users registering once and then using biometric (e.g. touchID, FaceID)  or PIN to unlock the application i.e. the user does not require a username / password each time they login. However a user is required to unlock the app via biometric or PIN.</p>\n<p>A tenant may have a requirement to implement a different policy e.g. a user must authenticate via username / password at least once a day, week or month i.e. similar to password policies. CoreHR makes no assumptions for password policies, instead tenants can implement their own policies.</p>\n<p>In order to faciliate these requirments web services can be used. A tenant can generate a new app grant priviliges to this module and end point.</p>\n","_postman_id":"26aa4a78-975a-4aa7-a899-068ef3904085"}],"id":"b199c88c-52bf-4e5d-9b62-39091550278f","description":"<p>The native module manages authentication and tokens for the CoreHR native application. These services cater for both SAML and non-SAML customers. All request will be handled via TLS.</p>\n<p>This service provides:</p>\n<ul>\n<li>Ability to remove / purge / reset Uses UUID's</li>\n</ul>\n","_postman_id":"b199c88c-52bf-4e5d-9b62-39091550278f"},{"name":"/provision/not/","id":"fc558d06-94c3-4600-9983-463b845a46a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/","description":"<p>Find all non provisioned accounts. This endpoint will return all users not yet provisioned. </p>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","not",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"252d5adc-7c55-40fa-aab9-540ddc5911bd","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:25:18 GMT","name":"Date","description":""},{"key":"ETag","value":"\"1vMo5C9I8Z5vCzing5E3+mi3CqxEERGEkgaT63wiuazPEAyQbKuxHRi0r2O+2zXIJzD+SWQvh7AOH1pHdVRB2A==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"corehrId\":\"000003703\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003704\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003706\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003707\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003708\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003709\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003710\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003711\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003712\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003713\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003714\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003715\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003716\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003717\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003718\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003719\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003720\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003721\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003722\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003723\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000013\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000018\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000020\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000021\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000022\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000023\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000025\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000027\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000028\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000030\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000031\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000032\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000035\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000038\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000039\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000041\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000042\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000043\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000044\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000045\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000046\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000047\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000048\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000049\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000050\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000051\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000054\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000055\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000056\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000057\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000058\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000059\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000060\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000061\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000063\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000064\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000065\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000066\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000067\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000069\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000070\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000072\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000073\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000078\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000080\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000081\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000082\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000084\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000085\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000086\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000087\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000088\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000089\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000090\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000091\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000092\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000093\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000094\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000096\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000097\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000098\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000099\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000100\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"0001000\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000101\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000102\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000103\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000104\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000105\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000106\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000107\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000108\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000109\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000110\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000111\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000112\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000113\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000114\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000115\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000117\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/not/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/not/?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"fc558d06-94c3-4600-9983-463b845a46a5"},{"name":"/provision/not/:days","id":"ae572ed7-e623-422e-b052-5bd9583054a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/10","description":"<p><strong>Optionally</strong> provide number of days, this service is used to offset users start date. Provides ability to determine accounts not yet provisioned in CoreHR for Core|Portal self service access. This service will include employees due to start in the future.</p>\n<p>Allowing the following scenario.</p>\n<ul>\n<li><p>obtain user accounts to be provisioned within the last X number of days, i.e. a start date occurring in the past.</p>\n</li>\n<li><p>obtain user accounts to be provisioned with a future start date, i.e. users starting in the future.</p>\n</li>\n</ul>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","not","10"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3cb4cc03-2d02-41ea-afc1-67619e9b12ae","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/10"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:30:42 GMT","name":"Date","description":""},{"key":"ETag","value":"\"cSKNv2WwIIh0T+eJ45YnqtVBjBFYZkks1p7Tqg85HR8CDOYFRrykHVYdfY25akVQyWUXfWirPpwnI4ZKalVYEA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"corehrId\":\"000613\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000614\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000615\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000623\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000624\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000660\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000662\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000673\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000674\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000676\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000677\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000679\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000754\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000755\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000756\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000757\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000770\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000771\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000794\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000795\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000796\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000801\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000806\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000825\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000830\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000831\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000883\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000893\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000894\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000897\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000898\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000899\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000900\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000919\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000921\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000934\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000944\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000958\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001027\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001105\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001141\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001330\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"002544\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"002556\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"003292\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"003484\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"003555\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"0208884\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"123\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"123-XYZ\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"609\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"610\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"611\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"612\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"616\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"617\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"618\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"619\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"620\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"621\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"622\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"625\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"638\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"639\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"640\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"642\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"643\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"644\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"645\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"650\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"651\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"652\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"667\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"671\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"675\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"678\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"680\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"694\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"C123456\", \"firstName\": \"DEAN\", \"lastName\": \"M\"}\n,\n{\"corehrId\":\"C123457\", \"firstName\": \"DOM\", \"lastName\": \"GRIFFIN\"}\n,\n{\"corehrId\":\"C464646\", \"firstName\": \"FDS\", \"lastName\": \"FSDF\"}\n,\n{\"corehrId\":\"C555555\", \"firstName\": \"STPEHEN\", \"lastName\": \"195\"}\n,\n{\"corehrId\":\"C876876\", \"firstName\": \"STEPHEN\", \"lastName\": \"NOW\"}\n,\n{\"corehrId\":\"C878778\", \"firstName\": \"SAFDA\", \"lastName\": \"WRWE\"}\n,\n{\"corehrId\":\"C888888\", \"firstName\": \"STEPHEN\", \"lastName\": \"EXTERNAL\"}\n,\n{\"corehrId\":\"C901111\", \"firstName\": \"STEPHEN\", \"lastName\": \"106\"}\n,\n{\"corehrId\":\"C989889\", \"firstName\": \"STEPOHEN\", \"lastName\": \"C\"}\n,\n{\"corehrId\":\"C989898\", \"firstName\": \"STEPHEN\", \"lastName\": \"185\"}\n,\n{\"corehrId\":\"DFLT-9\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"DYLAN1\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"TA0001\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"TA0002\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"TA0004\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 93,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/not/10\"\n      }\n    ]\n}\n"}],"_postman_id":"ae572ed7-e623-422e-b052-5bd9583054a2"},{"name":"/provision/user","id":"f3f9560f-f19d-4df4-9166-ed001b603d9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"100\",\n  \"loginid\" : \"darragh.duffy@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user","description":"<p>Provisions a new CorePortal account;  on successful completion, users will have ability to access CoreHR's self service features via CorePortal. As noted in the introduction to the provisioning module, where an IDM or third party application understands CorePortal privileges this module will accept these privileges. Example provided below includes Users Privilege.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by the /provision/not/ web service.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<ul>\n<li>authType</li>\n</ul>\n<p>This is the authentication type for the employee, the value here should be either <code>inApplicationPassword</code> or <code>LDAP</code>. For all single sign on authenticated accounts use LDAP. For non single sign on account set this value to inApplicationPassword this then requires the password attribute to be set. Leaving this parameter null indicates to CoreHR that the user account should pick up the system default authentication type, this parameter can be found in CoreHR as 'authtype'.</p>\n<ul>\n<li>password</li>\n</ul>\n<p>This attribute is required when authType is  <code>inApplicationPassword</code>. The value here will be validated against the password policy in CoreHR.</p>\n<ul>\n<li>privileges</li>\n</ul>\n<p>An array, each array object contains a privilege.</p>\n<p><strong>Mandatory</strong></p>\n<ul>\n<li>corehrid</li>\n<li>loginid</li>\n<li>password (only when authType is inApplicationPassword)</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ad158243-fbad-4685-9fa4-36a9f6ba0ddd","name":"400 - Bad Request - Validation Failed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.smith@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:38:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. If attempting to update use PATCH method\" }}\n"},{"id":"b2b3bdcb-bc19-4c13-925a-983138de6182","name":"201 - Created - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.smith@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 05 Oct 2016 16:35:54 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"efdd0681-289d-4ddd-b239-1e4059fcb125","name":"400 - Bad Request - ","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:36:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing\" }}\n"}],"_postman_id":"f3f9560f-f19d-4df4-9166-ed001b603d9e"},{"name":"/provision/user","id":"0b4722fa-9d43-42d0-aabb-34736ac17853","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"developmentTeam\"},\n            {\"privilege\" : \"VPNGroup\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user","description":"<p>Provides ability to patch (amend) an existing account. Account must have previously been provisioned, this means corehrID must previously have been generated via <code>POST</code>. In general this service supports Single Sign On style accounts. </p>\n<p>It is possible to use this service with non SSO accounts, in such cases all parameters are mandatory including password and explcitly setting authType to <code>inApplicationPassword</code>. In cases where <code>authType</code> is not provided the account is assumed to be Single Sign On.</p>\n<p>The use cases for this web service includes </p>\n<ul>\n<li>loginId changing</li>\n</ul>\n<p>Where a user changes their loginId e.g. their name changes because of marriage, this web service faciliates this change of ID.</p>\n<ul>\n<li>privilege changing</li>\n</ul>\n<p>executing this web service will remove all current privileges and replace with the privileges array. It is therefore possible to use this web service to revoke all privileges for a user by sending a blank array of privileges.</p>\n<p>Example provided below changes both Login ID and privileges.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by the /provision/not/ web service.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<ul>\n<li>authType</li>\n</ul>\n<p>This is the authentication type for the employee, the value here should be either <code>inApplicationPassword</code> or <code>LDAP</code>. For all single sign on authenticated accounts use LDAP. For non single sign on account set this value to <code>inApplicationPassword</code> this then requires the password attribute to be set. In cases where this attribute is null, assumpetion is Single Sign On.</p>\n<ul>\n<li>password</li>\n</ul>\n<p>This attribute is required when authType is  <code>inApplicationPassword</code>. The value here will be validated against the password policy in CoreHR. </p>\n<ul>\n<li>privileges</li>\n</ul>\n<p>An array, each array object contains a privilege. If this is blank all privs are revoked.</p>\n<p><strong>Mandatory</strong></p>\n<ul>\n<li>corehrid</li>\n<li>loginid</li>\n<li>password (only when authType is inApplicationPassword)</li>\n</ul>\n<p>For Non SSO Accounts <strong>all</strong> parameters are mandatory. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3aa812c6-1192-4088-9c38-9264dee7536a","name":"201 - Created - Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"developmentTeam\"},\n            {\"privilege\" : \"VPNGroup\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}//provision/user"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 05 Oct 2016 16:42:46 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"0b4722fa-9d43-42d0-aabb-34736ac17853"},{"name":"/provision/user/status/:id","id":"0cc5d4cb-cd05-4fdc-8b98-0dfe7ee0475f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100","description":"<p>Obtain user account status indicator; determining if an account is active or not. The parameter <code>id</code> can be users coreHRID or account username.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","status","100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2f4f21c7-a57b-4953-a8ea-e660dccf3125","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:31:30 GMT","name":"Date","description":""},{"key":"ETag","value":"\"sGx4HzAXH89DhDNFtkOUMSQlXB866SC59AcS3OozZImkugcv3VxH0Fu28Ggg8u1MKe9Q0te3IaT/rcBLEIZxsA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"isAccountActive\":\"Yes\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/user/status/100\"\n      }\n    ]\n}\n"}],"_postman_id":"0cc5d4cb-cd05-4fdc-8b98-0dfe7ee0475f"},{"name":"/provision/user/authtype/:id","id":"8a1b3818-80ae-4e6d-b00a-f69b334a4a82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/authtype/100","description":"<p>Obtain user authentication type. Response indicates either <code>LDAP</code> or <code>inApplicationPassword</code>. </p>\n<p>The parameter <code>id</code> can be users coreHRID or loginID.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","authtype","100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bd0f2e1e-4a28-4a20-ba54-1e9284b90e0a","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/authtype/100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 15 May 2017 14:44:26 GMT","name":"Date","description":""},{"key":"ETag","value":"\"mZYGBTCc1ovUVzZXDgF+YJsBaIu7WlfXQxZde8j3GjOesDyaERKI0JiZmy5tZzqcbhUZA5zogDX+iGxiFiz7JQ==-gzip\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"authType\":\"inApplicationPassword\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://localhost/ws/tenant/corehr/v1/provision/user/authtype/100\"\n      }\n    ]\n}\n"}],"_postman_id":"8a1b3818-80ae-4e6d-b00a-f69b334a4a82"},{"name":"/provision/user/status/:id","id":"91fdf6a6-0865-4e69-a043-6e2ce18f43c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"active\" : \"N\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100","description":"<p>Provides an ability to activate or deactivate an account. Setting an account to be deactive results in a user not being allowed sign into CoreHR self Service module CorePortal. This applies irrespective of the users authentication type.</p>\n<p>When an account is created via <code>POST</code> <code>/provision/user</code> the account is assumed to be active. You do not need to execute this web services to activate an account once it has been created. However if you execute this web services and set active to N then you must execute this web services again to re-activate the account by setting active to Y.</p>\n<p>The id parameter can be either coreHRID or the username associated with the account. The Active parameter must be N or Y</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","status","100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0698a8ad-da66-4fc2-a68b-86f231b05321","name":"400 - Validation Failed","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\"active\" : \"N\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/1001"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 22 Oct 2016 19:02:41 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"007\",\"errorMessage\" :\"Validation failed. Either user account does not exist or request data is invalid.\" }}\n"},{"id":"bfae72c0-08d0-45b9-a9d0-067b96458ff8","name":"200 - Account Active","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 22 Oct 2016 18:04:52 GMT","name":"Date","description":""},{"key":"ETag","value":"\"L/idwKxNGWvlkQGQ4j3vC0+brkecdYNqpY2o9nJxaN5RiPktu/5d3OJrX6yJIWMlOB0ocscXHR0OVsUrx7Decw==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"{\"items\":[{\"isaccountactive\":\"Yes\"}],\"hasMore\":false,\"limit\":100,\"offset\":0,\"count\":1,\"links\":[{\"rel\":\"self\",\"href\":\"http://localhost:8585/ws/corehr/v1/provision/user/status/100\"},{\"rel\":\"describedby\",\"href\":\"http://localhost:8585/ws/corehr/metadata-catalog/v1/provision/user/status/item\"},{\"rel\":\"first\",\"href\":\"http://localhost:8585/ws/corehr/v1/provision/user/status/100\"}]}"},{"id":"d2b26496-236e-49ac-8460-9b25043a4e3b","name":"201 - Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\"active\" : \"N\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 22 Oct 2016 19:02:16 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"91fdf6a6-0865-4e69-a043-6e2ce18f43c3"},{"name":"/provision/user/privilege","id":"fdab3609-45b2-4485-b801-65e1b3b28d35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privilege\" : \"hrAdmin\"\n  }\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/privilege","description":"<p>Provisions a new privilege for a user. This service allows one new privilege to be assigned to the user account. In addition this service assumes an account has already been provisioned. Validation is performed on the account confirming existence. </p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by the /provision/not/ web service.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<ul>\n<li>privilege</li>\n</ul>\n<p>a new privilege for the user.</p>\n<p><strong>Special Usage Note</strong></p>\n<p>use one of the following combinations, <strong>do not</strong> use all three fields. If you do an error will be returned.</p>\n<ul>\n<li>corehrid and a privilege</li>\n</ul>\n<p>or</p>\n<ul>\n<li>loginid and a privilege</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","privilege"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d8f0faab-baed-4029-89a4-cba7327c478a","name":"400 - Bad Request - Validation Failed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"  {\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privilege\" : \"hrAdmin\"\n  }\n  "},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/privilege"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:49:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"006\",\"errorMessage\" :\"Validation failed. Invalid fields used\" }}\n"},{"id":"e28a27e6-254a-4fc6-b92d-bb1f537835c7","name":"201 - Created - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"  {\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privilege\" : \"hrAdmin\"\n  }\n  "},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/privilege"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:47:41 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"fdab3609-45b2-4485-b801-65e1b3b28d35"},{"name":"/provision/user/privilege?id","id":"061440c7-ceae-4d64-9c89-ff08f773ada4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege?id=","description":"<p><strong>CoreHR v25.0.7 required</strong></p>\n<p>This service will list all currently granted privileges associated with a user. </p>\n<p><strong>Parameter</strong></p>\n<p>id can be either the users  <code>loginid</code> or the users <code>corehrid</code> (personnelNumber).</p>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","provision","user","privilege"],"host":["{{url}}"],"query":[{"key":"id","value":""}],"variable":[]}},"response":[],"_postman_id":"061440c7-ceae-4d64-9c89-ff08f773ada4"},{"name":"/provision/user/privilege/revoke/all","id":"6639d577-c02a-4579-bd64-cb387f7f0abc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"corehrid\" : \"5990404\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all","description":"<p><strong>CoreHR v25.0.7 required</strong></p>\n<p>Provides an ability to revoke <strong>all</strong> user privileges associated with the user account. </p>\n<p>A privilege here relates to all granted menu security items i.e. feature access and <strong>not</strong> access to a specific user, while access to the user is not revoked the privilege to use the feature is revoked. </p>\n<p>NB this revokes <strong>all</strong>. </p>\n<p>Other attributes associated with the user Account are not affected e.g. account will still exist, authentication type will remain as is, and password for non SSO accounts remain in place etc.</p>\n<p>This service assumes an account has already been provisioned. Validation is performed on the account confirming existence. This is a simple purge request, in cases where the user has no privileges, this service will not respond with an error, instead a successful response is returned.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by using the new filter services.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<p><strong>Special Usage Note</strong></p>\n<p>use one of the following combinations, <strong>do not</strong> use both fields. If you do an error will be returned.</p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>or</p>\n<ul>\n<li>loginid</li>\n</ul>\n","urlObject":{"path":["ws","{{tenant}}","{{schema}}","{{version}}","provision","user","privilege","revoke","all"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"08330a49-d15a-48be-8f33-cafbb778552a","name":"Invalid Request used both identifiers","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"corehrid\" : \"XXXX\", \"loginid\" : \"marco.donnino\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 29 Mar 2018 07:48:58 GMT","name":"Date","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-000ed268","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"006\",\"errorMessage\" :\"Validation failed. Invalid fields used\" }}\n"},{"id":"4057003a-90f5-4b03-b7ee-681e447dce70","name":"Successful Revoke All - LoginID","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"loginid\" : \"darragh.duffy@corehr.com\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 29 Mar 2018 08:03:00 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-000edc6d","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"9050c8bc-6eae-40d5-9d8f-2b784031d282","name":"Invalid User ID","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"corehrid\" : \"XXXX\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 29 Mar 2018 07:48:13 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-000ed1ed","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"004\",\"errorMessage\" :\"Validation failed. User account does not exist\" }}\n"},{"id":"9f32ef75-6604-437c-9d27-5f05137698a7","name":"Successful Revoke All - CoreHRID","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"corehrid\" : \"5990404\"}"},"url":"{{url}}/ws/{{tenant}}/{{schema}}/{{version}}/provision/user/privilege/revoke/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 29 Mar 2018 07:45:42 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-ORACLE-DMS-ECID","value":"253df163-0e02-4479-b26d-f2eaa8228ccf-000ed03f","name":"X-ORACLE-DMS-ECID","description":""},{"key":"X-ORACLE-DMS-RID","value":"0","name":"X-ORACLE-DMS-RID","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"6639d577-c02a-4579-bd64-cb387f7f0abc"}],"id":"d0a908f9-5179-4281-b742-d1ddca7588b0","description":"<p>Provisioning facility allowing Core|Portal accounts to be provisioned. Core|Portal is the self service module within CoreHR. A employee may have a record in CoreHR, this does not automatically suggest same employee has access to self service features via CorePortal. In order to access CorePortal a self service account is required. This module provides a web service mechanism to provision an employee.</p>\n<p>In Summary provisioning provides ability to</p>\n<ul>\n<li>Determine accounts yet to be provisioned</li>\n<li>Determine accounts yet to be provisioned within X number of days (including future start dates)</li>\n<li>Provision a new account</li>\n<li>Provision a new account with privileges</li>\n<li>Update existing accounts privileges</li>\n<li>Add additional privilege to an account</li>\n<li>Set authentication Type in cases where a mix of Single Sign On, SAML and inApplicationPasswords exist</li>\n</ul>\n<p><strong>Contraints, Limitations &amp; Mandatory</strong></p>\n<p>Accounts to be provisioned simply indicates accounts (employees) not yet provisioned. These accounts must satisfy following criteria </p>\n<ul>\n<li>Active Employee Record</li>\n</ul>\n<p>indicates employees record must not have a date left.</p>\n<p>Do not assume logic applies indicating certain categories of employees are allowed access and others are not allowed. No other conditions are applied. Additional attributes are possible to add to the response to help an IDM provider make this decision, CoreHR will work with an IDM provider to best determine. </p>\n<p>CorePortal privileges can be assigned by the IDM using the privileges array (example below). Where an IDM can not determine privileges, this provisioning web service module integrates with the CoreHR user profile matrix, and in cases where this matrix is not configured the fall back is all users are granted a default access profile typically \"coreportal_employee\".</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001  Mandatory fields are missing</li>\n<li>400 / 002  Validation failed. If attempting to update use PATCH method</li>\n<li>400 / 003  Unexpected error, unable to provision account</li>\n<li>404 / 004 Validation failed. User account does not exist</li>\n<li>404 / 005 Validation failed. Account must first be provisioned, use POST method</li>\n<li>400 / 006  Validation failed. Invalid fields used</li>\n<li>400 / 007  Validation failed. Either user account does not exist or request data is invalid.</li>\n<li>400 / 008  Validation failed. Authtype must be either LDAP or inApplicationPassword. If choosing inApplicationPassword a password is required</li>\n<li>400 / 009 Validation failed. Supplied password has not passed password</li>\n<li><ul>\n<li>400 / 010 Validation failed, type is mandatory (must email or all), and id should be populated when type is email, when type is all no id should be provided. The JSON keys are case sensitve, type and id should be lower case.</li>\n</ul>\n</li>\n<li><ul>\n<li>404 / 011 Nothing found for this email address.</li>\n</ul>\n</li>\n</ul>\n","_postman_id":"d0a908f9-5179-4281-b742-d1ddca7588b0"},{"name":"Reference","item":[{"name":"/reference/","id":"ada12e50-e4e0-40bb-bc9e-8d0a740a4bf7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/","description":"<p>Get a list of registered / whitelisted referene types. Tenant has an ability to define reference types available for creating / updating. A tenant may not allow all references to be updated or created, this base URI provides the list of valid reference types. In cases where server returns validation errors, refer to this list to confirm the reference type is whitelisted.</p>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"aee746c2-2266-491b-8359-45a361d4228a","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:32:48 GMT","name":"Date","description":""},{"key":"ETag","value":"\"c+fK0tVaqmJ9e4v3iAcjrkNwTm99RSdRJXXfABfFEcdajSFUsEcGTUC0aJFyIg7ll32J/RQTlDd4wRl99bLqZQ==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"ACCI\", \"description\" : \"ACCIDENT CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACCSEV\", \"description\" : \"Accident Severity Code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACDIS1\", \"description\" : \"Academic Discipline 1\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACDIS2\", \"description\" : \"Academic Discipline 2\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACSTAT\", \"description\" : \"Academic Staff Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACT\", \"description\" : \"Activity\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACTINV\", \"description\" : \"Workplace Activity Involved\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACTION\", \"description\" : \"Action\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ADDTYP\", \"description\" : \"Address Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ADMBY\", \"description\" : \"Training Administered By\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"AGERNG\", \"description\" : \"Age Range\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ALLCOD\", \"description\" : \"Allowance Code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"APP\", \"description\" : \"Appointment code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"APPR\", \"description\" : \"APPRAISAL CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"APPTYP\", \"description\" : \"Approval Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"AREA\", \"description\" : \"Area\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ASCAT\", \"description\" : \"Academic Staff Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ASPOSE\", \"description\" : \"Aspose Document Type Mapping\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"AWRD\", \"description\" : \"Pdp Recognition Awards\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"BCKWRK\", \"description\" : \"Back At Work Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"BEN\", \"description\" : \"BENEFIT CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"BUSNAT\", \"description\" : \"Business Nature Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CARPRF\", \"description\" : \"Test\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CATG\", \"description\" : \"Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CERT\", \"description\" : \"CERTIFICATE TYPE\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFATTY\", \"description\" : \"Conference Attendance Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFLEVL\", \"description\" : \"Conference Level\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFORGB\", \"description\" : \"Conference Organising Body\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFSTAT\", \"description\" : \"Conference Status\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFTYPE\", \"description\" : \"Conference Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CITZ\", \"description\" : \"Citizenship Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CLINAC\", \"description\" : \"Clinical Access\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CNTCOD\", \"description\" : \"Country\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COMCAT\", \"description\" : \"Employee Company Categories\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CONTRT\", \"description\" : \"Contract Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CONTYP\", \"description\" : \"Contact Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COST\", \"description\" : \"Cost centre\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COSTCL\", \"description\" : \"Cost Class\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COUNTY\", \"description\" : \"County Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CPCRT\", \"description\" : \"Crew Plan Rule Day Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CPNR\", \"description\" : \"Crew Plan Night Allowance Rule Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CRSLVL\", \"description\" : \"Qualification Level\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CRTYP\", \"description\" : \"Clinical Research Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CRYTP\", \"description\" : \"Clinical Research Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CSOI\", \"description\" : \"CSO\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DAYRTN\", \"description\" : \"Days to Return Codes (OccInj)\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DEPN\", \"description\" : \"DEPENDENTS\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DEPT\", \"description\" : \"Department\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DESC\", \"description\" : \"Description\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DISABL\", \"description\" : \"Disability Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DIV\", \"description\" : \"Division\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DIVER\", \"description\" : \"Diversity Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DOCTYP\", \"description\" : \"Document Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EDUC\", \"description\" : \"EDUCATION/SKILL CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EMPL\", \"description\" : \"EMPLOYMENT HISTORY\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EMPS\", \"description\" : \"Employment status\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ETHNIC\", \"description\" : \"Ethnicity\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EVTCAT\", \"description\" : \"Event Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EXCDVL\", \"description\" : \"Core Expense Code Validation\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EXPS\", \"description\" : \"Expenses\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EXTPER\", \"description\" : \"External Person Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FAMSTS\", \"description\" : \"Family Status Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FBGRP\", \"description\" : \"Flexible Benefit Groups\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FBLNK\", \"description\" : \"Flexible Benefit Links\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FECBCK\", \"description\" : \"FEC Background\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FECCLA\", \"description\" : \"FEC Classification\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FECTYP\", \"description\" : \"FEC Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FEES\", \"description\" : \"Fees\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FEMRPT\", \"description\" : \"FEM Report Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FIRE\", \"description\" : \"FIRE ZONE CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FIRPNT\", \"description\" : \"Fire Point\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FORM\", \"description\" : \"Form Name\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FTEHRS\", \"description\" : \"FTE Hour Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FUNDAG\", \"description\" : \"Funding Agency Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FUNDSC\", \"description\" : \"Funding Source\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FUNTYP\", \"description\" : \"Funding Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"GNDRID\", \"description\" : \"Gender Identity\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"GRIPID\", \"description\" : \"Group ID\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"GRPID\", \"description\" : \"Group ID\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HAZZ\", \"description\" : \"HAZZARD CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HONCON\", \"description\" : \"Honorary Contract\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HOUR\", \"description\" : \"Hours\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSASRC\", \"description\" : \"Health Safety Action Source\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSCON\", \"description\" : \"Health Safety Contractor\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSNT\", \"description\" : \"Health Safety Notice Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSPRI\", \"description\" : \"Health Safety Action Priority\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSSRC\", \"description\" : \"Health Safety Source Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSSTA\", \"description\" : \"Health Safety Action Status\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ILINCN\", \"description\" : \"Industry Nature of Contact\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ILINCT\", \"description\" : \"Industry Categories\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ILOC\", \"description\" : \"Input location\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INCVIO\", \"description\" : \"Incidents of Violence Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INDCAT\", \"description\" : \"Employee Industry Categories\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INJBOD\", \"description\" : \"Injured BOdy Part Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INJCAU\", \"description\" : \"Cause of Injury Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"JOBCAT\", \"description\" : \"Job Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"JOBCOD\", \"description\" : \"Job Code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"JOBS\", \"description\" : \"Job code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"LENTIM\", \"description\" : \"Length of Time\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"LEVEL\", \"description\" : \"Level Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"ada12e50-e4e0-40bb-bc9e-8d0a740a4bf7"},{"name":"/reference/type/:atype","id":"f8fd842d-bebd-4ffc-bcbb-8951989124b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Returns a list of codes and descriptions for a reference type, a reference type could be <code>COST</code>, <code>DEPT</code> etc. Reference Types are typically upper case. As already noted reference types can be whitelisted by a tenant.</p>\n<p>For a full list of available reference types use /reference/</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"861d4e7f-fb71-4654-8ec9-727d2d06dd83","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:35:18 GMT","name":"Date","description":""},{"key":"ETag","value":"\"ZInz0RdXlDlkFr0RxOWVt0Xe8DrUJnBC2+V/aZmUKdeVao7Vnt+tTjTY7a88qxAW/95HgOuX3zxv4wgdqSdatg==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"COST\", \"code\": \"1\", \"description\": \"Cost Centre Web Services 1\"}\n,\n{\"type\":\"COST\", \"code\": \"10\", \"description\": \"Cost Centre Web Services 10\"}\n,\n{\"type\":\"COST\", \"code\": \"100A\", \"description\": \"Cost Centre Web Services 100A\"}\n,\n{\"type\":\"COST\", \"code\": \"111\", \"description\": \"Cost Centre Web Services 111\"}\n,\n{\"type\":\"COST\", \"code\": \"123456789\", \"description\": \"Cost Centre Web Services 123456789\"}\n,\n{\"type\":\"COST\", \"code\": \"149\", \"description\": \"Cost Centre Web Services 149\"}\n,\n{\"type\":\"COST\", \"code\": \"159\", \"description\": \"Cost Centre Web Services 159\"}\n,\n{\"type\":\"COST\", \"code\": \"20\", \"description\": \"Cost Centre Web Services 20\"}\n,\n{\"type\":\"COST\", \"code\": \"200A\", \"description\": \"Cost Centre Web Services 200A\"}\n,\n{\"type\":\"COST\", \"code\": \"21\", \"description\": \"Cost Centre Web Services 21\"}\n,\n{\"type\":\"COST\", \"code\": \"22\", \"description\": \"Cost Centre Web Services 22\"}\n,\n{\"type\":\"COST\", \"code\": \"222\", \"description\": \"Cost Centre Web Services 222\"}\n,\n{\"type\":\"COST\", \"code\": \"23\", \"description\": \"Cost Centre Web Services 23\"}\n,\n{\"type\":\"COST\", \"code\": \"24\", \"description\": \"Cost Centre Web Services 24\"}\n,\n{\"type\":\"COST\", \"code\": \"25\", \"description\": \"Cost Centre Web Services 25\"}\n,\n{\"type\":\"COST\", \"code\": \"26\", \"description\": \"Cost Centre Web Services 26\"}\n,\n{\"type\":\"COST\", \"code\": \"27\", \"description\": \"Cost Centre Web Services 27\"}\n,\n{\"type\":\"COST\", \"code\": \"28\", \"description\": \"Cost Centre Web Services 28\"}\n,\n{\"type\":\"COST\", \"code\": \"29\", \"description\": \"Cost Centre Web Services 29\"}\n,\n{\"type\":\"COST\", \"code\": \"2908100\", \"description\": \"Cost Centre Web Services 2908100\"}\n,\n{\"type\":\"COST\", \"code\": \"30\", \"description\": \"Cost Centre Web Services 30\"}\n,\n{\"type\":\"COST\", \"code\": \"300A\", \"description\": \"Cost Centre Web Services 300A\"}\n,\n{\"type\":\"COST\", \"code\": \"356\", \"description\": \"Cost Centre Web Services 356\"}\n,\n{\"type\":\"COST\", \"code\": \"39\", \"description\": \"Cost Centre Web Services 39\"}\n,\n{\"type\":\"COST\", \"code\": \"40\", \"description\": \"Cost Centre Web Services 40\"}\n,\n{\"type\":\"COST\", \"code\": \"451\", \"description\": \"Cost Centre Web Services 451\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC\", \"description\": \"Cost Centre Web Services ABC\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC001\", \"description\": \"Cost Centre Web Services ABC001\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC0010\", \"description\": \"Cost Centre Web Services ABC0010\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC003\", \"description\": \"Cost Centre Web Services ABC003\"}\n,\n{\"type\":\"COST\", \"code\": \"J12345\", \"description\": \"Cost Centre Web Services J12345\"}\n,\n{\"type\":\"COST\", \"code\": \"JKL333\", \"description\": \"Cost Centre Web Services JKL333\"}\n,\n{\"type\":\"COST\", \"code\": \"PROD\", \"description\": \"Cost Centre Web Services PROD\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 33,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/type/COST/\"\n      }\n    ]\n}\n"}],"_postman_id":"f8fd842d-bebd-4ffc-bcbb-8951989124b1"},{"name":"/reference/type/:atype/:code?","id":"780c38c5-b3eb-4d62-a9f1-300daa22521b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/DEPT/1061","description":"<p>Returns an individual reference description associated with a reference type and code. A reference type could be <code>COST</code>, <code>DEPT</code> etc. Reference Types are typically upper case. As already noted reference types can be whitelisted by a tenant.</p>\n<p>For a full list of available reference types use /reference/</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference","type","DEPT","1061"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b746b5a0-2a7f-4536-ac6c-3c9e5eaac1be","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/10"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:35:39 GMT","name":"Date","description":""},{"key":"ETag","value":"\"Q3jVQU2iTQ/v0g70PelGZKl9U6wG1LV/Ns7vRxFBtB7MUyXAAgUcC+nxdBtW/mQMcQPoQhSS1jjRtrAA4a7uzQ==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"COST\", \"code\": \"10\", \"description\": \"Cost Centre Web Services 10\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/type/COST/10\"\n      }\n    ]\n}\n"}],"_postman_id":"780c38c5-b3eb-4d62-a9f1-300daa22521b"},{"name":"/reference/type/:atype","id":"11e4917f-5799-4c3e-8af4-0c2bc4bd7edb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1061\",\n\"description\" : \"Cost Centre One\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Add reference data based on the reference type, code and description. The reference type is expected in the URL, while the request body should include <code>code</code> and <code>description</code></p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ff2e6c02-c720-42af-b27e-344103430dd6","name":"201 - Created - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Cost Centre One\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 04 Oct 2016 19:35:00 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"11e4917f-5799-4c3e-8af4-0c2bc4bd7edb"},{"name":"/reference/type/:atype","id":"e2505a99-5f23-47a1-94c3-020b4fd95f94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Department One Data Updated\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Ability to update a description associated with an existing reference code / type combination. The reference type is expected in the URL, while the request body should include <code>code</code> and <code>description</code></p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f3dff873-c511-4975-ae15-237f3bc5c642","name":"201 - Created (Updated) - Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Cost Centre One Data Updated\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 04 Oct 2016 19:36:31 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"e2505a99-5f23-47a1-94c3-020b4fd95f94"},{"name":"/reference/type/:atype","id":"55dc6506-41f0-47f7-a38b-5669f255785f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"value\" : \"1\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Delete reference data based on the reference type, code. The reference type is expected in the URL, while the request body should include <code>code</code>.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4ecb9319-72ab-45c3-b1ab-31db7c448bbb","name":"200 - Success OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 11 Nov 2016 16:32:50 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"55dc6506-41f0-47f7-a38b-5669f255785f"}],"id":"ff4d1c07-737f-43c8-9494-e3f956fe6cdd","description":"<p>Reference module provides ability to view, add and update reference related items for CoreHR e.g. Cost Centre, Department, Projects etc. </p>\n<p><strong>Contraints, Limitations &amp; Mandatory</strong></p>\n<p>The reference module is case senstive, no process converts the type provided into upper or lower case. You must ensure you have set the case correctly, otherwise no data will be returned. Within CoreHR reference types are typically uppercase.</p>\n<p>In most cases a type is mandatory. Following are some examples, for more detail review each URI and method below.</p>\n<p>For endpoint <code>/reference/type/aType/</code> aType is mandatory e.g. <code>/reference/type/COST/</code>. Another example <code>/reference/type/COST/1</code> will return Reference Type COST where the cost centre code is 1. For <code>/reference/types/</code> no type is required. </p>\n<p>Further information per method below.</p>\n<p><strong>Limitations</strong></p>\n<p>Description max length - 40 Characters</p>\n<p>Code max length - 13 Characters</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001 Mandatory fields are missing</li>\n<li>400 / 002 Validation failed. If attempting to update use PATCH method</li>\n<li>404 / 003 Validation failed. Reference type does not exist</li>\n<li>400 / 004 Validation failed. Sanitization of data failed, ensure field lengths are correct</li>\n<li>400 / 005 Validation failed. Reference code does not exist. If attempting to add use POST method.</li>\n</ul>\n<p>Defined below are the endpoints, sample requests and responses. </p>\n","_postman_id":"ff4d1c07-737f-43c8-9494-e3f956fe6cdd"},{"name":"User Defined Fields","item":[{"name":"/udf/user/:udf_type","id":"39d31cfa-4062-41aa-ac04-b34202d3abc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer 9m1zDcUnJrxvkqTfEsTOfQ.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"\",\n    \"text2\": \"\",\n    \"text3\": \"\",\n    \"text4\": \"\",\n    \"text5\": \"\",\n    \"text6\": \"\",\n    \"text7\": \"\",\n    \"text8\": \"\",\n    \"text9\": \"\",\n    \"text10\": \"\",\n    \"text11\": \"\",\n    \"text12\": \"\",\n    \"date1\": \"14-AUG-2017\",\n    \"date2\": \"\",\n    \"user_code\": \"EE\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20","description":"<p><strong>Creating a new UDF Type Record for a user</strong></p>\n<p>Adding a new User record for a UDF Type requires the following fields. UDF Type code is mandatory and specified as part of the URL.</p>\n<p>The rest of the fields are provided as JSON in the request body. Un-used/empty fields should be left blank. Successful inserts results in a JSON Response object with success value of true. Also included in the JSON Response is the ws_id which is the unique Web Service ID that can be used to identify this specific record.</p>\n<p>Fields are sent in the JSON are as in the table below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personnel_no</td>\n<td>Character</td>\n<td>10</td>\n<td>Yes ¹</td>\n</tr>\n<tr>\n<td>appointment_id</td>\n<td>Character</td>\n<td>20</td>\n<td>Yes ¹</td>\n</tr>\n<tr>\n<td>user_code</td>\n<td>Character</td>\n<td>6</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date1</td>\n<td>Date ²</td>\n<td>11</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date2</td>\n<td>Date ²</td>\n<td>11</td>\n<td>No</td>\n</tr>\n<tr>\n<td>text1,text2...text12 ³</td>\n<td>Defined by type</td>\n<td>4000 ¬</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><p>¹ Either <code>personnel_no</code> OR <code>appointment_id</code> are mandatory.</p>\n<p>² Date1 and Date2 are input in the format DD-MON-RRRR.</p>\n<p>³ Text1 to Text12 must ALWAYS be provided. If the field is not being used for the UDF Type use a blank value string e.g. \"\".</p>\n<p>¬ Text1 to Text12 field requirements are defined by the UDF Type configuration in CoreHR. Text fields can be marked as mandatory/optional and of specific data types including: </p>\n<ol>\n<li>Text - to a maximum of 4000 characters long.</li>\n<li>Number - number values only</li>\n<li>Date required to be in the format DD-MON-YYYY.</li>\n<li>List - Based on the allowed list for the UDF Type as configured in CoreHR.</li>\n</ol>\n<p><strong>Response Object</strong>\nSample responses are shown to the right under different conditions.</p>\n<p>A response objects is always provided and within success will either be <code>true</code>. In which case as ws_id (unique web service identifier that allows us to refer back to this record). </p>\n<p>Alternatively, the success value can be <code>false</code> if this is the cause an errorCode and errorMessage are provided. Additional error details - if the error pertains to a specific value in the body - is provided in the validationError object. This will contain one or more JSON objects relating to each specific error. The param_name will contain the field the validation error relates to the field_name is the label of the field used in CoreHR and the <code>message</code> will contain a detailed explanation of what validation is failing.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code. These are shared by all these UDF endpoints and explained in the Error Codes section at the start of the UDF documentation.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","udf","user","AB20"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3d7cafe5-65cb-4a9a-9be5-f25df27fc497","name":"4. User Code example to use pre-defined data in all text fields","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer 9m1zDcUnJrxvkqTfEsTOfQ.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"\",\n    \"text2\": \"\",\n    \"text3\": \"\",\n    \"text4\": \"\",\n    \"text5\": \"\",\n    \"text6\": \"\",\n    \"text7\": \"\",\n    \"text8\": \"\",\n    \"text9\": \"\",\n    \"text10\": \"\",\n    \"text11\": \"\",\n    \"text12\": \"\",\n    \"date1\": \"14-AUG-2017\",\n    \"date2\": \"\",\n    \"user_code\": \"EE\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"Keep-Alive","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Mon, 14 Aug 2017 12:10:39 GMT","description":""},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"f38c5093-1095-4e7e-be35-0074f4d4eb81-0000002c","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"ZtfR7qZUUleahU","key":"__zlcmid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"GA1.2.345263352.1459269949","key":"_ga"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"154209639.534d7e038246e171d1efdb1f4bc83822.1459269952833.1484837065141.1494406860445.32","key":"__hstc"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"534d7e038246e171d1efdb1f4bc83822","key":"hubspotutk"}],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true, \"ws_id\":\"2017081471563097\"}}\n"},{"id":"4c7c9acc-afb5-466f-adae-9855cfcc720e","name":"1. Successful date fields example","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer _QsnRadImZrbh8w9_4B6UA.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"1409000\",\n    \"appointment_id\": \"\",\n    \"text1\": \"27-JAN-2017\",\n    \"text2\": \"24-FEB-2017\",\n    \"text3\": \"31-MAR-2017\",\n    \"text4\": \"28-APR-2017\",\n    \"text5\": \"27-MAY-2017\",\n    \"text6\": \"30-JUN-2017\",\n    \"text7\": \"28-JUL-2017\",\n    \"text8\": \"25-AUG-2017\",\n    \"text9\": \"29-SEP-2017\",\n    \"text10\": \"28-OCT-2017\",\n    \"text11\": \"24-NOV-2017\",\n    \"text12\": \"29-DEC-2017\",\n    \"date1\": \"\",\n    \"date2\": \"\",\n    \"user_code\": \"\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"Keep-Alive","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Fri, 11 Aug 2017 16:05:48 GMT","description":""},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"41431680-ec3d-4690-8100-5e5ec94a3c78-00002f6a","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true, \"ws_id\":\"2017081171563091\"}}\n"},{"id":"a317c73f-2507-4bf2-8d68-01828d4a58b4","name":"3. Sanatization Fail Example","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer _QsnRadImZrbh8w9_4B6UA.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"1409000\",\n    \"appointment_id\": \"\",\n    \"text1\": \"27\",\n    \"text2\": \"24\",\n    \"text3\": \"31\",\n    \"text4\": \"28\",\n    \"text5\": \"27\",\n    \"text6\": \"30\",\n    \"text7\": \"28\",\n    \"text8\": \"25\",\n    \"text9\": \"29\",\n    \"text10\": \"28\",\n    \"text11\": \"24\",\n    \"text12\": \"29\",\n    \"date1\": \"\",\n    \"date2\": \"\",\n    \"user_code\": \"\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"close","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Fri, 11 Aug 2017 16:16:01 GMT","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"41431680-ec3d-4690-8100-5e5ec94a3c78-00002f6f","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[],"responseTime":null,"body":"\n\n      { \"Response\": {\n         \"success\"         : false,\n         \"errorCode\"       : \"998\",\n         \"errorMessage\"    : \"UDF Type validation errors. Review validationError object for more details of data errors for this UDF type.\",\n         \"validationError\"   : [\n\n  {\n    \"param_name\"   : \"text1\",\n    \"field_name\"   : \"COREHR 7600\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text2\",\n    \"field_name\"   : \"text2\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text3\",\n    \"field_name\"   : \"text3\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text4\",\n    \"field_name\"   : \"text4\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text5\",\n    \"field_name\"   : \"text5\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text6\",\n    \"field_name\"   : \"text6\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text7\",\n    \"field_name\"   : \"text7\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text8\",\n    \"field_name\"   : \"text8\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text9\",\n    \"field_name\"   : \"text9\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text10\",\n    \"field_name\"   : \"text10\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text11\",\n    \"field_name\"   : \"text11\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n,\n\n  {\n    \"param_name\"   : \"text12\",\n    \"field_name\"   : \"text12\",\n    \"message\"    :  \"Invalid date in this field. Must be in the format DD-MON-YYYY exactly and must be a valid date.\"\n  }\n]\n      }\n   }\n"},{"id":"b827aa2d-1cf1-4bfa-8b72-4a02668248b2","name":"2. Validation Fail","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer _QsnRadImZrbh8w9_4B6UA.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"1409000\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"27-JAN-2017\",\n    \"text2\": \"24-FEB-2017\",\n    \"text3\": \"31-MAR-2017\",\n    \"text4\": \"28-APR-2017\",\n    \"text5\": \"27-MAY-2017\",\n    \"text6\": \"30-JUN-2017\",\n    \"text7\": \"28-JUL-2017\",\n    \"text8\": \"25-AUG-2017\",\n    \"text9\": \"29-SEP-2017\",\n    \"text10\": \"28-OCT-2017\",\n    \"text11\": \"24-NOV-2017\",\n    \"text12\": \"29-DEC-2017\",\n    \"date1\": \"\",\n    \"date2\": \"\",\n    \"user_code\": \"\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"Keep-Alive","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Fri, 11 Aug 2017 16:14:20 GMT","description":""},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"41431680-ec3d-4690-8100-5e5ec94a3c78-00002f6d","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Provide either a personnel number or an Appointment ID. It is not possible to use both.\" }}\n"}],"_postman_id":"39d31cfa-4062-41aa-ac04-b34202d3abc4"},{"name":"/udf/user/:udf_type","id":"1ca1bdf1-6b56-4fa0-a4a5-add45c44a6e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer 9m1zDcUnJrxvkqTfEsTOfQ.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"\",\n    \"text2\": \"\",\n    \"text3\": \"\",\n    \"text4\": \"\",\n    \"text5\": \"\",\n    \"text6\": \"\",\n    \"text7\": \"\",\n    \"text8\": \"\",\n    \"text9\": \"\",\n    \"text10\": \"\",\n    \"text11\": \"\",\n    \"text12\": \"\",\n    \"date1\": \"14-AUG-2017\",\n    \"date2\": \"\",\n    \"user_code\": \"EE\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20","description":"<p><strong>Updating existing UDF Type Record for a user</strong></p>\n<p>Updating a user record for a UDF Type uses the personnel_no/appoinment_id, date1, date2 and the udf_type to determine if the record is an update. i.e. If there is an existing record(s) with the same person/appointment and date1 and date2 then it is an update and the existing record(s) will be patched (updated) to the new values provided in the JSON code. UDF Type is of course mandatory and specified as part of the URL.</p>\n<p>The rest of the fields are provided as JSON in the request body. Un-used/empty fields should be left blank. Successful updates result in a JSON Response object with success value of true.</p>\n<p>Fields are sent in the JSON are as in the table below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personnel_no</td>\n<td>Character</td>\n<td>10</td>\n<td>Yes ¹</td>\n</tr>\n<tr>\n<td>appointment_id</td>\n<td>Character</td>\n<td>20</td>\n<td>Yes ¹</td>\n</tr>\n<tr>\n<td>user_code</td>\n<td>Character</td>\n<td>6</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date1</td>\n<td>Date ²</td>\n<td>11</td>\n<td>No</td>\n</tr>\n<tr>\n<td>date2</td>\n<td>Date ²</td>\n<td>11</td>\n<td>No</td>\n</tr>\n<tr>\n<td>text1,text2...text12 ³</td>\n<td>Defined by type</td>\n<td>4000 ¬</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><p>¹ Either <code>personnel_no</code> OR <code>appointment_id</code> are mandatory.</p>\n<p>² Date1 and Date2 are input in the format DD-MON-RRRR.</p>\n<p>³ Text1 to Text12 must ALWAYS be provided. If the field is not being used for the UDF Type use a blank value string e.g. \"\".</p>\n<p>¬ Text1 to Text12 field requirements are defined by the UDF Type configuration in CoreHR. Text fields can be marked as mandatory/optional and of specific data types including: </p>\n<ol>\n<li>Text - to a maximum of 4000 characters long.</li>\n<li>Number - number values only</li>\n<li>Date required to be in the format DD-MON-YYYY.</li>\n<li>List - Based on the allowed list for the UDF Type as configured in CoreHR.</li>\n</ol>\n<p><strong>Response Object</strong>\nSample responses are shown to the right under different conditions.</p>\n<p>A response objects is always provided and within success will either be <code>true</code>. In which case as ws_id (unique web service identifier that allows us to refer back to this record). </p>\n<p>Alternatively, the success value can be <code>false</code> if this is the cause an errorCode and errorMessage are provided. Additional error details - if the error pertains to a specific value in the body - is provided in the validationError object. This will contain one or more JSON objects relating to each specific error. The param_name will contain the field the validation error relates to the field_name is the label of the field used in CoreHR and the <code>message</code> will contain a detailed explanation of what validation is failing.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code. These are shared by all these UDF endpoints and explained in the Error Codes section at the start of the UDF documentation.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","udf","user","AB20"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b7a84471-8c99-4a53-91dc-ae11df0c67ef","name":"Successful update using User Code","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Bearer 0nsn4KtX5QlKF4_4q0gNcw.."},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"personnel_no\": \"\",\n    \"appointment_id\": \"JXXXXX-15153\",\n    \"text1\": \"\",\n    \"text2\": \"\",\n    \"text3\": \"\",\n    \"text4\": \"\",\n    \"text5\": \"\",\n    \"text6\": \"\",\n    \"text7\": \"\",\n    \"text8\": \"\",\n    \"text9\": \"\",\n    \"text10\": \"\",\n    \"text11\": \"\",\n    \"text12\": \"\",\n    \"date1\": \"14-AUG-2017\",\n    \"date2\": \"\",\n    \"user_code\": \"EE\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/AB20"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"chrome-extension://aicmkgpgakddgnaphhhpliifpcfhicfo","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"Content-Type, Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Vary","description":""},{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":""},{"name":"connection","key":"connection","value":"Keep-Alive","description":""},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":""},{"name":"date","key":"date","value":"Thu, 17 Aug 2017 15:13:29 GMT","description":""},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":""},{"name":"server","key":"server","value":"Apache","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Origin","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"e491ed87-4cb1-4174-9763-76bbe5667c2b-0000009c","description":""},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":""},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":""}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"ZtfR7qZUUleahU","key":"__zlcmid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"GA1.2.345263352.1459269949","key":"_ga"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"154209639.534d7e038246e171d1efdb1f4bc83822.1459269952833.1484837065141.1494406860445.32","key":"__hstc"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"534d7e038246e171d1efdb1f4bc83822","key":"hubspotutk"}],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"1ca1bdf1-6b56-4fa0-a4a5-add45c44a6e4"},{"name":"/udf/user/","id":"11296120-e4ea-41a7-bfd2-875d7746fa67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/","description":"<p>Web service to get the list of User Defined Field (UDF) records for a particular UDF Type. Mandatory search criteria include:</p>\n<ul>\n<li>udf_type - The UDF code.</li>\n<li>person - The CoreHR Personnel Number for whom records are to be retrieved.\nOptional criteria include:</li>\n<li>appointment_id - To search for details relating to a specific appointment.</li>\n<li>date1 - Commonly used as the Date From field.</li>\n<li>date2 - Commonly used as the Date To field.</li>\n</ul>\n<p>A get request can return many records depending on the criteria poveded and consequently the <code>ws_id</code> value pair is the unique identifier that can be used with other web services to update this specific record.</p>\n<p>Error Codes are documented at the start of the UDF documentation.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","udf","user",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"cf589685-9eec-4d95-86aa-00630f8a931b","name":"Search using all citeria","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","name":"Authorization","value":"Bearer 8N7tv3Kwt2W5_i-B72dWew.."}],"url":{"raw":"{{url}}/ws/{{schema}}/{{version}}/udf/user/?udf_type=AB20&person=1409000&appointment_id=TS0011-2594&date1=01-JAN-2017&date2=31-DEC-2017","host":["{{url}}"],"path":["ws","{{schema}}","{{version}}","udf","user",""],"query":[{"key":"udf_type","value":"AB20"},{"key":"person","value":"1409000"},{"key":"appointment_id","value":"TS0011-2594"},{"key":"date1","value":"01-JAN-2017"},{"key":"date2","value":"31-DEC-2017"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"connection","key":"connection","value":"Keep-Alive","description":"Options that are desired for the connection"},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":"Custom header"},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":"The mime type of this content"},{"name":"date","key":"date","value":"Thu, 17 Aug 2017 14:27:44 GMT","description":"The date and time that the message was sent"},{"name":"etag","key":"etag","value":"\"MQgB6VKjaT8lHDgADQKxxd0zqZ1ssI3lKuh3MursJBsVKHrOsHcxUeOJWWw6Lq7KQJ4hi5sQMuu9orqF0glhNg==\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"keep-alive","key":"keep-alive","value":"timeout=5, max=100","description":"Custom header"},{"name":"server","key":"server","value":"Apache","description":"A name for the server"},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"e491ed87-4cb1-4174-9763-76bbe5667c2b-0000008c","description":"Custom header"},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":"Custom header"},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"ZtfR7qZUUleahU","key":"__zlcmid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"GA1.2.345263352.1459269949","key":"_ga"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"154209639.534d7e038246e171d1efdb1f4bc83822.1459269952833.1484837065141.1494406860445.32","key":"__hstc"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"534d7e038246e171d1efdb1f4bc83822","key":"hubspotutk"}],"responseTime":null,"body":"\n{ \"items\" : [\n{\"udf_type\":\"AB20\",\"person\": \"1409000\",\"appointment_id\": \"TS0011-2594\",\"ws_id\": \"2017081171563091\",\"user_code\": \"AB20\",\"date1\": \"01-JAN-2017\",\"date2\": \"31-DEC-2017\",\"text1\": \"27-JAN-2017\",\"text2\": \"24-FEB-2017\",\"text3\": \"31-MAR-2017\",\"text4\": \"28-APR-2017\",\"text5\": \"27-MAY-2017\",\"text6\": \"30-JUN-2017\",\"text7\": \"28-JUL-2017\",\"text8\": \"25-AUG-2017\",\"text9\": \"29-SEP-2017\",\"text10\": \"28-OCT-2017\",\"text11\": \"24-NOV-2017\",\"text12\": \"29-DEC-2017\",\"last_update\": \"17-AUG-2017 12:46:49\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://devapi.corehr.com/ws/frame/corehr/v1/udf/user/\"\n      }\n    ]\n}\n"},{"id":"db5ef5f2-39d6-4208-b535-f637a6ea02f1","name":"Missing Person parameter","originalRequest":{"method":"GET","header":[{"key":"Authorization","name":"Authorization","value":"Bearer _E4Pl9nxSkcJFbic2dxD8w.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/udf/user/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, no-cache, no-store, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"connection","key":"connection","value":"close","description":"Options that are desired for the connection"},{"name":"content-security-policy","key":"content-security-policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","description":"Custom header"},{"name":"content-type","key":"content-type","value":"application/json; charset=UTF-8","description":"The mime type of this content"},{"name":"date","key":"date","value":"Thu, 17 Aug 2017 11:54:53 GMT","description":"The date and time that the message was sent"},{"name":"etag","key":"etag","value":"\"hu/EykO6P9EsmiOfI5hQk+9yi5r2AxYFcmeD8ppL8ujowI4GmtSfFHQi+xgzudcWmF0pxNbJHLHEWwepH2J8/A==\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"server","key":"server","value":"Apache","description":"A name for the server"},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"x-oracle-dms-ecid","key":"x-oracle-dms-ecid","value":"e491ed87-4cb1-4174-9763-76bbe5667c2b-00000044","description":"Custom header"},{"name":"x-oracle-dms-rid","key":"x-oracle-dms-rid","value":"0","description":"Custom header"},{"name":"x-xss-protection","key":"x-xss-protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"ZtfR7qZUUleahU","key":"__zlcmid"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"GA1.2.345263352.1459269949","key":"_ga"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"154209639.534d7e038246e171d1efdb1f4bc83822.1459269952833.1484837065141.1494406860445.32","key":"__hstc"},{"expires":"Invalid Date","hostOnly":false,"httpOnly":false,"domain":".corehr.com","path":"/","secure":false,"session":false,"value":"534d7e038246e171d1efdb1f4bc83822","key":"hubspotutk"}],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"013\",\"errorMessage\" :\"Person is a mandatory field.\" }}\n"}],"_postman_id":"11296120-e4ea-41a7-bfd2-875d7746fa67"}],"id":"7217f2b4-40c1-4ca9-9fb7-b898853fafb1","description":"<p>The User Defined Fields (UDF) module provides ability to insert/update and view the UDF records for a CoreHR employee. </p>\n<p>The list of UDF Types available is as configured in Core Personnel in the User Defined Fields under the Employee option i.e. those UDF types that related to a specific employee/user.</p>\n<p>These UDF Types must also be white listed using the Security option in Portal to allow them to be called via this Web Service.</p>\n<p><strong>Constraints, Limitations and Validation</strong></p>\n<p>For all calls (insert/update/get) the personnel no. and the UDF Type code must be specified at a minimum. As previously mentioned the UDF Type must have been added to the whitelist to be accessed in any way.</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>404 / 000  The UDF Type does not exist in Core as a valid UDF Type for an Employee/User.</li>\n<li>400 / 001  A Personnel Number or an Appointment ID must be provided.</li>\n<li>404 / 002  Provide <em>either</em> a personnel number <em>or</em> an Appointment ID. It is not possible to use both.</li>\n<li>404 / 003 There is no CoreHR personnel/user account associated with the personnel number provided.</li>\n<li>404 / 004 The Appointment ID is invalid.</li>\n<li>404 / 006 UDF Type with these details does not exist for user, consider using POST to create.</li>\n<li>404 / 007 This UDF Type is not whitelisted for web services.</li>\n<li>400 / 008 When using User Reference Data - by specifying a user_code - then do  <em>not</em>  provide values in parameters text1 to text12 i.e. pass in empty values in text1..text12.</li>\n<li>404 / 009 This User Reference Data - as specified by the user_code - is not a a valid User Code for this UDF Type.</li>\n<li>404 / 010 There is no UDF record of this type for this person with these details to update. Use POST if you want to insert a record.</li>\n<li>400 / 011 Date1 field when used must be provided in the date format DD-MON-YYY.</li>\n<li>400 / 012 Date2 field when used must be provided in the date format DD-MON-YYY.</li>\n<li>400 / 013 Person is a mandatory field in this context.</li>\n<li>400 / 014 UDF Type is a mandatory field in this context.</li>\n</ul>\n","_postman_id":"7217f2b4-40c1-4ca9-9fb7-b898853fafb1"}],"id":"39504931-d8ac-4332-81ce-1d82347d0990","_postman_id":"39504931-d8ac-4332-81ce-1d82347d0990","description":""},{"name":"V24","item":[{"name":"Clocking","item":[{"name":"/clocking/user/","id":"b419490c-4fa5-4a7b-ae92-12e6aa6ddc97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer LBmqAWEBeoLdkbwNkJwPUQ.."}],"body":{"mode":"raw","raw":"{\n\"person\" : \"\", \"badge_no\": \"4752066\", \n\"clock_date_time\" : \"2017-02-15 08:56 +00:00\",\n\"record_type\"     : \"\", \n\"function_code\"   : \"COST\", \n\"function_value\"  : \"2\",  \n\"device_id\"       : \"D123456789-1234567\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/clocking/user/","description":"<p>Create a new clocking record in the clocking module for subsequent transfer into CoreTime. On successful completion, users will have submitted a new clocking record which subject subsequent CoreTime validation will be transferred into CoreTime the next time the interface runs.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<p><strong>person</strong></p>\n<p>Is an CoreHR employee id also known as <code>personnel number</code> although it is alphanumeric.</p>\n<p><strong>badge_no</strong></p>\n<p>Is the badge number that the CoreHR employee uses. Badge must be valid and linked to a valid CoreHR employee for the clocking to interface into CoreTime.</p>\n<p><strong>clock_date_time</strong></p>\n<p>The Date and Time that this particular clocking is for. Required to be in YYYY-MM-DD HH24:MI TZH:TZM format. Mandatory.</p>\n<p><strong>record_type</strong></p>\n<p>The Transactional event associated with the clocking. Optional but if specified must be one of:</p>\n<ul>\n<li><code>B0</code>     <em>Undefined.</em></li>\n<li><code>B1</code>     <em>In.</em></li>\n<li><code>B2</code>     <em>Out.</em></li>\n<li><code>B3</code>     <em>Business Absence.</em></li>\n</ul>\n<p><strong>function_code</strong></p>\n<p>Optional function code but if specified must be one of:</p>\n<ul>\n<li><code>CALLIN</code></li>\n<li><code>UNSBRK</code></li>\n<li><code>STD</code></li>\n<li><code>TNAIN</code></li>\n<li><code>CALLOT</code></li>\n<li><code>TNAOUT</code></li>\n<li><code>OVERTM</code></li>\n<li><code>COST</code></li>\n</ul>\n<p><strong>function_value</strong></p>\n<p>Optional function_value relating to the above code.</p>\n<p><strong>device_id</strong></p>\n<p>Optional free text to describe the Device ID where the clocking was recorded e.g. Main Entrance Device.</p>\n<p><strong>Mandatory</strong></p>\n<ul>\n<li>Either person or badge_no - if both are provided then badge_no takes precedence.</li>\n<li>clock_date_time</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","clocking","user",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"77cc47c0-ec44-4022-b941-b4af31cb1534","name":"200 - Success","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json","description":"The mime type of this content"},{"key":"Authorization","value":"Bearer LBmqAWEBeoLdkbwNkJwPUQ.."}],"body":{"mode":"raw","raw":"{\n\"person\" : \"\", \"badge_no\": \"4752066\", \n\"clock_date_time\" : \"2017-02-15 08:56 +00:00\",\n\"record_type\"     : \"\", \n\"function_code\"   : \"COST\", \n\"function_value\"  : \"2\",  \n\"device_id\"       : \"D123456789-1234567\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/clocking/user/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 15 May 2017 14:48:42 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"b419490c-4fa5-4a7b-ae92-12e6aa6ddc97"}],"id":"2cb11723-e56e-4afe-a367-58bf4f44b4ff","description":"<p>The clocking module provides ability to insert Core Time clocking records for a CoreHR employee.</p>\n<p><strong>Constraints, Limitations, Mandatory and Validation</strong></p>\n<p>The clocking module is designed to handle a large volume of data and so validation at the point of insertion is limited to all required fields being present and the data in them being of the correct format, length and precision. \nAs such duplicate records, expired badges, invalid personnel etc.. will be received by the clocking module provided all data is in the correct format and length. The validation process is completed by the Core Time Interface. </p>\n<p>Fields are as in the table below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Length</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Person</td>\n<td>Character</td>\n<td>10</td>\n</tr>\n<tr>\n<td>Badge No</td>\n<td>Number</td>\n<td>18</td>\n</tr>\n<tr>\n<td>Clock Date Time</td>\n<td>Date YYYY-MM-DD HH24:MI TZH:TZM</td>\n<td>26</td>\n</tr>\n<tr>\n<td>Record Type</td>\n<td>Character</td>\n<td>2</td>\n</tr>\n<tr>\n<td>Function Code</td>\n<td>Character</td>\n<td>6</td>\n</tr>\n<tr>\n<td>Function Value</td>\n<td>Character</td>\n<td>18</td>\n</tr>\n<tr>\n<td>Device ID</td>\n<td>Character</td>\n<td>100</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: Clock Date Time is mandatory and either Person or Badge No must also be provided.</p>\n<p><strong>Interface to CoreTime and Validation</strong></p>\n<p>The validation process is completed at the point of interface to CoreTime. It is during this process that duplicates are rejected and CoreTime related validation is performed. Specifically:</p>\n<ul>\n<li>Person does not exist as CoreHR employee</li>\n<li>Badge does not exist or is not valid</li>\n<li>Record Type is valid</li>\n<li>Function Code is valid</li>\n<li>Duplicate Clocking - defined as where a clocking already exists in CoreTime for this person at the same date/time.</li>\n</ul>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001  Both badge and person fields are not populated. One must be populated.</li>\n<li>400 / 002  clock_date_time field is not populated.</li>\n<li>400 / 003  clock_date_time field is not in the correct format.</li>\n<li>404 / 004 Non standard database exception inserting this clocking.</li>\n<li>404 / 005 record_type is invalid. Must be either empty, B0, B1, B2 or B3.</li>\n<li>400 / 006  function_code is invalid. Must be either empty, CALLIN, UNSBRK, STD, TNAIN, CALLOT, TNAOUT, OVERTM or COST.</li>\n<li>400 / 999  Basic sanitization error. Where a filed is not the correct data type or length or the data is deemed to be unsafe for recording within the system. Details of the fields failing sanitization are returned in the sanatizeError object in the Response.</li>\n</ul>\n","_postman_id":"2cb11723-e56e-4afe-a367-58bf4f44b4ff"},{"name":"Contact","item":[{"name":"/contact/","id":"64350711-1246-4790-b0d9-8215a0026b97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer p7Zy3YYr3Yck6yOVXUYPaQ.."}],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/","description":"<p>Get a list of registered / whitelisted contacts. Tenant has an ability to define contacts available for creating / updating. A tenant may not allow all contacts to be updated or created, this base URI provides the list of valid contact types. In cases where server returns validation errors, refer to this list.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8ca7d6b8-97dc-4bec-ba17-ea4ab24dba32","name":"200 - Response OK","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:00:52 GMT","name":"Date","description":""},{"key":"ETag","value":"\"uwlnRwLu1teq90JMcLw3B68+EOyVApqwZ0O87dUiP4G6rHtTNS14dRJz0YaKyE8k7RmWTnrUodwqt3OwuAMICA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"EMAIL\", \"length\": 80, \"dataType\" : \"EMAIL\"}\n,\n{\"type\":\"MOBILE\", \"length\": 20, \"dataType\" : \"MOB\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/\"\n      }\n    ]\n}\n"}],"_postman_id":"64350711-1246-4790-b0d9-8215a0026b97"},{"name":"/contact/:type/","id":"0ef4469e-618d-4049-bce3-518be5f3cdfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/EMAIL/","description":"<p>Get a list of all users for a particular contact type. Typically used to get a list of all users <code>email</code> addresses. </p>\n<p>This service will only return whitelisted contact types. A tenant may decide to only whitelist a subset of all contacts e.g. EMAIL is whitelisted while MOBILE is not. Only accounts where the contact type is populated are returned. To find accounts with missing contact information use the web service /contact/missing/:type</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","EMAIL",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"27b1221f-af1e-4c65-9cff-557e7f007a15","name":"404 - Invalid Contact type","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/MOB/"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 15 Nov 2016 19:51:28 GMT","name":"Date","description":""},{"key":"ETag","value":"\"WIZPZbpKwxRRgssW8lwH34floeFnPJzhb0Pc1fxiiWRv2Gqy41LgVu19up1qzvTBBMK6i635jWpyDaAsi5TVnQ==-gzip\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Contact type does not exist\" }}\n"},{"id":"6a44bb83-4920-485a-b199-a6469d4b7004","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/EMAIL/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 15 Nov 2016 19:46:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"6iQZlpyFhjCcA3IiwUAR9L8mLF0w4tdo6M6kmFN3AV+v32sX/fFbqqgk/bMg7pMmUv2y1+9/cnGbLcj57836dw==-gzip\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"coreHRId\":\"003676\", \"value\": \"webservices003676@corehr.com\"}\n,\n{\"coreHRId\":\"003674\", \"value\": \"webservices003674@corehr.com\"}\n,\n{\"coreHRId\":\"003332\", \"value\": \"webservices003332@corehr.com\"}\n,\n{\"coreHRId\":\"003333\", \"value\": \"webservices003333@corehr.com\"}\n,\n{\"coreHRId\":\"INT009\", \"value\": \"webservicesINT009@corehr.com\"}\n,\n{\"coreHRId\":\"INT010\", \"value\": \"webservicesINT010@corehr.com\"}\n,\n{\"coreHRId\":\"600100\", \"value\": \"webservices600100@corehr.com\"}\n,\n{\"coreHRId\":\"600101\", \"value\": \"webservices600101@corehr.com\"}\n,\n{\"coreHRId\":\"600102\", \"value\": \"webservices600102@corehr.com\"}\n,\n{\"coreHRId\":\"7777\", \"value\": \"webservices7777@corehr.com\"}\n,\n{\"coreHRId\":\"C876876\", \"value\": \"webservicesC876876@corehr.com\"}\n,\n{\"coreHRId\":\"003193\", \"value\": \"webservices003193@corehr.com\"}\n,\n{\"coreHRId\":\"003528\", \"value\": \"webservices003528@corehr.com\"}\n,\n{\"coreHRId\":\"gh1234\", \"value\": \"webservicesgh1234@corehr.com\"}\n,\n{\"coreHRId\":\"JG1234\", \"value\": \"webservicesJG1234@corehr.com\"}\n,\n{\"coreHRId\":\"002145\", \"value\": \"webservices002145@corehr.com\"}\n,\n{\"coreHRId\":\"002144\", \"value\": \"webservices002144@corehr.com\"}\n,\n{\"coreHRId\":\"002146\", \"value\": \"webservices002146@corehr.com\"}\n,\n{\"coreHRId\":\"000660\", \"value\": \"webservices000660@corehr.com\"}\n,\n{\"coreHRId\":\"002626\", \"value\": \"webservices002626@corehr.com\"}\n,\n{\"coreHRId\":\"000740\", \"value\": \"webservices000740@corehr.com\"}\n,\n{\"coreHRId\":\"000936\", \"value\": \"webservices000936@corehr.com\"}\n,\n{\"coreHRId\":\"000830\", \"value\": \"webservices000830@corehr.com\"}\n,\n{\"coreHRId\":\"000831\", \"value\": \"webservices000831@corehr.com\"}\n,\n{\"coreHRId\":\"000880\", \"value\": \"webservices000880@corehr.com\"}\n,\n{\"coreHRId\":\"1000491\", \"value\": \"webservices1000491@corehr.com\"}\n,\n{\"coreHRId\":\"000014\", \"value\": \"webservices000014@corehr.com\"}\n,\n{\"coreHRId\":\"000115\", \"value\": \"webservices000115@corehr.com\"}\n,\n{\"coreHRId\":\"000012\", \"value\": \"webservices000012@corehr.com\"}\n,\n{\"coreHRId\":\"000015\", \"value\": \"webservices000015@corehr.com\"}\n,\n{\"coreHRId\":\"000296\", \"value\": \"webservices000296@corehr.com\"}\n,\n{\"coreHRId\":\"000297\", \"value\": \"webservices000297@corehr.com\"}\n,\n{\"coreHRId\":\"000328\", \"value\": \"webservices000328@corehr.com\"}\n,\n{\"coreHRId\":\"000590\", \"value\": \"webservices000590@corehr.com\"}\n,\n{\"coreHRId\":\"000227\", \"value\": \"webservices000227@corehr.com\"}\n,\n{\"coreHRId\":\"001873\", \"value\": \"webservices001873@corehr.com\"}\n,\n{\"coreHRId\":\"000275\", \"value\": \"webservices000275@corehr.com\"}\n,\n{\"coreHRId\":\"CUT-001\", \"value\": \"webservicesCUT-001@corehr.com\"}\n,\n{\"coreHRId\":\"END-001\", \"value\": \"webservicesEND-001@corehr.com\"}\n,\n{\"coreHRId\":\"000286\", \"value\": \"webservices000286@corehr.com\"}\n,\n{\"coreHRId\":\"001987\", \"value\": \"webservices001987@corehr.com\"}\n,\n{\"coreHRId\":\"000180\", \"value\": \"webservices000180@corehr.com\"}\n,\n{\"coreHRId\":\"001993\", \"value\": \"webservices001993@corehr.com\"}\n,\n{\"coreHRId\":\"000598\", \"value\": \"webservices000598@corehr.com\"}\n,\n{\"coreHRId\":\"000601\", \"value\": \"webservices000601@corehr.com\"}\n,\n{\"coreHRId\":\"002037\", \"value\": \"webservices002037@corehr.com\"}\n,\n{\"coreHRId\":\"GH992\", \"value\": \"webservicesGH992@corehr.com\"}\n,\n{\"coreHRId\":\"000119\", \"value\": \"webservices000119@corehr.com\"}\n,\n{\"coreHRId\":\"000124\", \"value\": \"webservices000124@corehr.com\"}\n,\n{\"coreHRId\":\"000587\", \"value\": \"webservices000587@corehr.com\"}\n,\n{\"coreHRId\":\"000588\", \"value\": \"webservices000588@corehr.com\"}\n,\n{\"coreHRId\":\"000592\", \"value\": \"webservices000592@corehr.com\"}\n,\n{\"coreHRId\":\"000594\", \"value\": \"webservices000594@corehr.com\"}\n,\n{\"coreHRId\":\"002315\", \"value\": \"webservices002315@corehr.com\"}\n,\n{\"coreHRId\":\"000904\", \"value\": \"webservices000904@corehr.com\"}\n,\n{\"coreHRId\":\"002261\", \"value\": \"webservices002261@corehr.com\"}\n,\n{\"coreHRId\":\"002262\", \"value\": \"webservices002262@corehr.com\"}\n,\n{\"coreHRId\":\"CUT-012\", \"value\": \"webservicesCUT-012@corehr.com\"}\n,\n{\"coreHRId\":\"002248\", \"value\": \"webservices002248@corehr.com\"}\n,\n{\"coreHRId\":\"002249\", \"value\": \"webservices002249@corehr.com\"}\n,\n{\"coreHRId\":\"002250\", \"value\": \"webservices002250@corehr.com\"}\n,\n{\"coreHRId\":\"002367\", \"value\": \"webservices002367@corehr.com\"}\n,\n{\"coreHRId\":\"002368\", \"value\": \"webservices002368@corehr.com\"}\n,\n{\"coreHRId\":\"002369\", \"value\": \"webservices002369@corehr.com\"}\n,\n{\"coreHRId\":\"000826\", \"value\": \"webservices000826@corehr.com\"}\n,\n{\"coreHRId\":\"000897\", \"value\": \"webservices000897@corehr.com\"}\n,\n{\"coreHRId\":\"001128\", \"value\": \"webservices001128@corehr.com\"}\n,\n{\"coreHRId\":\"002629\", \"value\": \"webservices002629@corehr.com\"}\n,\n{\"coreHRId\":\"002697\", \"value\": \"webservices002697@corehr.com\"}\n,\n{\"coreHRId\":\"000934\", \"value\": \"webservices000934@corehr.com\"}\n,\n{\"coreHRId\":\"002624\", \"value\": \"webservices002624@corehr.com\"}\n,\n{\"coreHRId\":\"000290\", \"value\": \"webservices000290@corehr.com\"}\n,\n{\"coreHRId\":\"000837\", \"value\": \"webservices000837@corehr.com\"}\n,\n{\"coreHRId\":\"002444\", \"value\": \"webservices002444@corehr.com\"}\n,\n{\"coreHRId\":\"002685\", \"value\": \"webservices002685@corehr.com\"}\n,\n{\"coreHRId\":\"002227\", \"value\": \"webservices002227@corehr.com\"}\n,\n{\"coreHRId\":\"002169\", \"value\": \"webservices002169@corehr.com\"}\n,\n{\"coreHRId\":\"000849\", \"value\": \"webservices000849@corehr.com\"}\n,\n{\"coreHRId\":\"000808\", \"value\": \"webservices000808@corehr.com\"}\n,\n{\"coreHRId\":\"002091\", \"value\": \"webservices002091@corehr.com\"}\n,\n{\"coreHRId\":\"1010101010\", \"value\": \"webservices1010101010@corehr.com\"}\n,\n{\"coreHRId\":\"20202020\", \"value\": \"webservices20202020@corehr.com\"}\n,\n{\"coreHRId\":\"GM967\", \"value\": \"webservicesGM967@corehr.com\"}\n,\n{\"coreHRId\":\"GM969\", \"value\": \"webservicesGM969@corehr.com\"}\n,\n{\"coreHRId\":\"DB678\", \"value\": \"webservicesDB678@corehr.com\"}\n,\n{\"coreHRId\":\"002651\", \"value\": \"webservices002651@corehr.com\"}\n,\n{\"coreHRId\":\"gh23\", \"value\": \"webservicesgh23@corehr.com\"}\n,\n{\"coreHRId\":\"6633228\", \"value\": \"webservices6633228@corehr.com\"}\n,\n{\"coreHRId\":\"250\", \"value\": \"webservices250@corehr.com\"}\n,\n{\"coreHRId\":\"260\", \"value\": \"webservices260@corehr.com\"}\n,\n{\"coreHRId\":\"002705\", \"value\": \"webservices002705@corehr.com\"}\n,\n{\"coreHRId\":\"002103\", \"value\": \"webservices002103@corehr.com\"}\n,\n{\"coreHRId\":\"000950\", \"value\": \"webservices000950@corehr.com\"}\n,\n{\"coreHRId\":\"002756\", \"value\": \"webservices002756@corehr.com\"}\n,\n{\"coreHRId\":\"002652\", \"value\": \"webservices002652@corehr.com\"}\n,\n{\"coreHRId\":\"jg1234\", \"value\": \"webservicesjg1234@corehr.com\"}\n,\n{\"coreHRId\":\"DF5609\", \"value\": \"webservicesDF5609@corehr.com\"}\n,\n{\"coreHRId\":\"002289\", \"value\": \"webservices002289@corehr.com\"}\n,\n{\"coreHRId\":\"002727\", \"value\": \"webservices002727@corehr.com\"}\n,\n{\"coreHRId\":\"000179\", \"value\": \"webservices000179@corehr.com\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://localhost/ws/tenant/corehr/v1/contact/EMAIL/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"https://localhost/ws/tenant/corehr/v1/contact/EMAIL/?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"0ef4469e-618d-4049-bce3-518be5f3cdfb"},{"name":"/contact/user/:person/","id":"34df58df-1127-49a9-a59d-167e00c2bfbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/","description":"<p>This web service returns all contacts for the <code>person</code>. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"084f17dd-aa56-4321-80a0-9b47693b5e76","name":"200 - No User","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/101/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:01:57 GMT","name":"Date","description":""},{"key":"ETag","value":"\"O9HyTNymWfaETgxd2+q0Z8TsEInPQq/SaTstLGNYuk0ULMG4HwXQCLduJMqhelPi2gIHQzv5MIpmEwSbtWPRpA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 0,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/101/\"\n      }\n    ]\n}\n"},{"id":"ddc83788-e5c0-433d-bf4b-e22b04116524","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:07:46 GMT","name":"Date","description":""},{"key":"ETag","value":"\"LhGBatBRxgaYUmBtTmvXvChPohvGeovn7W4uxHWhB4+QRQzr2hMGTwHgTVmNBSC5LBBs5caMKtNgcUPRq//F4g==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"EMAIL\", \"value\": \"darragh.michael.duffy@corehr.com\"}\n,\n{\"type\":\"MOBILE\", \"value\": \"+353 86 879394365\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 2,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/100/\"\n      }\n    ]\n}\n"}],"_postman_id":"34df58df-1127-49a9-a59d-167e00c2bfbc"},{"name":"/contact/user/:person/:type","id":"b8b214d0-b3ab-4afe-826c-8e3da0da9287","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service returns a specific contact for an associated <code>person</code> and <code>type</code>. Refer to /contact/ for a complete list of contacts available.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"58819442-54de-44c2-b08a-76e47be87fe5","name":"200 - Success - EMAIL","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:09:26 GMT","name":"Date","description":""},{"key":"ETag","value":"\"Pc4vB09OL4Wki+1My6sbuyspVqD9UgcaBW5WwkJt7G+pjphL6HqjfPhY3QJdY9rBBhTQiZpy3yiq/0Ss9VN8Og==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"EMAIL\", \"value\": \"darragh.michael.duffy@corehr.com\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/100/EMAIL\"\n      }\n    ]\n}\n"},{"id":"682271bd-3c99-4ac2-b3a1-d9dc577b4411","name":"200 - No User","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/101/MOBILE"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:10:07 GMT","name":"Date","description":""},{"key":"ETag","value":"\"ay7m5ryBPHhMsOJ1KjoM5eH7l1NGTfBQtHtRz3pe6vAnViut/MxWuBYfXJAq8eIwVG9Mdw++NsyHV8rF1b+n9w==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 0,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/101/MOBILE\"\n      }\n    ]\n}\n"},{"id":"69291c7e-f52f-48e6-ac84-089acf29ffc5","name":"200 - Success - MOBILE","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/MOBILE"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:09:49 GMT","name":"Date","description":""},{"key":"ETag","value":"\"scMWmM8Da5PAtTmblpgR7OkNQV1BzUC3oAQTxAwklCyu4Ho/oxtaOFLKAD3gitBDb+yEJe9jVdbxDOQC/3ADBw==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"MOBILE\", \"value\": \"+353 86 879394365\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/user/100/MOBILE\"\n      }\n    ]\n}\n"}],"_postman_id":"b8b214d0-b3ab-4afe-826c-8e3da0da9287"},{"name":"/contact/user/:person/:type","id":"b7662db3-1c6c-41d0-ba36-0a172acb61d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"value\" :\"darragh.duffy@corehr.com\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service provides ability to create a new contact type for a user. The contact type should not already exist for this account. As previously noted a tenant may whitelist contact types. Refer to /contact/ for a complete list of contacts available.</p>\n<p>The value of the contact type must be provided in the request body as JSON e.g.</p>\n<blockquote>\n<p>{\"value\" :\"<a href=\"mailto:darragh.james.duffy@corehr.com\">darragh.james.duffy@corehr.com</a>\"}</p>\n</blockquote>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"33be61ea-5352-4fb7-b248-ca4580dd21c3","name":"400 - Bad Request - Error Code 006","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:41:20 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"006\",\"errorMessage\" :\"Validation failed. Existing contact for user, use PATCH to update\" }}\n"},{"id":"7e2e605a-c04e-4f0b-86f0-878a749108bc","name":"400 - Bad Request - Error Code 005","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/PHONE"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:44:28 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"005\",\"errorMessage\" :\"Validation failed. Ensure contact type is allowed and has correct format\" }}\n"},{"id":"84c32f04-1f0a-4edf-91e4-57a0ef12d0f4","name":"404 - Not Found - Error Code 003","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/7788/EMAIL"},"status":"Not Found","code":404,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:43:31 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"003\",\"errorMessage\" :\"Validation failed. User account does not exist\" }}\n"},{"id":"a28450bb-eb5c-48a9-a71b-cd08373129cd","name":"400 - Bad Request - Error Code 001","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:42:45 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing\" }}\n"},{"id":"e2a69a84-d9ea-4234-86fa-4170ebe18eb7","name":"201 - Success - Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.james.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 30 Sep 2016 19:40:49 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"b7662db3-1c6c-41d0-ba36-0a172acb61d9"},{"name":"/contact/user/:person/:type","id":"b6174b3a-fd8a-4941-861c-ddf1bd326722","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"value\" :\"darragh.james.duffy@corehr.com\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service provides ability to patch / update a contact type for a user. The contact type <strong>must</strong> already exist for this account. As previously noted a tenant may whitelist contact types. Refer to /contact/ for a complete list of contacts available.</p>\n<p>The value of the contact type must be provided in the request body as JSON e.g.</p>\n<blockquote>\n<p>{\"value\" :\"<a href=\"mailto:darragh.james.duffy@corehr.com\">darragh.james.duffy@corehr.com</a>\"}</p>\n</blockquote>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3d332aa6-6225-4bd9-b8d1-56f0d10199c6","name":"400 - Bad Request - Error Code 001","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:46:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing\" }}\n"},{"id":"84659352-21f5-45cc-9c30-d0dfec425565","name":"201- Success - Created","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:45:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"86d107d7-2a68-411f-ab04-1abe886ce474","name":"404 - Not Found - Error Code 002","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/Phone"},"status":"Not Found","code":404,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:48:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. Contact does not exist\" }}\n"},{"id":"abed0c67-263e-4036-ba81-3036f23fb817","name":"404 - Not Found - Error Code 003","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n\"value\" :\"darragh.michael.duffy@corehr.com\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/7788/EMAIL"},"status":"Not Found","code":404,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 30 Sep 2016 19:47:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"003\",\"errorMessage\" :\"Validation failed. User account does not exist\" }}\n"}],"_postman_id":"b6174b3a-fd8a-4941-861c-ddf1bd326722"},{"name":"/contact/user/:person/:type","id":"4b6b2429-265a-4649-9a25-6793f8dd8f86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL","description":"<p>This web service provides ability to delete a contact from a users / employees profile. The contact type should already exist for this account. As previously noted a tenant may whitelist contact types. Refer to /contact/ for a complete list of contacts available. All contact types are case sensitive.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","user","100","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5033ae86-474e-4237-b5d7-728dd1288a03","name":"200 - Response OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/ws/{{schema}}/{{version}}/contact/user/100/EMAIL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 11 Nov 2016 14:46:13 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"4b6b2429-265a-4649-9a25-6793f8dd8f86"},{"name":"/contact/missing/:type","id":"eb7323b8-8aca-4cde-86b2-76411703fda1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/missing/EMAIL","description":"<p>This web service provides ability to list user accounts with missing contact types. For example find all users with a missing <code>EMAIL</code> contact.</p>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","contact","missing","EMAIL"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"dbe79bd2-adc4-4e8f-b2a7-c2756f127a10","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/contact/missing/EMAIL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:20:51 GMT","name":"Date","description":""},{"key":"ETag","value":"\"CxtmnGZgL6Fnj+S5DOnKKr5OPrcNWUF/Tp/4y80gZt+7x/+jHBqLIZD6vvrFUddPuXIu33rL+abP5e3np94DYA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"corehrid\":\"000003703\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003704\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003706\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003707\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003708\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003709\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003710\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003711\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003712\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003713\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003714\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003715\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003716\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003717\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003718\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003720\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003721\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003722\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000003723\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000013\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000017\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000018\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000020\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000022\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000023\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000025\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000027\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000028\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000030\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000031\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000032\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000035\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000036\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000038\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000039\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000041\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000042\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000043\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000044\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000045\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000046\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000047\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000048\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000049\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000050\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000051\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000052\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000053\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000054\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000055\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000056\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000057\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000058\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000059\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000060\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000061\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000063\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000064\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000065\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000066\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000067\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000069\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000070\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000071\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000072\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000073\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000078\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000080\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000081\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000082\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000084\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000085\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000086\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000088\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000090\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000091\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000092\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000093\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000094\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000096\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000097\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000098\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000099\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000100\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"0001000\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000101\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000102\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000103\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000105\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000106\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000107\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000108\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000109\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000110\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000111\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000112\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000113\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000114\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000118\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n,\n{\"corehrid\":\"000120\", \"firstname\": \"Web-Services\", \"surname\" : \"CoreHR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/missing/EMAIL\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/contact/missing/EMAIL?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"eb7323b8-8aca-4cde-86b2-76411703fda1"}],"id":"b621468f-00ff-4eb0-a73c-e762da0e2b48","description":"<p>Contact module provides ability to interact with contact information associated with an account in CoreHR. Different contact types exist and can be defined by a tenant e.g EMAIL, MOBILE etc. Not all tenants have the same list of contacts i.e. each tenant can define a whitelist of contacts exposed to web services.</p>\n<p><strong>Contraints, Limitations &amp; Mandatory</strong></p>\n<p>The contact module is case senstive, no process converts the contact type provided to upper or lower case. You must ensure you have set the case correctly, otherwise no data will be returned. Within CoreHR contact types are typically uppercase.</p>\n<p>Person is mandatory, person represents users unique CoreHR ID, this is often referenced as <code>personnel number</code></p>\n<p><strong>Optionally</strong> </p>\n<p>Provide the type of contact e.g. <code>EMAIL</code> to get users associated email address.</p>\n<p>In cases where <code>type</code> is not specified all contact details are returned associated with employee.</p>\n<p>In Summary contact provides ability to</p>\n<ul>\n<li>Enumerate users contact information</li>\n<li>Obtain a specific contact type </li>\n<li>Update / Patch an existing contact type</li>\n<li>Assign a new contact type to a user</li>\n</ul>\n<p><strong>Error Codes</strong></p>\n<p>Note <code>type</code> is case senstive, no process converts the type provided into upper or lower case. You must ensure you have set the case correctly, otherwise no data will be returned. </p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001  Mandatory fields are missing</li>\n<li>404 / 002  Validation failed. Contact does not exist</li>\n<li>404 / 003  Validation failed. User account does not exist</li>\n<li>400 / 005 Validation failed. Ensure contact type is allowed and has correct format</li>\n<li>400 / 006  Validation failed. Existing contact for user, use PATCH to update</li>\n<li>404 / 007  Contact type does not exist for user, consider using POST to create</li>\n</ul>\n<p><strong>Note</strong> </p>\n<p>Where a contact exists within CoreHR, this does not mean an account in CoreHR has this contact assigned, e.g. not every account would have a mobile / cell number. Keep this in mind if you attempt to PATCH a contact type and server responds with a validation error.</p>\n","_postman_id":"b621468f-00ff-4eb0-a73c-e762da0e2b48"},{"name":"Provision","item":[{"name":"/provision/not/","id":"adb93bfe-a006-427b-baa1-63f7041b3d55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/","description":"<p>Find all non provisioned accounts. This endpoint will return all users not yet provisioned. </p>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","not",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7c688da5-eccc-4044-b706-49784dc4f2dc","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:25:18 GMT","name":"Date","description":""},{"key":"ETag","value":"\"1vMo5C9I8Z5vCzing5E3+mi3CqxEERGEkgaT63wiuazPEAyQbKuxHRi0r2O+2zXIJzD+SWQvh7AOH1pHdVRB2A==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"corehrId\":\"000003703\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003704\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003706\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003707\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003708\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003709\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003710\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003711\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003712\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003713\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003714\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003715\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003716\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003717\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003718\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003719\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003720\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003721\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003722\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000003723\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000013\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000018\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000020\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000021\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000022\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000023\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000025\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000027\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000028\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000030\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000031\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000032\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000035\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000038\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000039\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000041\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000042\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000043\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000044\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000045\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000046\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000047\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000048\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000049\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000050\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000051\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000054\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000055\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000056\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000057\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000058\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000059\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000060\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000061\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000063\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000064\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000065\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000066\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000067\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000069\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000070\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000072\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000073\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000078\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000080\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000081\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000082\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000084\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000085\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000086\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000087\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000088\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000089\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000090\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000091\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000092\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000093\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000094\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000096\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000097\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000098\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000099\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000100\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"0001000\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000101\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000102\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000103\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000104\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000105\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000106\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000107\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000108\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000109\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000110\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000111\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000112\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000113\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000114\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000115\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000117\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/not/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/not/?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"adb93bfe-a006-427b-baa1-63f7041b3d55"},{"name":"/provision/not/:days","id":"7c2efa6f-1d5b-445e-8b8f-c75f78f8e3c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/10","description":"<p><strong>Optionally</strong> provide number of days, this service is used to offset users start date. Provides ability to determine accounts not yet provisioned in CoreHR for Core|Portal self service access. This service will include employees due to start in the future.</p>\n<p>Allowing the following scenario.</p>\n<ul>\n<li><p>obtain user accounts to be provisioned within the last X number of days, i.e. a start date occurring in the past.</p>\n</li>\n<li><p>obtain user accounts to be provisioned with a future start date, i.e. users starting in the future.</p>\n</li>\n</ul>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","not","10"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f39feb6c-2a7e-479b-bda8-ca8c9546205f","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/not/10"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:30:42 GMT","name":"Date","description":""},{"key":"ETag","value":"\"cSKNv2WwIIh0T+eJ45YnqtVBjBFYZkks1p7Tqg85HR8CDOYFRrykHVYdfY25akVQyWUXfWirPpwnI4ZKalVYEA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"corehrId\":\"000613\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000614\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000615\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000623\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000624\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000660\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000662\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000673\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000674\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000676\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000677\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000679\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000754\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000755\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000756\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000757\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000770\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000771\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000794\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000795\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000796\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000801\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000806\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000825\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000830\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000831\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000883\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000893\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000894\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000897\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000898\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000899\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000900\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000919\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000921\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000934\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000944\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"000958\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001027\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001105\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001141\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"001330\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"002544\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"002556\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"003292\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"003484\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"003555\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"0208884\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"123\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"123-XYZ\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"609\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"610\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"611\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"612\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"616\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"617\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"618\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"619\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"620\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"621\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"622\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"625\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"638\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"639\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"640\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"642\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"643\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"644\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"645\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"650\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"651\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"652\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"667\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"671\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"675\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"678\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"680\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"694\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"C123456\", \"firstName\": \"DEAN\", \"lastName\": \"M\"}\n,\n{\"corehrId\":\"C123457\", \"firstName\": \"DOM\", \"lastName\": \"GRIFFIN\"}\n,\n{\"corehrId\":\"C464646\", \"firstName\": \"FDS\", \"lastName\": \"FSDF\"}\n,\n{\"corehrId\":\"C555555\", \"firstName\": \"STPEHEN\", \"lastName\": \"195\"}\n,\n{\"corehrId\":\"C876876\", \"firstName\": \"STEPHEN\", \"lastName\": \"NOW\"}\n,\n{\"corehrId\":\"C878778\", \"firstName\": \"SAFDA\", \"lastName\": \"WRWE\"}\n,\n{\"corehrId\":\"C888888\", \"firstName\": \"STEPHEN\", \"lastName\": \"EXTERNAL\"}\n,\n{\"corehrId\":\"C901111\", \"firstName\": \"STEPHEN\", \"lastName\": \"106\"}\n,\n{\"corehrId\":\"C989889\", \"firstName\": \"STEPOHEN\", \"lastName\": \"C\"}\n,\n{\"corehrId\":\"C989898\", \"firstName\": \"STEPHEN\", \"lastName\": \"185\"}\n,\n{\"corehrId\":\"DFLT-9\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"DYLAN1\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"TA0001\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"TA0002\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n,\n{\"corehrId\":\"TA0004\", \"firstName\": \"Web-Services\", \"lastName\": \"CoreHR\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 93,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/not/10\"\n      }\n    ]\n}\n"}],"_postman_id":"7c2efa6f-1d5b-445e-8b8f-c75f78f8e3c2"},{"name":"/provision/user","id":"e07216af-b2ac-4cdd-b4f4-9d51df26d5a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"100\",\n  \"loginid\" : \"darragh.duffy@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user","description":"<p>Provisions a new CorePortal account;  on successful completion, users will have ability to access CoreHR's self service features via CorePortal. As noted in the introduction to the provisioning module, where an IDM or third party application understands CorePortal privileges this module will accept these privileges. Example provided below includes Users Privilege.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by the /provision/not/ web service.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<ul>\n<li>authType</li>\n</ul>\n<p>This is the authentication type for the employee, the value here should be either <code>inApplicationPassword</code> or <code>LDAP</code>. For all single sign on authenticated accounts use LDAP. For non single sign on account set this value to inApplicationPassword this then requires the password attribute to be set. Leaving this parameter null indicates to CoreHR that the user account should pick up the system default authentication type, this parameter can be found in CoreHR as 'authtype'.</p>\n<ul>\n<li>password</li>\n</ul>\n<p>This attribute is required when authType is  <code>inApplicationPassword</code>. The value here will be validated against the password policy in CoreHR.</p>\n<ul>\n<li>privileges</li>\n</ul>\n<p>An array, each array object contains a privilege.</p>\n<p><strong>Mandatory</strong></p>\n<ul>\n<li>corehrid</li>\n<li>loginid</li>\n<li>password (only when authType is inApplicationPassword)</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2da94a33-b48b-4e32-ad85-62f35b5508ad","name":"400 - Bad Request - ","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:36:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"001\",\"errorMessage\" :\"Mandatory fields are missing\" }}\n"},{"id":"a4e98fdf-1639-46bc-b361-73299db682fb","name":"400 - Bad Request - Validation Failed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.smith@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:38:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"002\",\"errorMessage\" :\"Validation failed. If attempting to update use PATCH method\" }}\n"},{"id":"d5fca0fe-871b-4acb-af3a-cce62e15c5ef","name":"201 - Created - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.smith@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"hradmin\"},\n            {\"privilege\" : \"coreportalEmployee\"},\n            {\"privilege\" : \"managerRequests\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 05 Oct 2016 16:35:54 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"e07216af-b2ac-4cdd-b4f4-9d51df26d5a5"},{"name":"/provision/user","id":"076a6b58-29ac-416d-af58-79dab8032530","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"developmentTeam\"},\n            {\"privilege\" : \"VPNGroup\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user","description":"<p>Provides ability to patch (amend) an existing account. Account must have previously been provisioned, this means corehrID must previously have been generated via <code>POST</code>. In general this service supports Single Sign On style accounts. </p>\n<p>It is possible to use this service with non SSO accounts, in such cases all parameters are mandatory including password and explcitly setting authType to <code>inApplicationPassword</code>. In cases where <code>authType</code> is not provided the account is assumed to be Single Sign On.</p>\n<p>The use cases for this web service includes </p>\n<ul>\n<li>loginId changing</li>\n</ul>\n<p>Where a user changes their loginId e.g. their name changes because of marriage, this web service faciliates this change of ID.</p>\n<ul>\n<li>privilege changing</li>\n</ul>\n<p>executing this web service will remove all current privileges and replace with the privileges array. It is therefore possible to use this web service to revoke all privileges for a user by sending a blank array of privileges.</p>\n<p>Example provided below changes both Login ID and privileges.</p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by the /provision/not/ web service.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<ul>\n<li>authType</li>\n</ul>\n<p>This is the authentication type for the employee, the value here should be either <code>inApplicationPassword</code> or <code>LDAP</code>. For all single sign on authenticated accounts use LDAP. For non single sign on account set this value to <code>inApplicationPassword</code> this then requires the password attribute to be set. In cases where this attribute is null, assumpetion is Single Sign On.</p>\n<ul>\n<li>password</li>\n</ul>\n<p>This attribute is required when authType is  <code>inApplicationPassword</code>. The value here will be validated against the password policy in CoreHR. </p>\n<ul>\n<li>privileges</li>\n</ul>\n<p>An array, each array object contains a privilege. If this is blank all privs are revoked.</p>\n<p><strong>Mandatory</strong></p>\n<ul>\n<li>corehrid</li>\n<li>loginid</li>\n<li>password (only when authType is inApplicationPassword)</li>\n</ul>\n<p>For Non SSO Accounts <strong>all</strong> parameters are mandatory. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0b41976c-c635-413e-afc6-f8582e7e6c69","name":"201 - Created - Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privileges\" : [\n            {\"privilege\" : \"developmentTeam\"},\n            {\"privilege\" : \"VPNGroup\"}\n    ]\n}\n"},"url":"{{url}}/ws/{{schema}}/{{version}}//provision/user"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 05 Oct 2016 16:42:46 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"076a6b58-29ac-416d-af58-79dab8032530"},{"name":"/provision/user/status/:id","id":"82b334cd-2b4d-4e7e-8512-df3eca27ec20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100","description":"<p>Obtain user account status indicator; determining if an account is active or not. The parameter <code>id</code> can be users coreHRID or account username.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","status","100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b3729892-4b0f-40ff-b5e8-3b1bf1bdf1d8","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:31:30 GMT","name":"Date","description":""},{"key":"ETag","value":"\"sGx4HzAXH89DhDNFtkOUMSQlXB866SC59AcS3OozZImkugcv3VxH0Fu28Ggg8u1MKe9Q0te3IaT/rcBLEIZxsA==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"isAccountActive\":\"Yes\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/provision/user/status/100\"\n      }\n    ]\n}\n"}],"_postman_id":"82b334cd-2b4d-4e7e-8512-df3eca27ec20"},{"name":"/provision/user/authtype/:id","id":"425b8441-9598-4f55-809c-908b4adada31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/authtype/100","description":"<p>Obtain user authentication type. Response indicates either <code>LDAP</code> or <code>inApplicationPassword</code>. </p>\n<p>The parameter <code>id</code> can be users coreHRID or loginID.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","authtype","100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"81765947-f56d-4fc5-a462-3e66026e2f45","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/authtype/100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 15 May 2017 14:44:26 GMT","name":"Date","description":""},{"key":"ETag","value":"\"mZYGBTCc1ovUVzZXDgF+YJsBaIu7WlfXQxZde8j3GjOesDyaERKI0JiZmy5tZzqcbhUZA5zogDX+iGxiFiz7JQ==-gzip\"","name":"ETag","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"authType\":\"inApplicationPassword\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"https://localhost/ws/tenant/corehr/v1/provision/user/authtype/100\"\n      }\n    ]\n}\n"}],"_postman_id":"425b8441-9598-4f55-809c-908b4adada31"},{"name":"/provision/user/status/:id","id":"eb589c3e-e71a-4870-bddf-68bbef48c5f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"active\" : \"N\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100","description":"<p>Provides an ability to activate or deactivate an account. Setting an account to be deactive results in a user not being allowed sign into CoreHR self Service module CorePortal. This applies irrespective of the users authentication type.</p>\n<p>When an account is created via <code>POST</code> <code>/provision/user</code> the account is assumed to be active. You do not need to execute this web services to activate an account once it has been created. However if you execute this web services and set active to N then you must execute this web services again to re-activate the account by setting active to Y.</p>\n<p>The id parameter can be either coreHRID or the username associated with the account. The Active parameter must be N or Y</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","status","100"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"088f6732-03cd-4573-bf9d-31ac2c7bba31","name":"201 - Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\"active\" : \"N\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 22 Oct 2016 19:02:16 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"44c2e238-3b98-4f05-87b5-37554662619c","name":"400 - Validation Failed","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\"active\" : \"N\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/1001"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"close","name":"Connection","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 22 Oct 2016 19:02:41 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"007\",\"errorMessage\" :\"Validation failed. Either user account does not exist or request data is invalid.\" }}\n"},{"id":"d24b07e6-8c40-4a6b-a6d3-8fdd00986b5b","name":"200 - Account Active","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/status/100"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 22 Oct 2016 18:04:52 GMT","name":"Date","description":""},{"key":"ETag","value":"\"L/idwKxNGWvlkQGQ4j3vC0+brkecdYNqpY2o9nJxaN5RiPktu/5d3OJrX6yJIWMlOB0ocscXHR0OVsUrx7Decw==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"{\"items\":[{\"isaccountactive\":\"Yes\"}],\"hasMore\":false,\"limit\":100,\"offset\":0,\"count\":1,\"links\":[{\"rel\":\"self\",\"href\":\"http://localhost:8585/ws/corehr/v1/provision/user/status/100\"},{\"rel\":\"describedby\",\"href\":\"http://localhost:8585/ws/corehr/metadata-catalog/v1/provision/user/status/item\"},{\"rel\":\"first\",\"href\":\"http://localhost:8585/ws/corehr/v1/provision/user/status/100\"}]}"}],"_postman_id":"eb589c3e-e71a-4870-bddf-68bbef48c5f0"},{"name":"/provision/user/privilege","id":"b6bec2dc-a00d-47f7-882e-4f34e2d8c7a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privilege\" : \"hrAdmin\"\n  }\n"},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/privilege","description":"<p>Provisions a new privilege for a user. This service allows one new privilege to be assigned to the user account. In addition this service assumes an account has already been provisioned. Validation is performed on the account confirming existence. </p>\n<p><strong>JSON Request Body Explained</strong></p>\n<ul>\n<li>corehrid</li>\n</ul>\n<p>Is an employees unique attribute in CoreHR also known as <code>personnel number</code>. Can be determined by the /provision/not/ web service.</p>\n<ul>\n<li>loginid</li>\n</ul>\n<p>LoginId is the users account username, typically email address, sAMAccountName, userPrincipleName etc.</p>\n<ul>\n<li>privilege</li>\n</ul>\n<p>a new privilege for the user.</p>\n<p><strong>Special Usage Note</strong></p>\n<p>use one of the following combinations, <strong>do not</strong> use all three fields. If you do an error will be returned.</p>\n<ul>\n<li>corehrid and a privilege</li>\n</ul>\n<p>or</p>\n<ul>\n<li>loginid and a privilege</li>\n</ul>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","provision","user","privilege"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"824833d1-01bd-4015-8c87-eab5c4227b59","name":"201 - Created - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"  {\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privilege\" : \"hrAdmin\"\n  }\n  "},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/privilege"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:47:41 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"},{"id":"bd412614-cb95-4093-b612-061e97789157","name":"400 - Bad Request - Validation Failed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"  {\n  \"corehrid\" : \"002875\",\n  \"loginid\" : \"jones.donovan@corehr.com\",\n  \"privilege\" : \"hrAdmin\"\n  }\n  "},"url":"{{url}}/ws/{{schema}}/{{version}}/provision/user/privilege"},"status":"Bad Request","code":400,"_postman_previewlanguage":"javascript","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 05 Oct 2016 16:49:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\":{\"success\":false, \"errorCode\" : \"006\",\"errorMessage\" :\"Validation failed. Invalid fields used\" }}\n"}],"_postman_id":"b6bec2dc-a00d-47f7-882e-4f34e2d8c7a3"}],"id":"f71df72e-974b-43b3-b0ab-668b3e26a4e9","description":"<p>Provisioning facility allowing Core|Portal accounts to be provisioned. Core|Portal is the self service module within CoreHR. A employee may have a record in CoreHR, this does not automatically suggest same employee has access to self service features via CorePortal. In order to access CorePortal a self service account is required. This module provides a web service mechanism to provision an employee.</p>\n<p>In Summary provisioning provides ability to</p>\n<ul>\n<li>Determine accounts yet to be provisioned</li>\n<li>Determine accounts yet to be provisioned within X number of days (including future start dates)</li>\n<li>Provision a new account</li>\n<li>Provision a new account with privileges</li>\n<li>Update existing accounts privileges</li>\n<li>Add additional privilege to an account</li>\n<li>Set authentication Type in cases where a mix of Single Sign On, SAML and inApplicationPasswords exist</li>\n</ul>\n<p><strong>Contraints, Limitations &amp; Mandatory</strong></p>\n<p>Accounts to be provisioned simply indicates accounts (employees) not yet provisioned. These accounts must satisfy following criteria </p>\n<ul>\n<li>Active Employee Record</li>\n</ul>\n<p>indicates employees record must not have a date left.</p>\n<p>Do not assume logic applies indicating certain categories of employees are allowed access and others are not allowed. No other conditions are applied. Additional attributes are possible to add to the response to help an IDM provider make this decision, CoreHR will work with an IDM provider to best determine. </p>\n<p>CorePortal privileges can be assigned by the IDM using the privileges array (example below). Where an IDM can not determine privileges, this provisioning web service module integrates with the CoreHR user profile matrix, and in cases where this matrix is not configured the fall back is all users are granted a default access profile typically \"coreportal_employee\".</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001  Mandatory fields are missing</li>\n<li>400 / 002  Validation failed. If attempting to update use PATCH method</li>\n<li>400 / 003  Unexpected error, unable to provision account</li>\n<li>404 / 004 Validation failed. User account does not exist</li>\n<li>404 / 005 Validation failed. Account must first be provisioned, use POST method</li>\n<li>400 / 006  Validation failed. Invalid fields used</li>\n<li>400 / 007  Validation failed. Either user account does not exist or request data is invalid.</li>\n<li>400 / 008  Validation failed. Authtype must be either LDAP or inApplicationPassword. If choosing inApplicationPassword a password is required</li>\n<li>400 / 009 Validation failed. Supplied password has not passed password</li>\n</ul>\n","_postman_id":"f71df72e-974b-43b3-b0ab-668b3e26a4e9"},{"name":"Reference","item":[{"name":"/reference/","id":"13eda200-2b39-4211-afc0-85522def1144","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/","description":"<p>Get a list of registered / whitelisted referene types. Tenant has an ability to define reference types available for creating / updating. A tenant may not allow all references to be updated or created, this base URI provides the list of valid reference types. In cases where server returns validation errors, refer to this list to confirm the reference type is whitelisted.</p>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"901e0c2d-1bfb-4a2e-b8aa-3a0dc368da87","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:32:48 GMT","name":"Date","description":""},{"key":"ETag","value":"\"c+fK0tVaqmJ9e4v3iAcjrkNwTm99RSdRJXXfABfFEcdajSFUsEcGTUC0aJFyIg7ll32J/RQTlDd4wRl99bLqZQ==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"ACCI\", \"description\" : \"ACCIDENT CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACCSEV\", \"description\" : \"Accident Severity Code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACDIS1\", \"description\" : \"Academic Discipline 1\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACDIS2\", \"description\" : \"Academic Discipline 2\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACSTAT\", \"description\" : \"Academic Staff Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACT\", \"description\" : \"Activity\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACTINV\", \"description\" : \"Workplace Activity Involved\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ACTION\", \"description\" : \"Action\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ADDTYP\", \"description\" : \"Address Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ADMBY\", \"description\" : \"Training Administered By\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"AGERNG\", \"description\" : \"Age Range\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ALLCOD\", \"description\" : \"Allowance Code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"APP\", \"description\" : \"Appointment code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"APPR\", \"description\" : \"APPRAISAL CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"APPTYP\", \"description\" : \"Approval Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"AREA\", \"description\" : \"Area\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ASCAT\", \"description\" : \"Academic Staff Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ASPOSE\", \"description\" : \"Aspose Document Type Mapping\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"AWRD\", \"description\" : \"Pdp Recognition Awards\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"BCKWRK\", \"description\" : \"Back At Work Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"BEN\", \"description\" : \"BENEFIT CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"BUSNAT\", \"description\" : \"Business Nature Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CARPRF\", \"description\" : \"Test\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CATG\", \"description\" : \"Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CERT\", \"description\" : \"CERTIFICATE TYPE\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFATTY\", \"description\" : \"Conference Attendance Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFLEVL\", \"description\" : \"Conference Level\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFORGB\", \"description\" : \"Conference Organising Body\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFSTAT\", \"description\" : \"Conference Status\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CFTYPE\", \"description\" : \"Conference Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CITZ\", \"description\" : \"Citizenship Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CLINAC\", \"description\" : \"Clinical Access\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CNTCOD\", \"description\" : \"Country\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COMCAT\", \"description\" : \"Employee Company Categories\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CONTRT\", \"description\" : \"Contract Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CONTYP\", \"description\" : \"Contact Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COST\", \"description\" : \"Cost centre\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COSTCL\", \"description\" : \"Cost Class\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"COUNTY\", \"description\" : \"County Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CPCRT\", \"description\" : \"Crew Plan Rule Day Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CPNR\", \"description\" : \"Crew Plan Night Allowance Rule Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CRSLVL\", \"description\" : \"Qualification Level\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CRTYP\", \"description\" : \"Clinical Research Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CRYTP\", \"description\" : \"Clinical Research Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"CSOI\", \"description\" : \"CSO\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DAYRTN\", \"description\" : \"Days to Return Codes (OccInj)\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DEPN\", \"description\" : \"DEPENDENTS\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DEPT\", \"description\" : \"Department\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DESC\", \"description\" : \"Description\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DISABL\", \"description\" : \"Disability Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DIV\", \"description\" : \"Division\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DIVER\", \"description\" : \"Diversity Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"DOCTYP\", \"description\" : \"Document Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EDUC\", \"description\" : \"EDUCATION/SKILL CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EMPL\", \"description\" : \"EMPLOYMENT HISTORY\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EMPS\", \"description\" : \"Employment status\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ETHNIC\", \"description\" : \"Ethnicity\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EVTCAT\", \"description\" : \"Event Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EXCDVL\", \"description\" : \"Core Expense Code Validation\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EXPS\", \"description\" : \"Expenses\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"EXTPER\", \"description\" : \"External Person Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FAMSTS\", \"description\" : \"Family Status Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FBGRP\", \"description\" : \"Flexible Benefit Groups\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FBLNK\", \"description\" : \"Flexible Benefit Links\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FECBCK\", \"description\" : \"FEC Background\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FECCLA\", \"description\" : \"FEC Classification\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FECTYP\", \"description\" : \"FEC Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FEES\", \"description\" : \"Fees\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FEMRPT\", \"description\" : \"FEM Report Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FIRE\", \"description\" : \"FIRE ZONE CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FIRPNT\", \"description\" : \"Fire Point\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FORM\", \"description\" : \"Form Name\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FTEHRS\", \"description\" : \"FTE Hour Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FUNDAG\", \"description\" : \"Funding Agency Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FUNDSC\", \"description\" : \"Funding Source\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"FUNTYP\", \"description\" : \"Funding Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"GNDRID\", \"description\" : \"Gender Identity\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"GRIPID\", \"description\" : \"Group ID\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"GRPID\", \"description\" : \"Group ID\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HAZZ\", \"description\" : \"HAZZARD CODES\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HONCON\", \"description\" : \"Honorary Contract\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HOUR\", \"description\" : \"Hours\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSASRC\", \"description\" : \"Health Safety Action Source\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSCON\", \"description\" : \"Health Safety Contractor\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSNT\", \"description\" : \"Health Safety Notice Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSPRI\", \"description\" : \"Health Safety Action Priority\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSSRC\", \"description\" : \"Health Safety Source Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"HSSTA\", \"description\" : \"Health Safety Action Status\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ILINCN\", \"description\" : \"Industry Nature of Contact\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ILINCT\", \"description\" : \"Industry Categories\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"ILOC\", \"description\" : \"Input location\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INCVIO\", \"description\" : \"Incidents of Violence Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INDCAT\", \"description\" : \"Employee Industry Categories\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INJBOD\", \"description\" : \"Injured BOdy Part Codes\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"INJCAU\", \"description\" : \"Cause of Injury Types\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"JOBCAT\", \"description\" : \"Job Category\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"JOBCOD\", \"description\" : \"Job Code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"JOBS\", \"description\" : \"Job code\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"LENTIM\", \"description\" : \"Length of Time\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n,\n{\"type\":\"LEVEL\", \"description\" : \"Level Type\", \"typeLength\": 6, \"descriptionLength\": 40, \"dataType\" : \"string\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 100,\"hasMore\":true\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/\"\n      },\n      {\n      \"rel\": \"next\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/?offsetby=100\"\n      }\n     ]\n}\n"}],"_postman_id":"13eda200-2b39-4211-afc0-85522def1144"},{"name":"/reference/type/:atype","id":"11a32481-cb9e-46e3-9523-2152d8308239","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Returns a list of codes and descriptions for a reference type, a reference type could be <code>COST</code>, <code>DEPT</code> etc. Reference Types are typically upper case. As already noted reference types can be whitelisted by a tenant.</p>\n<p>For a full list of available reference types use /reference/</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"798a4d6e-5d7d-4761-b74c-75ee91b75ba2","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:35:18 GMT","name":"Date","description":""},{"key":"ETag","value":"\"ZInz0RdXlDlkFr0RxOWVt0Xe8DrUJnBC2+V/aZmUKdeVao7Vnt+tTjTY7a88qxAW/95HgOuX3zxv4wgdqSdatg==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"COST\", \"code\": \"1\", \"description\": \"Cost Centre Web Services 1\"}\n,\n{\"type\":\"COST\", \"code\": \"10\", \"description\": \"Cost Centre Web Services 10\"}\n,\n{\"type\":\"COST\", \"code\": \"100A\", \"description\": \"Cost Centre Web Services 100A\"}\n,\n{\"type\":\"COST\", \"code\": \"111\", \"description\": \"Cost Centre Web Services 111\"}\n,\n{\"type\":\"COST\", \"code\": \"123456789\", \"description\": \"Cost Centre Web Services 123456789\"}\n,\n{\"type\":\"COST\", \"code\": \"149\", \"description\": \"Cost Centre Web Services 149\"}\n,\n{\"type\":\"COST\", \"code\": \"159\", \"description\": \"Cost Centre Web Services 159\"}\n,\n{\"type\":\"COST\", \"code\": \"20\", \"description\": \"Cost Centre Web Services 20\"}\n,\n{\"type\":\"COST\", \"code\": \"200A\", \"description\": \"Cost Centre Web Services 200A\"}\n,\n{\"type\":\"COST\", \"code\": \"21\", \"description\": \"Cost Centre Web Services 21\"}\n,\n{\"type\":\"COST\", \"code\": \"22\", \"description\": \"Cost Centre Web Services 22\"}\n,\n{\"type\":\"COST\", \"code\": \"222\", \"description\": \"Cost Centre Web Services 222\"}\n,\n{\"type\":\"COST\", \"code\": \"23\", \"description\": \"Cost Centre Web Services 23\"}\n,\n{\"type\":\"COST\", \"code\": \"24\", \"description\": \"Cost Centre Web Services 24\"}\n,\n{\"type\":\"COST\", \"code\": \"25\", \"description\": \"Cost Centre Web Services 25\"}\n,\n{\"type\":\"COST\", \"code\": \"26\", \"description\": \"Cost Centre Web Services 26\"}\n,\n{\"type\":\"COST\", \"code\": \"27\", \"description\": \"Cost Centre Web Services 27\"}\n,\n{\"type\":\"COST\", \"code\": \"28\", \"description\": \"Cost Centre Web Services 28\"}\n,\n{\"type\":\"COST\", \"code\": \"29\", \"description\": \"Cost Centre Web Services 29\"}\n,\n{\"type\":\"COST\", \"code\": \"2908100\", \"description\": \"Cost Centre Web Services 2908100\"}\n,\n{\"type\":\"COST\", \"code\": \"30\", \"description\": \"Cost Centre Web Services 30\"}\n,\n{\"type\":\"COST\", \"code\": \"300A\", \"description\": \"Cost Centre Web Services 300A\"}\n,\n{\"type\":\"COST\", \"code\": \"356\", \"description\": \"Cost Centre Web Services 356\"}\n,\n{\"type\":\"COST\", \"code\": \"39\", \"description\": \"Cost Centre Web Services 39\"}\n,\n{\"type\":\"COST\", \"code\": \"40\", \"description\": \"Cost Centre Web Services 40\"}\n,\n{\"type\":\"COST\", \"code\": \"451\", \"description\": \"Cost Centre Web Services 451\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC\", \"description\": \"Cost Centre Web Services ABC\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC001\", \"description\": \"Cost Centre Web Services ABC001\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC0010\", \"description\": \"Cost Centre Web Services ABC0010\"}\n,\n{\"type\":\"COST\", \"code\": \"ABC003\", \"description\": \"Cost Centre Web Services ABC003\"}\n,\n{\"type\":\"COST\", \"code\": \"J12345\", \"description\": \"Cost Centre Web Services J12345\"}\n,\n{\"type\":\"COST\", \"code\": \"JKL333\", \"description\": \"Cost Centre Web Services JKL333\"}\n,\n{\"type\":\"COST\", \"code\": \"PROD\", \"description\": \"Cost Centre Web Services PROD\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 33,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/type/COST/\"\n      }\n    ]\n}\n"}],"_postman_id":"11a32481-cb9e-46e3-9523-2152d8308239"},{"name":"/reference/type/:atype/:code?","id":"6ebe68d5-eeef-4103-8d9f-a526063adb07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/DEPT/1061","description":"<p>Returns an individual reference description associated with a reference type and code. A reference type could be <code>COST</code>, <code>DEPT</code> etc. Reference Types are typically upper case. As already noted reference types can be whitelisted by a tenant.</p>\n<p>For a full list of available reference types use /reference/</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference","type","DEPT","1061"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"31ceaf97-fe47-4bb6-8585-0e79724e5ab2","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/10"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 08 Nov 2016 20:35:39 GMT","name":"Date","description":""},{"key":"ETag","value":"\"Q3jVQU2iTQ/v0g70PelGZKl9U6wG1LV/Ns7vRxFBtB7MUyXAAgUcC+nxdBtW/mQMcQPoQhSS1jjRtrAA4a7uzQ==\"","name":"ETag","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{ \"items\" : [\n{\"type\":\"COST\", \"code\": \"10\", \"description\": \"Cost Centre Web Services 10\"}\n]\n,\"limit\":100,\"offsetby\" : 0,\"count\" : 1,\"hasMore\":false\n,\"links\" : [\n      {\n      \"rel\": \"first\",\n      \"href\": \"http://localhost:8585/ws/corehr/v1/reference/type/COST/10\"\n      }\n    ]\n}\n"}],"_postman_id":"6ebe68d5-eeef-4103-8d9f-a526063adb07"},{"name":"/reference/type/:atype","id":"22dd0051-7a25-41b8-880d-1397923a9cae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1061\",\n\"description\" : \"Cost Centre One\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Add reference data based on the reference type, code and description. The reference type is expected in the URL, while the request body should include <code>code</code> and <code>description</code></p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"88b90e54-456a-4398-a6b2-6f2537dfdc40","name":"201 - Created - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Cost Centre One\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 04 Oct 2016 19:35:00 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"22dd0051-7a25-41b8-880d-1397923a9cae"},{"name":"/reference/type/:atype","id":"2f02608a-7a59-43ee-bf31-a80973fa485c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Department One Data Updated\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Ability to update a description associated with an existing reference code / type combination. The reference type is expected in the URL, while the request body should include <code>code</code> and <code>description</code></p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"81da30a7-b1bf-439d-a26e-525707b788cb","name":"201 - Created (Updated) - Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Cost Centre One Data Updated\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"Created","code":201,"_postman_previewlanguage":"javascript","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 04 Oct 2016 19:36:31 GMT","name":"Date","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"2f02608a-7a59-43ee-bf31-a80973fa485c"},{"name":"/reference/type/:atype","id":"107109d8-7c88-4a91-b875-4b7662a0804a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"value\" : \"1\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Delete reference data based on the reference type, code. The reference type is expected in the URL, while the request body should include <code>code</code>.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9073d522-6114-44e2-ad6a-77ad2e641663","name":"200 - Success OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/COST/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, no-cache, no-store, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Security-Policy","value":"default-src 'none'; script-src 'none'; img-src 'self'; style-src 'self';","name":"Content-Security-Policy","description":""},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 11 Nov 2016 16:32:50 GMT","name":"Date","description":""},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":""},{"key":"Server","value":"Apache-Coyote/1.1","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"\n{\"Response\" : {\"success\":true}}\n"}],"_postman_id":"107109d8-7c88-4a91-b875-4b7662a0804a"},{"name":"/reference/type/:atype","id":"7b131232-081c-4183-ace2-672e57a5f2e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1061\",\n\"description\" : \"Cost Centre One\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Add reference data based on the reference type, code and description. The reference type is expected in the URL, while the request body should include <code>code</code> and <code>description</code></p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7b131232-081c-4183-ace2-672e57a5f2e1"},{"name":"/reference/","id":"df6f5ed6-dbb2-4f65-93fe-3c4ed7a08851","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/","description":"<p>Get a list of registered / whitelisted referene types. Tenant has an ability to define reference types available for creating / updating. A tenant may not allow all references to be updated or created, this base URI provides the list of valid reference types. In cases where server returns validation errors, refer to this list to confirm the reference type is whitelisted.</p>\n<p>This examples demonstrates pagination, as previously noted each request is limited to 100, where more data exists <code>hasMore</code> will be true, the <code>links</code> array will contain the next page of records using the <code>offsetby</code> parameter. </p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"df6f5ed6-dbb2-4f65-93fe-3c4ed7a08851"},{"name":"/reference/type/:atype","id":"2971d42a-2d9e-4816-afae-d07b3be1da04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Returns a list of codes and descriptions for a reference type, a reference type could be <code>COST</code>, <code>DEPT</code> etc. Reference Types are typically upper case. As already noted reference types can be whitelisted by a tenant.</p>\n<p>For a full list of available reference types use /reference/</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2971d42a-2d9e-4816-afae-d07b3be1da04"},{"name":"/reference/type/:atype","id":"fa1f623d-6da1-47ee-9b7b-babf2b0e844b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"value\" : \"1\",\n\"description\" : \"Department One Data Updated\"\n}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Ability to update a description associated with an existing reference code / type combination. The reference type is expected in the URL, while the request body should include <code>code</code> and <code>description</code></p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa1f623d-6da1-47ee-9b7b-babf2b0e844b"},{"name":"/reference/type/:atype","id":"f3b30ac2-1903-421a-95d7-9c143b0c05c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"value\" : \"1\"}"},"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/DEPT/","description":"<p>Delete reference data based on the reference type, code. The reference type is expected in the URL, while the request body should include <code>code</code>.</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference","type","DEPT",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f3b30ac2-1903-421a-95d7-9c143b0c05c8"},{"name":"/reference/type/:atype/:code?","id":"06842830-5b35-4bbd-b49d-6c67ae5121d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/ws/{{schema}}/{{version}}/reference/type/DEPT/1061","description":"<p>Returns an individual reference description associated with a reference type and code. A reference type could be <code>COST</code>, <code>DEPT</code> etc. Reference Types are typically upper case. As already noted reference types can be whitelisted by a tenant.</p>\n<p>For a full list of available reference types use /reference/</p>\n","urlObject":{"path":["ws","{{schema}}","{{version}}","reference","type","DEPT","1061"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"06842830-5b35-4bbd-b49d-6c67ae5121d6"}],"id":"c6b5f1bf-c7a4-4330-a3e1-b1ee636dbd6d","description":"<p>Reference module provides ability to view, add and update reference related items for CoreHR e.g. Cost Centre, Department, Projects etc. </p>\n<p><strong>Contraints, Limitations &amp; Mandatory</strong></p>\n<p>The reference module is case senstive, no process converts the type provided into upper or lower case. You must ensure you have set the case correctly, otherwise no data will be returned. Within CoreHR reference types are typically uppercase.</p>\n<p>In most cases a type is mandatory. Following are some examples, for more detail review each URI and method below.</p>\n<p>For endpoint <code>/reference/type/aType/</code> aType is mandatory e.g. <code>/reference/type/COST/</code>. Another example <code>/reference/type/COST/1</code> will return Reference Type COST where the cost centre code is 1. For <code>/reference/types/</code> no type is required. </p>\n<p>Further information per method below.</p>\n<p><strong>Limitations</strong></p>\n<p>Description max length - 40 Characters</p>\n<p>Code max length - 13 Characters</p>\n<p><strong>Error Codes</strong></p>\n<p>Convention is HTTP Status Code / Verbose Code</p>\n<ul>\n<li>400 / 001 Mandatory fields are missing</li>\n<li>400 / 002 Validation failed. If attempting to update use PATCH method</li>\n<li>404 / 003 Validation failed. Reference type does not exist</li>\n<li>400 / 004 Validation failed. Sanitization of data failed, ensure field lengths are correct</li>\n<li>400 / 005 Validation failed. Reference code does not exist. If attempting to add use POST method.</li>\n</ul>\n<p>Defined below are the endpoints, sample requests and responses. </p>\n","_postman_id":"c6b5f1bf-c7a4-4330-a3e1-b1ee636dbd6d"}],"id":"2319e5e6-499c-41c2-915e-4984b7833998","_postman_id":"2319e5e6-499c-41c2-915e-4984b7833998","description":""}],"event":[{"listen":"prerequest","script":{"id":"1516d8e5-f89b-451c-a106-f3661a601c81","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e10067c4-d1cd-4a93-83d2-cd8a7c742782","type":"text/javascript","exec":[""]}}]}