diff --git a/.gitignore b/.gitignore index e88f977..8d142ca 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ node_modules out -.history \ No newline at end of file +.history +env.json +dist diff --git a/app/config.js b/app/config.js new file mode 100644 index 0000000..9eda595 --- /dev/null +++ b/app/config.js @@ -0,0 +1,36 @@ +const fs = require('fs-extra'); +const path = require('path'); +const { app } = require('electron'); +const userDataPath = app.getPath('userData'); +const CONFIG_FILE_NAME = 'timesheet-config.json'; +const configPath = path.join(userDataPath, CONFIG_FILE_NAME); + +function initializeConfig() { + const initial = require('./config.json'); + saveConfig(initial); +} + +function saveConfig(config) { + console.log('Saving: ' + JSON.stringify(config)); + fs.writeJSONSync(configPath, config, { + encoding: 'utf-8', + spaces: 2 + }); +} + +function getConfig() { + if (!fs.existsSync(configPath)) { + initializeConfig(); + } + const options = fs.readJSONSync(configPath, 'utf-8'); + return options; +} + +function setConfig(config) { + saveConfig(config); +} + +module.exports = { + getConfig, + setConfig +}; \ No newline at end of file diff --git a/app/config.json b/app/config.json new file mode 100644 index 0000000..c41c99d --- /dev/null +++ b/app/config.json @@ -0,0 +1,6 @@ +{ + "secondsToReload": 60, + "cutDay": 6, + "cutHour": 4, + "timezone": "America/Denver" +} \ No newline at end of file diff --git a/app/dist/index.html b/app/dist/index.html new file mode 100644 index 0000000..68ce72e --- /dev/null +++ b/app/dist/index.html @@ -0,0 +1,18 @@ + + + + + + + + Salud y Vida PA | Timesheet - 1.5.0 + + + + + +
+ + + + \ No newline at end of file diff --git a/app/dist/vite.svg b/app/dist/vite.svg new file mode 100644 index 0000000..e7b8dfb --- /dev/null +++ b/app/dist/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/favicon-32x32.png b/app/favicon-32x32.png new file mode 100644 index 0000000..d8dbff3 Binary files /dev/null and b/app/favicon-32x32.png differ diff --git a/app_main/index.htm_ b/app/index.htm_ similarity index 100% rename from app_main/index.htm_ rename to app/index.htm_ diff --git a/app_main/index.html b/app/index.html similarity index 100% rename from app_main/index.html rename to app/index.html diff --git a/app/main.js b/app/main.js new file mode 100644 index 0000000..a7294ea --- /dev/null +++ b/app/main.js @@ -0,0 +1,57 @@ +const { app, BrowserWindow, ipcMain } = require('electron'); +const path = require('path'); +const { post } = require('./request') +const { deputyUrl, deputyToken } = require('../env.json'); +const { getConfig, setConfig } = require('./config'); + +function createWindow() { + const mainWindow = new BrowserWindow({ + width: 1440 , + height: 900, + show: false, + icon: path.join(__dirname, 'favicon-32x32.png'), + webPreferences: { + preload: path.join(__dirname, 'preload.js'), + allowRunningInsecureContent: true, + } + }); + + ipcMain.handle('getTimesheet', async(event, body) => { + try { + const { apitoken } = getConfig(); + const token = apitoken || deputyToken; + return await post(deputyUrl, body, { Authorization: `OAuth ${token}` }); + } catch (err) { + console.log('err :>> ', err); + } + }); + + ipcMain.handle('getAppConfig', () => { + const config = getConfig(); + return {... { apitoken: deputyToken }, ...config }; + }); + + ipcMain.handle('setAppConfig', (event, config) => { + return setConfig(config); + }) + + mainWindow.maximize(); + mainWindow.removeMenu(); + mainWindow.loadFile(path.join(__dirname, '..', 'ui', 'dist', 'index.html')); + + // Open the DevTools. + // mainWindow.webContents.openDevTools(); + mainWindow.show(); +} + +app.whenReady().then(() => { + createWindow(); + + app.on('activate', () => { + if (BrowserWindow.getAllWindows().length === 0) createWindow(); + }) +}); + +app.on('window-all-closed', function() { + if (process.platform !== 'darwin') app.quit() +}); \ No newline at end of file diff --git a/app/preload.js b/app/preload.js new file mode 100644 index 0000000..78546c5 --- /dev/null +++ b/app/preload.js @@ -0,0 +1,16 @@ +const { contextBridge, ipcRenderer } = require('electron'); + +contextBridge.exposeInMainWorld('IS_ELECTRON', true); + +contextBridge.exposeInMainWorld('versions', { + node: () => process.versions.node, + chrome: () => process.versions.chrome, + electron: () => process.versions.electron, + app: () => '1.2.2', +}); + +contextBridge.exposeInMainWorld('services', { + getTimesheet: (body) => ipcRenderer.invoke('getTimesheet', body), + getConfig: () => ipcRenderer.invoke('getAppConfig'), + setConfig: config => ipcRenderer.invoke('setAppConfig', config), +}); \ No newline at end of file diff --git a/app/renderer.js b/app/renderer.js new file mode 100644 index 0000000..da4e407 --- /dev/null +++ b/app/renderer.js @@ -0,0 +1,7 @@ +const func = async() => { + const response = window.versions.app + console.log(response); + window.title += ` ${window.versions.app}`; +} + +func(); \ No newline at end of file diff --git a/app/request.js b/app/request.js new file mode 100644 index 0000000..c4865d6 --- /dev/null +++ b/app/request.js @@ -0,0 +1,64 @@ +const { net } = require('electron'); + +async function get(url, headers) { + return request({ url, method: 'GET', headers }) +} + +async function post(url, body, headers) { + return request({ url, method: 'POST', headers }, body) +} + +async function request(options, body) { + + return new Promise((resolve, reject) => { + const responseBody = []; + let responseHeaders; + let responseStatus; + + const request = net.request(options); + + request.on('response', (response) => { + responseStatus = response.statusCode; + responseHeaders = response.headers; + + response.on('data', (chunk) => { + if (chunk) { + responseBody.push(`${chunk}`); + } + }); + response.on('end', () => { + resolve({ + status: responseStatus, + headers: responseHeaders, + body: parseReponseBody(responseBody), + }); + }); + + response.on('aborted', () => console.log('request aborted')); + response.on('error', (error) => reject(error)); + }); + + request.on('error', (error) => reject(error)); + + request.setHeader('Content-Type', 'application/json'); + if (['POST'].includes(options.method.toUpperCase())) { + request.write(JSON.stringify(body), 'utf-8') + } + request.end(); + + }); +} + +function parseReponseBody(body) { + if (Array.isArray(body)) { + if (body.length) { + return JSON.parse(body.join('')); + } + } +} + + +module.exports = { + get, + post +}; \ No newline at end of file diff --git a/app_main/style.css b/app/style.css similarity index 100% rename from app_main/style.css rename to app/style.css diff --git a/app_main/main.js b/app_main/main.js deleted file mode 100644 index 4349055..0000000 --- a/app_main/main.js +++ /dev/null @@ -1,45 +0,0 @@ -const { app, BrowserWindow, ipcMain, net } = require('electron'); -const path = require('path'); -const { marked } = require('marked'); -const { get } = require('./request') - -function createWindow() { - const mainWindow = new BrowserWindow({ - // width: 800, - // height: 600, - show: false, - webPreferences: { - preload: path.join(__dirname, 'preload.js'), - nodeIntegration: true, - } - }); - - - ipcMain.handle('ping', () => 'pong'); - ipcMain.handle('renderMarkdownToHtml', (event, markdown) => { - return marked.parse(markdown); - }); - ipcMain.handle('acars', async() => { - const url = 'http://lsaapi.gairacalabs.com:3100/api/acars'; - // const url = 'http://lsaapi.gairacalabs.com:3100/graphql'; - const response = await get(url); - return response; - }); - - mainWindow.loadFile(path.join(__dirname, 'index.html')); - - // Open the DevTools. - mainWindow.webContents.openDevTools() - mainWindow.show(); -} -app.whenReady().then(() => { - createWindow(); - - app.on('activate', () => { - if (BrowserWindow.getAllWindows().length === 0) createWindow(); - }) -}); - -app.on('window-all-closed', function() { - if (process.platform !== 'darwin') app.quit() -}); \ No newline at end of file diff --git a/app_main/preload.js b/app_main/preload.js deleted file mode 100644 index 1ce25ef..0000000 --- a/app_main/preload.js +++ /dev/null @@ -1,11 +0,0 @@ -const { contextBridge, ipcRenderer } = require('electron'); -const marked = require('marked'); - -contextBridge.exposeInMainWorld('versions', { - node: () => process.versions.node, - chrome: () => process.versions.chrome, - electron: () => process.versions.electron, - ping: () => ipcRenderer.invoke('ping'), - renderMarkdownToHtml: (currentContent) => ipcRenderer.invoke('renderMarkdownToHtml', currentContent), - acars: () => ipcRenderer.invoke('acars'), -}); \ No newline at end of file diff --git a/app_main/renderer.js b/app_main/renderer.js deleted file mode 100644 index 1efe3f9..0000000 --- a/app_main/renderer.js +++ /dev/null @@ -1,33 +0,0 @@ -const markdownView = document.querySelector('#markdown'); -const htmlView = document.querySelector('#html'); -// const newFileButton = document.querySelector('#new-file'); -// const openFileButton = document.querySelector('#open-file'); -// const saveMarkdownButton = document.querySelector('#save-markdown'); -// const revertButton = document.querySelector('#revert'); -// const saveHtmlButton = document.querySelector('#save-html'); -// const showFileButton = document.querySelector('#show-file'); -// const openInDefaultButton = document.querySelector('#open-in-default'); - -console.log(document.querySelector('#markdown')); - -const renderMarkdownToHtml = async(markdown) => { - const response = await window.versions.renderMarkdownToHtml(markdown); - htmlView.innerHTML = response; -}; - -markdownView.addEventListener('keyup', event => { - const currentContent = event.target.value; - console.log('currentContent :>> ', currentContent); - renderMarkdownToHtml(currentContent); -}); - -const information = document.getElementById('info') -information.innerText = `This app is using Chrome (v${versions.chrome()}), Node.js (v${versions.node()}), and Electron (v${versions.electron()})` - -const func = async() => { - const acars = await window.versions.acars() - const response = await window.versions.ping() - console.log(acars) // prints out 'pong' -} - -func() \ No newline at end of file diff --git a/app_main/request.js b/app_main/request.js deleted file mode 100644 index ef2534d..0000000 --- a/app_main/request.js +++ /dev/null @@ -1,57 +0,0 @@ -const { net } = require('electron'); - -async function get(url) { - return request({ url, method: 'GET' }) -} - -async function post(url, body) { - return request({ url, method: 'POST' }, body) -} - -async function request(options, body) { - - return new Promise((resolve, reject) => { - const responseBody = []; - let responseHeaders; - let responseStatus; - - console.log(options); - const request = net.request(options); - - request.on('response', (response) => { - responseStatus = response.statusCode; - responseHeaders = response.headers; - - response.on('data', (chunk) => { - if (chunk) { - responseBody.push(`${chunk}`); - } - }); - - response.on('end', () => { - resolve({ - status: responseStatus, - headers: responseHeaders, - body: JSON.parse(responseBody.join('')), - }); - }); - - response.on('aborted', () => console.log('request aborted')); - response.on('error', (error) => reject(error)); - }); - - request.on('error', (error) => reject(error)); - - request.setHeader('Content-Type', 'application/json'); - if (['POST'].includes(options.method.toUpperCase())) { - request.write(body, 'utf-8') - } - request.end(); - - }); -} - - -module.exports = { - get -}; \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 308961d..c64e457 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,17 +1,20 @@ { - "name": "firesale", - "version": "1.0.0", + "name": "syv-timesheet", + "version": "1.3.1", "lockfileVersion": 2, "requires": true, "packages": { "": { - "name": "firesale", - "version": "1.0.0", + "name": "syv-timesheet", + "version": "1.3.1", "hasInstallScript": true, "license": "ISC", "dependencies": { + "@fortawesome/fontawesome-svg-core": "^6.2.0", + "@fortawesome/free-solid-svg-icons": "^6.2.0", + "@fortawesome/vue-fontawesome": "^3.0.1", "electron-squirrel-startup": "^1.0.0", - "marked": "^4.1.0" + "fs-extra": "^10.1.0" }, "devDependencies": { "@electron-forge/cli": "^6.0.0-beta.65", @@ -134,7 +137,6 @@ "version": "7.18.13", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.13.tgz", "integrity": "sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==", - "dev": true, "bin": { "parser": "bin/babel-parser.js" }, @@ -362,20 +364,6 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/@electron-forge/cli/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, "node_modules/@electron-forge/cli/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -385,18 +373,6 @@ "node": ">=8" } }, - "node_modules/@electron-forge/cli/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, "node_modules/@electron-forge/cli/node_modules/semver": { "version": "7.3.7", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", @@ -424,15 +400,6 @@ "node": ">=8" } }, - "node_modules/@electron-forge/cli/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@electron-forge/core": { "version": "6.0.0-beta.65", "resolved": "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.65.tgz", @@ -605,20 +572,6 @@ "node": ">=10" } }, - "node_modules/@electron-forge/core/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, "node_modules/@electron-forge/core/node_modules/got": { "version": "11.8.5", "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", @@ -659,18 +612,6 @@ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true }, - "node_modules/@electron-forge/core/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, "node_modules/@electron-forge/core/node_modules/keyv": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.0.tgz", @@ -761,15 +702,6 @@ "node": ">=8" } }, - "node_modules/@electron-forge/core/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@electron-forge/installer-base": { "version": "6.0.0-beta.65", "resolved": "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.65.tgz", @@ -797,41 +729,6 @@ "node": ">= 14.17.5" } }, - "node_modules/@electron-forge/installer-darwin/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@electron-forge/installer-darwin/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@electron-forge/installer-darwin/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@electron-forge/installer-deb": { "version": "6.0.0-beta.65", "resolved": "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.65.tgz", @@ -859,41 +756,6 @@ "node": ">= 14.17.5" } }, - "node_modules/@electron-forge/installer-dmg/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@electron-forge/installer-dmg/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@electron-forge/installer-dmg/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@electron-forge/installer-exe": { "version": "6.0.0-beta.65", "resolved": "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.65.tgz", @@ -946,41 +808,6 @@ "node": ">= 14.17.5" } }, - "node_modules/@electron-forge/installer-zip/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@electron-forge/installer-zip/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@electron-forge/installer-zip/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@electron-forge/maker-base": { "version": "6.0.0-beta.65", "resolved": "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.65.tgz", @@ -995,41 +822,6 @@ "node": ">= 14.17.5" } }, - "node_modules/@electron-forge/maker-base/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@electron-forge/maker-base/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@electron-forge/maker-base/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@electron-forge/maker-deb": { "version": "6.0.0-beta.65", "resolved": "https://registry.npmjs.org/@electron-forge/maker-deb/-/maker-deb-6.0.0-beta.65.tgz", @@ -1079,41 +871,6 @@ "electron-winstaller": "^5.0.0" } }, - "node_modules/@electron-forge/maker-squirrel/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@electron-forge/maker-squirrel/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@electron-forge/maker-squirrel/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@electron-forge/maker-zip": { "version": "6.0.0-beta.65", "resolved": "https://registry.npmjs.org/@electron-forge/maker-zip/-/maker-zip-6.0.0-beta.65.tgz", @@ -1129,41 +886,6 @@ "node": ">= 14.17.5" } }, - "node_modules/@electron-forge/maker-zip/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@electron-forge/maker-zip/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@electron-forge/maker-zip/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@electron-forge/plugin-base": { "version": "6.0.0-beta.65", "resolved": "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.65.tgz", @@ -1220,41 +942,6 @@ "node": ">= 14.17.5" } }, - "node_modules/@electron-forge/template-base/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@electron-forge/template-base/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@electron-forge/template-base/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@electron-forge/template-typescript": { "version": "6.0.0-beta.65", "resolved": "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.65.tgz", @@ -1285,76 +972,6 @@ "node": ">= 14.17.5" } }, - "node_modules/@electron-forge/template-typescript-webpack/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@electron-forge/template-typescript-webpack/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@electron-forge/template-typescript-webpack/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/@electron-forge/template-typescript/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@electron-forge/template-typescript/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@electron-forge/template-typescript/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@electron-forge/template-webpack": { "version": "6.0.0-beta.65", "resolved": "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.65.tgz", @@ -1370,41 +987,6 @@ "node": ">= 14.17.5" } }, - "node_modules/@electron-forge/template-webpack/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@electron-forge/template-webpack/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@electron-forge/template-webpack/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@electron/get": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@electron/get/-/get-1.14.1.tgz", @@ -1427,6 +1009,20 @@ "global-tunnel-ng": "^2.7.1" } }, + "node_modules/@electron/get/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, "node_modules/@electron/universal": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-1.3.0.tgz", @@ -1553,6 +1149,48 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@fortawesome/fontawesome-common-types": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.2.0.tgz", + "integrity": "sha512-rBevIsj2nclStJ7AxTdfsa3ovHb1H+qApwrxcTVo+NNdeJiB9V75hsKfrkG5AwNcRUNxrPPiScGYCNmLMoh8pg==", + "hasInstallScript": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@fortawesome/fontawesome-svg-core": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.2.0.tgz", + "integrity": "sha512-Cf2mAAeMWFMzpLC7Y9H1I4o3wEU+XovVJhTiNG8ZNgSQj53yl7OCJaS80K4YjrABWZzbAHVaoHE1dVJ27AAYXw==", + "hasInstallScript": true, + "dependencies": { + "@fortawesome/fontawesome-common-types": "6.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@fortawesome/free-solid-svg-icons": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.2.0.tgz", + "integrity": "sha512-UjCILHIQ4I8cN46EiQn0CZL/h8AwCGgR//1c4R96Q5viSRwuKVo0NdQEc4bm+69ZwC0dUvjbDqAHF1RR5FA3XA==", + "hasInstallScript": true, + "dependencies": { + "@fortawesome/fontawesome-common-types": "6.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@fortawesome/vue-fontawesome": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@fortawesome/vue-fontawesome/-/vue-fontawesome-3.0.1.tgz", + "integrity": "sha512-CdXZJoCS+aEPec26ZP7hWWU3SaJlQPZSCGdgpQ2qGl2HUmtUUNrI3zC4XWdn1JUmh3t5OuDeRG1qB4eGRNSD4A==", + "peerDependencies": { + "@fortawesome/fontawesome-svg-core": "~1 || ~6", + "vue": ">= 3.0.0 < 4" + } + }, "node_modules/@gar/promisify": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", @@ -1864,6 +1502,118 @@ "@types/node": "*" } }, + "node_modules/@vue/compiler-core": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.39.tgz", + "integrity": "sha512-mf/36OWXqWn0wsC40nwRRGheR/qoID+lZXbIuLnr4/AngM0ov8Xvv8GHunC0rKRIkh60bTqydlqTeBo49rlbqw==", + "peer": true, + "dependencies": { + "@babel/parser": "^7.16.4", + "@vue/shared": "3.2.39", + "estree-walker": "^2.0.2", + "source-map": "^0.6.1" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.39.tgz", + "integrity": "sha512-HMFI25Be1C8vLEEv1hgEO1dWwG9QQ8LTTPmCkblVJY/O3OvWx6r1+zsox5mKPMGvqYEZa6l8j+xgOfUspgo7hw==", + "peer": true, + "dependencies": { + "@vue/compiler-core": "3.2.39", + "@vue/shared": "3.2.39" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.39.tgz", + "integrity": "sha512-fqAQgFs1/BxTUZkd0Vakn3teKUt//J3c420BgnYgEOoVdTwYpBTSXCMJ88GOBCylmUBbtquGPli9tVs7LzsWIA==", + "peer": true, + "dependencies": { + "@babel/parser": "^7.16.4", + "@vue/compiler-core": "3.2.39", + "@vue/compiler-dom": "3.2.39", + "@vue/compiler-ssr": "3.2.39", + "@vue/reactivity-transform": "3.2.39", + "@vue/shared": "3.2.39", + "estree-walker": "^2.0.2", + "magic-string": "^0.25.7", + "postcss": "^8.1.10", + "source-map": "^0.6.1" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.39.tgz", + "integrity": "sha512-EoGCJ6lincKOZGW+0Ky4WOKsSmqL7hp1ZYgen8M7u/mlvvEQUaO9tKKOy7K43M9U2aA3tPv0TuYYQFrEbK2eFQ==", + "peer": true, + "dependencies": { + "@vue/compiler-dom": "3.2.39", + "@vue/shared": "3.2.39" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.2.39.tgz", + "integrity": "sha512-vlaYX2a3qMhIZfrw3Mtfd+BuU+TZmvDrPMa+6lpfzS9k/LnGxkSuf0fhkP0rMGfiOHPtyKoU9OJJJFGm92beVQ==", + "peer": true, + "dependencies": { + "@vue/shared": "3.2.39" + } + }, + "node_modules/@vue/reactivity-transform": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.39.tgz", + "integrity": "sha512-HGuWu864zStiWs9wBC6JYOP1E00UjMdDWIG5W+FpUx28hV3uz9ODOKVNm/vdOy/Pvzg8+OcANxAVC85WFBbl3A==", + "peer": true, + "dependencies": { + "@babel/parser": "^7.16.4", + "@vue/compiler-core": "3.2.39", + "@vue/shared": "3.2.39", + "estree-walker": "^2.0.2", + "magic-string": "^0.25.7" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.2.39.tgz", + "integrity": "sha512-xKH5XP57JW5JW+8ZG1khBbuLakINTgPuINKL01hStWLTTGFOrM49UfCFXBcFvWmSbci3gmJyLl2EAzCaZWsx8g==", + "peer": true, + "dependencies": { + "@vue/reactivity": "3.2.39", + "@vue/shared": "3.2.39" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.2.39.tgz", + "integrity": "sha512-4G9AEJP+sLhsqf5wXcyKVWQKUhI+iWfy0hWQgea+CpaTD7BR0KdQzvoQdZhwCY6B3oleSyNLkLAQwm0ya/wNoA==", + "peer": true, + "dependencies": { + "@vue/runtime-core": "3.2.39", + "@vue/shared": "3.2.39", + "csstype": "^2.6.8" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.2.39.tgz", + "integrity": "sha512-1yn9u2YBQWIgytFMjz4f/t0j43awKytTGVptfd3FtBk76t1pd8mxbek0G/DrnjJhd2V7mSTb5qgnxMYt8Z5iSQ==", + "peer": true, + "dependencies": { + "@vue/compiler-ssr": "3.2.39", + "@vue/shared": "3.2.39" + }, + "peerDependencies": { + "vue": "3.2.39" + } + }, + "node_modules/@vue/shared": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.39.tgz", + "integrity": "sha512-D3dl2ZB9qE6mTuWPk9RlhDeP1dgNRUKC3NJxji74A4yL8M2MwlhLKUC/49WHjrNzSPug58fWx/yFbaTzGAQSBw==", + "peer": true + }, "node_modules/abbrev": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", @@ -2703,6 +2453,12 @@ "node": ">=12.10" } }, + "node_modules/csstype": { + "version": "2.6.21", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", + "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==", + "peer": true + }, "node_modules/cuint": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz", @@ -3510,32 +3266,6 @@ "url": "https://github.com/electron/electron-packager?sponsor=1" } }, - "node_modules/electron-packager/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/electron-packager/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, "node_modules/electron-packager/node_modules/semver": { "version": "7.3.7", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", @@ -3551,15 +3281,6 @@ "node": ">=10" } }, - "node_modules/electron-packager/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/electron-rebuild": { "version": "3.2.9", "resolved": "https://registry.npmjs.org/electron-rebuild/-/electron-rebuild-3.2.9.tgz", @@ -3703,20 +3424,6 @@ "node": ">=10" } }, - "node_modules/electron-rebuild/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, "node_modules/electron-rebuild/node_modules/got": { "version": "11.8.5", "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", @@ -3757,18 +3464,6 @@ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true }, - "node_modules/electron-rebuild/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, "node_modules/electron-rebuild/node_modules/keyv": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.0.tgz", @@ -3859,15 +3554,6 @@ "node": ">=8" } }, - "node_modules/electron-rebuild/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/electron-squirrel-startup": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/electron-squirrel-startup/-/electron-squirrel-startup-1.0.0.tgz", @@ -4536,6 +4222,12 @@ "node": ">=4.0" } }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "peer": true + }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", @@ -4889,17 +4581,35 @@ } }, "node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "dev": true, + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dependencies": { "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">=6 <7 || >=8" + "node": ">=12" + } + }, + "node_modules/fs-extra/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/fs-extra/node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "engines": { + "node": ">= 10.0.0" } }, "node_modules/fs-minipass": { @@ -5329,8 +5039,7 @@ "node_modules/graceful-fs": { "version": "4.2.10", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" }, "node_modules/graceful-readlink": { "version": "1.0.1", @@ -6347,6 +6056,15 @@ "node": ">=10.0.0" } }, + "node_modules/magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "peer": true, + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, "node_modules/make-fetch-happen": { "version": "10.2.1", "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", @@ -6395,17 +6113,6 @@ "node": ">=6" } }, - "node_modules/marked": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/marked/-/marked-4.1.0.tgz", - "integrity": "sha512-+Z6KDjSPa6/723PQYyc1axYZpYYpDnECDaU6hkaf5gqBieBkMKYReL5hteF2QizhlMbgbo8umXl/clZ67+GlsA==", - "bin": { - "marked": "bin/marked.js" - }, - "engines": { - "node": ">= 12" - } - }, "node_modules/matcher": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", @@ -6605,6 +6312,18 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, + "node_modules/nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "peer": true, + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", @@ -7253,6 +6972,12 @@ "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", "dev": true }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "peer": true + }, "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", @@ -7352,6 +7077,30 @@ "node": ">=6" } }, + "node_modules/postcss": { + "version": "8.4.16", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.16.tgz", + "integrity": "sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], + "peer": true, + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", @@ -7986,7 +7735,15 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "peer": true, "engines": { "node": ">=0.10.0" } @@ -8001,6 +7758,12 @@ "source-map": "^0.6.0" } }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "peer": true + }, "node_modules/spdx-correct": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", @@ -8527,6 +8290,19 @@ "spdx-expression-parse": "^3.0.0" } }, + "node_modules/vue": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.2.39.tgz", + "integrity": "sha512-tRkguhRTw9NmIPXhzk21YFBqXHT2t+6C6wPOgQ50fcFVWnPdetmRqbmySRHznrYjX2E47u0cGlKGcxKZJ38R/g==", + "peer": true, + "dependencies": { + "@vue/compiler-dom": "3.2.39", + "@vue/compiler-sfc": "3.2.39", + "@vue/runtime-dom": "3.2.39", + "@vue/server-renderer": "3.2.39", + "@vue/shared": "3.2.39" + } + }, "node_modules/wcwidth": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", @@ -8912,8 +8688,7 @@ "@babel/parser": { "version": "7.18.13", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.13.tgz", - "integrity": "sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==", - "dev": true + "integrity": "sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==" }, "@babel/template": { "version": "7.18.10", @@ -9071,33 +8846,12 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, "semver": { "version": "7.3.7", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", @@ -9115,12 +8869,6 @@ "requires": { "has-flag": "^4.0.0" } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true } } }, @@ -9247,17 +8995,6 @@ "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", "dev": true }, - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, "got": { "version": "11.8.5", "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", @@ -9289,16 +9026,6 @@ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, "keyv": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.0.tgz", @@ -9358,12 +9085,6 @@ "requires": { "has-flag": "^4.0.0" } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true } } }, @@ -9386,35 +9107,6 @@ "@electron-forge/installer-base": "6.0.0-beta.65", "fs-extra": "^10.0.0", "sudo-prompt": "^9.1.1" - }, - "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } } }, "@electron-forge/installer-deb": { @@ -9436,35 +9128,6 @@ "@malept/cross-spawn-promise": "^2.0.0", "debug": "^4.3.1", "fs-extra": "^10.0.0" - }, - "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } } }, "@electron-forge/installer-exe": { @@ -9505,35 +9168,6 @@ "@electron-forge/installer-darwin": "6.0.0-beta.65", "@malept/cross-spawn-promise": "^2.0.0", "fs-extra": "^10.0.0" - }, - "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } } }, "@electron-forge/maker-base": { @@ -9545,35 +9179,6 @@ "@electron-forge/shared-types": "6.0.0-beta.65", "fs-extra": "^10.0.0", "which": "^2.0.2" - }, - "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } } }, "@electron-forge/maker-deb": { @@ -9608,35 +9213,6 @@ "@electron-forge/shared-types": "6.0.0-beta.65", "electron-winstaller": "^5.0.0", "fs-extra": "^10.0.0" - }, - "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } } }, "@electron-forge/maker-zip": { @@ -9649,35 +9225,6 @@ "@electron-forge/shared-types": "6.0.0-beta.65", "cross-zip": "^4.0.0", "fs-extra": "^10.0.0" - }, - "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } } }, "@electron-forge/plugin-base": { @@ -9722,35 +9269,6 @@ "debug": "^4.3.1", "fs-extra": "^10.0.0", "username": "^5.1.0" - }, - "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } } }, "@electron-forge/template-typescript": { @@ -9763,35 +9281,6 @@ "@electron-forge/shared-types": "6.0.0-beta.65", "@electron-forge/template-base": "6.0.0-beta.65", "fs-extra": "^10.0.0" - }, - "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } } }, "@electron-forge/template-typescript-webpack": { @@ -9804,35 +9293,6 @@ "@electron-forge/shared-types": "6.0.0-beta.65", "@electron-forge/template-base": "6.0.0-beta.65", "fs-extra": "^10.0.0" - }, - "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } } }, "@electron-forge/template-webpack": { @@ -9845,35 +9305,6 @@ "@electron-forge/shared-types": "6.0.0-beta.65", "@electron-forge/template-base": "6.0.0-beta.65", "fs-extra": "^10.0.0" - }, - "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } } }, "@electron/get": { @@ -9891,6 +9322,19 @@ "progress": "^2.0.3", "semver": "^6.2.0", "sumchecker": "^3.0.1" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + } } }, "@electron/universal": { @@ -9981,6 +9425,33 @@ } } }, + "@fortawesome/fontawesome-common-types": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.2.0.tgz", + "integrity": "sha512-rBevIsj2nclStJ7AxTdfsa3ovHb1H+qApwrxcTVo+NNdeJiB9V75hsKfrkG5AwNcRUNxrPPiScGYCNmLMoh8pg==" + }, + "@fortawesome/fontawesome-svg-core": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.2.0.tgz", + "integrity": "sha512-Cf2mAAeMWFMzpLC7Y9H1I4o3wEU+XovVJhTiNG8ZNgSQj53yl7OCJaS80K4YjrABWZzbAHVaoHE1dVJ27AAYXw==", + "requires": { + "@fortawesome/fontawesome-common-types": "6.2.0" + } + }, + "@fortawesome/free-solid-svg-icons": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.2.0.tgz", + "integrity": "sha512-UjCILHIQ4I8cN46EiQn0CZL/h8AwCGgR//1c4R96Q5viSRwuKVo0NdQEc4bm+69ZwC0dUvjbDqAHF1RR5FA3XA==", + "requires": { + "@fortawesome/fontawesome-common-types": "6.2.0" + } + }, + "@fortawesome/vue-fontawesome": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@fortawesome/vue-fontawesome/-/vue-fontawesome-3.0.1.tgz", + "integrity": "sha512-CdXZJoCS+aEPec26ZP7hWWU3SaJlQPZSCGdgpQ2qGl2HUmtUUNrI3zC4XWdn1JUmh3t5OuDeRG1qB4eGRNSD4A==", + "requires": {} + }, "@gar/promisify": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", @@ -10228,6 +9699,115 @@ "@types/node": "*" } }, + "@vue/compiler-core": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.39.tgz", + "integrity": "sha512-mf/36OWXqWn0wsC40nwRRGheR/qoID+lZXbIuLnr4/AngM0ov8Xvv8GHunC0rKRIkh60bTqydlqTeBo49rlbqw==", + "peer": true, + "requires": { + "@babel/parser": "^7.16.4", + "@vue/shared": "3.2.39", + "estree-walker": "^2.0.2", + "source-map": "^0.6.1" + } + }, + "@vue/compiler-dom": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.39.tgz", + "integrity": "sha512-HMFI25Be1C8vLEEv1hgEO1dWwG9QQ8LTTPmCkblVJY/O3OvWx6r1+zsox5mKPMGvqYEZa6l8j+xgOfUspgo7hw==", + "peer": true, + "requires": { + "@vue/compiler-core": "3.2.39", + "@vue/shared": "3.2.39" + } + }, + "@vue/compiler-sfc": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.39.tgz", + "integrity": "sha512-fqAQgFs1/BxTUZkd0Vakn3teKUt//J3c420BgnYgEOoVdTwYpBTSXCMJ88GOBCylmUBbtquGPli9tVs7LzsWIA==", + "peer": true, + "requires": { + "@babel/parser": "^7.16.4", + "@vue/compiler-core": "3.2.39", + "@vue/compiler-dom": "3.2.39", + "@vue/compiler-ssr": "3.2.39", + "@vue/reactivity-transform": "3.2.39", + "@vue/shared": "3.2.39", + "estree-walker": "^2.0.2", + "magic-string": "^0.25.7", + "postcss": "^8.1.10", + "source-map": "^0.6.1" + } + }, + "@vue/compiler-ssr": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.39.tgz", + "integrity": "sha512-EoGCJ6lincKOZGW+0Ky4WOKsSmqL7hp1ZYgen8M7u/mlvvEQUaO9tKKOy7K43M9U2aA3tPv0TuYYQFrEbK2eFQ==", + "peer": true, + "requires": { + "@vue/compiler-dom": "3.2.39", + "@vue/shared": "3.2.39" + } + }, + "@vue/reactivity": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.2.39.tgz", + "integrity": "sha512-vlaYX2a3qMhIZfrw3Mtfd+BuU+TZmvDrPMa+6lpfzS9k/LnGxkSuf0fhkP0rMGfiOHPtyKoU9OJJJFGm92beVQ==", + "peer": true, + "requires": { + "@vue/shared": "3.2.39" + } + }, + "@vue/reactivity-transform": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.39.tgz", + "integrity": "sha512-HGuWu864zStiWs9wBC6JYOP1E00UjMdDWIG5W+FpUx28hV3uz9ODOKVNm/vdOy/Pvzg8+OcANxAVC85WFBbl3A==", + "peer": true, + "requires": { + "@babel/parser": "^7.16.4", + "@vue/compiler-core": "3.2.39", + "@vue/shared": "3.2.39", + "estree-walker": "^2.0.2", + "magic-string": "^0.25.7" + } + }, + "@vue/runtime-core": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.2.39.tgz", + "integrity": "sha512-xKH5XP57JW5JW+8ZG1khBbuLakINTgPuINKL01hStWLTTGFOrM49UfCFXBcFvWmSbci3gmJyLl2EAzCaZWsx8g==", + "peer": true, + "requires": { + "@vue/reactivity": "3.2.39", + "@vue/shared": "3.2.39" + } + }, + "@vue/runtime-dom": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.2.39.tgz", + "integrity": "sha512-4G9AEJP+sLhsqf5wXcyKVWQKUhI+iWfy0hWQgea+CpaTD7BR0KdQzvoQdZhwCY6B3oleSyNLkLAQwm0ya/wNoA==", + "peer": true, + "requires": { + "@vue/runtime-core": "3.2.39", + "@vue/shared": "3.2.39", + "csstype": "^2.6.8" + } + }, + "@vue/server-renderer": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.2.39.tgz", + "integrity": "sha512-1yn9u2YBQWIgytFMjz4f/t0j43awKytTGVptfd3FtBk76t1pd8mxbek0G/DrnjJhd2V7mSTb5qgnxMYt8Z5iSQ==", + "peer": true, + "requires": { + "@vue/compiler-ssr": "3.2.39", + "@vue/shared": "3.2.39" + } + }, + "@vue/shared": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.39.tgz", + "integrity": "sha512-D3dl2ZB9qE6mTuWPk9RlhDeP1dgNRUKC3NJxji74A4yL8M2MwlhLKUC/49WHjrNzSPug58fWx/yFbaTzGAQSBw==", + "peer": true + }, "abbrev": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", @@ -10840,6 +10420,12 @@ "integrity": "sha512-MEzGfZo0rqE10O/B+AEcCSJLZsrWuRUvmqJTqHNqBtALhaJc3E3ixLGLJNTRzEA2K34wbmOHC4fwYs9sVsdcCA==", "dev": true }, + "csstype": { + "version": "2.6.21", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", + "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==", + "peer": true + }, "cuint": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz", @@ -11447,27 +11033,6 @@ "yargs-parser": "^20.2.9" }, "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, "semver": { "version": "7.3.7", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", @@ -11476,12 +11041,6 @@ "requires": { "lru-cache": "^6.0.0" } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true } } }, @@ -11586,17 +11145,6 @@ "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", "dev": true }, - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, "got": { "version": "11.8.5", "resolved": "https://registry.npmjs.org/got/-/got-11.8.5.tgz", @@ -11628,16 +11176,6 @@ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, "keyv": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.0.tgz", @@ -11697,12 +11235,6 @@ "requires": { "has-flag": "^4.0.0" } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true } } }, @@ -12240,6 +11772,12 @@ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true }, + "estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "peer": true + }, "esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", @@ -12515,14 +12053,29 @@ } }, "fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "dev": true, + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "requires": { "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "dependencies": { + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + } } }, "fs-minipass": { @@ -12872,8 +12425,7 @@ "graceful-fs": { "version": "4.2.10", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" }, "graceful-readlink": { "version": "1.0.1", @@ -13621,6 +13173,15 @@ "readable-stream": "^3.6.0" } }, + "magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "peer": true, + "requires": { + "sourcemap-codec": "^1.4.8" + } + }, "make-fetch-happen": { "version": "10.2.1", "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", @@ -13662,11 +13223,6 @@ "p-defer": "^1.0.0" } }, - "marked": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/marked/-/marked-4.1.0.tgz", - "integrity": "sha512-+Z6KDjSPa6/723PQYyc1axYZpYYpDnECDaU6hkaf5gqBieBkMKYReL5hteF2QizhlMbgbo8umXl/clZ67+GlsA==" - }, "matcher": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", @@ -13816,6 +13372,12 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, + "nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "peer": true + }, "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", @@ -14283,6 +13845,12 @@ "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", "dev": true }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "peer": true + }, "picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", @@ -14354,6 +13922,17 @@ "xmlbuilder": "^15.1.1" } }, + "postcss": { + "version": "8.4.16", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.16.tgz", + "integrity": "sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==", + "peer": true, + "requires": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, "prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", @@ -14801,8 +14380,13 @@ "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "peer": true }, "source-map-support": { "version": "0.5.21", @@ -14814,6 +14398,12 @@ "source-map": "^0.6.0" } }, + "sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "peer": true + }, "spdx-correct": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", @@ -15240,6 +14830,19 @@ "spdx-expression-parse": "^3.0.0" } }, + "vue": { + "version": "3.2.39", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.2.39.tgz", + "integrity": "sha512-tRkguhRTw9NmIPXhzk21YFBqXHT2t+6C6wPOgQ50fcFVWnPdetmRqbmySRHznrYjX2E47u0cGlKGcxKZJ38R/g==", + "peer": true, + "requires": { + "@vue/compiler-dom": "3.2.39", + "@vue/compiler-sfc": "3.2.39", + "@vue/runtime-dom": "3.2.39", + "@vue/server-renderer": "3.2.39", + "@vue/shared": "3.2.39" + } + }, "wcwidth": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", diff --git a/package.json b/package.json index a0494fb..9a58077 100644 --- a/package.json +++ b/package.json @@ -1,57 +1,60 @@ { - "name": "firesale", - "version": "1.0.0", - "description": "Salud y Vida Timesheet", - "main": "app_main/main.js", - "scripts": { - "start": "electron-forge start", - "postinstall": "electron-rebuild", - "package": "electron-forge package", - "make": "electron-forge make" - }, - "keywords": [], - "author": "José Conde", - "license": "ISC", - "dependencies": { - "electron-squirrel-startup": "^1.0.0", - "marked": "^4.1.0" - }, - "devDependencies": { - "@electron-forge/cli": "^6.0.0-beta.65", - "@electron-forge/maker-deb": "^6.0.0-beta.65", - "@electron-forge/maker-rpm": "^6.0.0-beta.65", - "@electron-forge/maker-squirrel": "^6.0.0-beta.65", - "@electron-forge/maker-zip": "^6.0.0-beta.65", - "babel-eslint": "^10.1.0", - "devtron": "^1.4.0", - "electron": "^20.1.1", - "eslint": "^8.23.0", - "eslint-plugin-import": "^2.26.0" - }, - "config": { - "forge": { - "packagerConfig": {}, - "makers": [{ - "name": "@electron-forge/maker-squirrel", - "config": { - "name": "firesale" - } - }, - { - "name": "@electron-forge/maker-zip", - "platforms": [ - "darwin" - ] - }, - { - "name": "@electron-forge/maker-deb", - "config": {} - }, - { - "name": "@electron-forge/maker-rpm", - "config": {} - } - ] + "name": "syv-timesheet", + "version": "1.5.0", + "description": "Salud y Vida Timesheet", + "main": "app/main.js", + "scripts": { + "start": "electron-forge start", + "postinstall": "electron-rebuild", + "package": "electron-forge package", + "make": "electron-forge make" + }, + "keywords": [], + "author": "José Conde", + "license": "ISC", + "dependencies": { + "@fortawesome/fontawesome-svg-core": "^6.2.0", + "@fortawesome/free-solid-svg-icons": "^6.2.0", + "@fortawesome/vue-fontawesome": "^3.0.1", + "electron-squirrel-startup": "^1.0.0", + "fs-extra": "^10.1.0" + }, + "devDependencies": { + "@electron-forge/cli": "^6.0.0-beta.65", + "@electron-forge/maker-deb": "^6.0.0-beta.65", + "@electron-forge/maker-rpm": "^6.0.0-beta.65", + "@electron-forge/maker-squirrel": "^6.0.0-beta.65", + "@electron-forge/maker-zip": "^6.0.0-beta.65", + "babel-eslint": "^10.1.0", + "devtron": "^1.4.0", + "electron": "^20.1.1", + "eslint": "^8.23.0", + "eslint-plugin-import": "^2.26.0" + }, + "config": { + "forge": { + "packagerConfig": {}, + "makers": [{ + "name": "@electron-forge/maker-squirrel", + "config": { + "name": "firesale" + } + }, + { + "name": "@electron-forge/maker-zip", + "platforms": [ + "darwin" + ] + }, + { + "name": "@electron-forge/maker-deb", + "config": {} + }, + { + "name": "@electron-forge/maker-rpm", + "config": {} } + ] } + } } \ No newline at end of file diff --git a/ui/.gitignore b/ui/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/ui/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/ui/.vscode/extensions.json b/ui/.vscode/extensions.json new file mode 100644 index 0000000..a7cea0b --- /dev/null +++ b/ui/.vscode/extensions.json @@ -0,0 +1,3 @@ +{ + "recommendations": ["Vue.volar"] +} diff --git a/ui/README.md b/ui/README.md new file mode 100644 index 0000000..867ac7f --- /dev/null +++ b/ui/README.md @@ -0,0 +1,9 @@ +# Vue 3 + Vite + +This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 ` + + + \ No newline at end of file diff --git a/ui/package-lock.json b/ui/package-lock.json new file mode 100644 index 0000000..5e89fdd --- /dev/null +++ b/ui/package-lock.json @@ -0,0 +1,1776 @@ +{ + "name": "app_ui", + "version": "0.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "app_ui", + "version": "0.0.0", + "dependencies": { + "@formkit/themes": "^1.0.0-beta.11", + "@formkit/vue": "^1.0.0-beta.11", + "moment": "^2.29.4", + "moment-timezone": "^0.5.37", + "vue": "^3.2.37", + "vue-router": "^4.1.5" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^3.0.3", + "sass": "^1.55.0", + "vite": "^3.0.7" + } + }, + "node_modules/@babel/parser": { + "version": "7.18.13", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.13.tgz", + "integrity": "sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz", + "integrity": "sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@formkit/core": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/core/-/core-1.0.0-beta.11.tgz", + "integrity": "sha512-1yIQUicY1ZVGkeT0AEVp3ahx5FdJg+snyc8yaitsNmQeCSq1Ju5o1nCRcpcZ7j2ezMbGUiL7nTscGGejC15N2Q==", + "dependencies": { + "@formkit/utils": "1.0.0-beta.11" + } + }, + "node_modules/@formkit/dev": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/dev/-/dev-1.0.0-beta.11.tgz", + "integrity": "sha512-YuPfE4ZoIAOQfawKlnCxXdnNOktckGNUhtCirpgsyBuHVu15rX1E5mYRAyEBhDGeEPV8IOFNpooSKA/y9W7dtw==", + "dependencies": { + "@formkit/core": "1.0.0-beta.11", + "@formkit/utils": "1.0.0-beta.11" + } + }, + "node_modules/@formkit/i18n": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/i18n/-/i18n-1.0.0-beta.11.tgz", + "integrity": "sha512-ID4y9r5NoKy+rIiv41UGCtrg8iR3Lor30oBEUJlEDPAh34vlwh4g2jorXgysdSVMRCuLnqGyGspLnrPdxgSszw==", + "dependencies": { + "@formkit/core": "1.0.0-beta.11", + "@formkit/utils": "1.0.0-beta.11", + "@formkit/validation": "1.0.0-beta.11" + } + }, + "node_modules/@formkit/inputs": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/inputs/-/inputs-1.0.0-beta.11.tgz", + "integrity": "sha512-DF+olkewjAE/q+alsG1t4GFX7JHzVvTCukOOEuqp8AzT+MGyZFzxikSXd8qA5zX+1BvRCgQwzWZMBaQLUo3IMA==", + "dependencies": { + "@formkit/core": "1.0.0-beta.11" + } + }, + "node_modules/@formkit/observer": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/observer/-/observer-1.0.0-beta.11.tgz", + "integrity": "sha512-jpOqOJdpydl/2eOL0yXVZjXYdk9tY0EsAf9e5PTxXcWOZpBskSwPdjNMnx8y9ycrpj6lKPcbMfs2bjnQQue8IQ==", + "dependencies": { + "@formkit/core": "1.0.0-beta.11", + "@formkit/utils": "1.0.0-beta.11" + } + }, + "node_modules/@formkit/rules": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/rules/-/rules-1.0.0-beta.11.tgz", + "integrity": "sha512-6SQ+fGXTx9MLMUk832x9oR/423U4/7TpDxyx/cjz1xaQjAKzorwNGbjiiRszp4f3cSYcpyi/SZ36n0UktLaCVA==", + "dependencies": { + "@formkit/core": "1.0.0-beta.11", + "@formkit/utils": "1.0.0-beta.11", + "@formkit/validation": "1.0.0-beta.11" + } + }, + "node_modules/@formkit/themes": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/themes/-/themes-1.0.0-beta.11.tgz", + "integrity": "sha512-OmefvFoLHZLnmbuT+Mqbqr681rumc62Q08Y1g82ZxG6aXWculwQYVQfZJeJFrqrJPpccsfoSflWeAuAMWiP/Yw==", + "dependencies": { + "@formkit/core": "1.0.0-beta.11" + }, + "peerDependencies": { + "tailwindcss": "^3.0.0", + "unocss": "^0.31.0", + "windicss": "^3.0.0" + }, + "peerDependenciesMeta": { + "tailwindcss": { + "optional": true + }, + "unocss": { + "optional": true + }, + "windicss": { + "optional": true + } + } + }, + "node_modules/@formkit/utils": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/utils/-/utils-1.0.0-beta.11.tgz", + "integrity": "sha512-ajeB6A0WJXaErwIgdHGnVZotghvWOZ+JvFKK6fM/rYQza2O4YFiPAVKqJRQjMbW5Jxia4sT7PQhPUFvZQFbuKQ==" + }, + "node_modules/@formkit/validation": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/validation/-/validation-1.0.0-beta.11.tgz", + "integrity": "sha512-7HePIek0Y2MsH45lHDyCekJfENNdIr8ZIkJQx4VwAlfbIyZElZx5VsxInCSLf/03aOu4PhabOxpNUt38AP2hAg==", + "dependencies": { + "@formkit/core": "1.0.0-beta.11", + "@formkit/observer": "1.0.0-beta.11" + } + }, + "node_modules/@formkit/vue": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/vue/-/vue-1.0.0-beta.11.tgz", + "integrity": "sha512-0tVy8JZ/j4QbmYlVPJyFGZOukWgRBTV+DhyGo82FZvvb2+YrRAbDhqJGLIjLyOO0pNTwk7arSgDiiKd/OK8LtA==", + "dependencies": { + "@formkit/core": "1.0.0-beta.11", + "@formkit/dev": "1.0.0-beta.11", + "@formkit/i18n": "1.0.0-beta.11", + "@formkit/inputs": "1.0.0-beta.11", + "@formkit/observer": "1.0.0-beta.11", + "@formkit/rules": "1.0.0-beta.11", + "@formkit/themes": "1.0.0-beta.11", + "@formkit/utils": "1.0.0-beta.11", + "@formkit/validation": "1.0.0-beta.11" + }, + "peerDependencies": { + "vue": "^3.2.1" + } + }, + "node_modules/@vitejs/plugin-vue": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-3.0.3.tgz", + "integrity": "sha512-U4zNBlz9mg+TA+i+5QPc3N5lQvdUXENZLO2h0Wdzp56gI1MWhqJOv+6R+d4kOzoaSSq6TnGPBdZAXKOe4lXy6g==", + "dev": true, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^3.0.0", + "vue": "^3.2.25" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.38.tgz", + "integrity": "sha512-/FsvnSu7Z+lkd/8KXMa4yYNUiqQrI22135gfsQYVGuh5tqEgOB0XqrUdb/KnCLa5+TmQLPwvyUnKMyCpu+SX3Q==", + "dependencies": { + "@babel/parser": "^7.16.4", + "@vue/shared": "3.2.38", + "estree-walker": "^2.0.2", + "source-map": "^0.6.1" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.38.tgz", + "integrity": "sha512-zqX4FgUbw56kzHlgYuEEJR8mefFiiyR3u96498+zWPsLeh1WKvgIReoNE+U7gG8bCUdvsrJ0JRmev0Ky6n2O0g==", + "dependencies": { + "@vue/compiler-core": "3.2.38", + "@vue/shared": "3.2.38" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.38.tgz", + "integrity": "sha512-KZjrW32KloMYtTcHAFuw3CqsyWc5X6seb8KbkANSWt3Cz9p2qA8c1GJpSkksFP9ABb6an0FLCFl46ZFXx3kKpg==", + "dependencies": { + "@babel/parser": "^7.16.4", + "@vue/compiler-core": "3.2.38", + "@vue/compiler-dom": "3.2.38", + "@vue/compiler-ssr": "3.2.38", + "@vue/reactivity-transform": "3.2.38", + "@vue/shared": "3.2.38", + "estree-walker": "^2.0.2", + "magic-string": "^0.25.7", + "postcss": "^8.1.10", + "source-map": "^0.6.1" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.38.tgz", + "integrity": "sha512-bm9jOeyv1H3UskNm4S6IfueKjUNFmi2kRweFIGnqaGkkRePjwEcfCVqyS3roe7HvF4ugsEkhf4+kIvDhip6XzQ==", + "dependencies": { + "@vue/compiler-dom": "3.2.38", + "@vue/shared": "3.2.38" + } + }, + "node_modules/@vue/devtools-api": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.2.1.tgz", + "integrity": "sha512-OEgAMeQXvCoJ+1x8WyQuVZzFo0wcyCmUR3baRVLmKBo1LmYZWMlRiXlux5jd0fqVJu6PfDbOrZItVqUEzLobeQ==" + }, + "node_modules/@vue/reactivity": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.2.38.tgz", + "integrity": "sha512-6L4myYcH9HG2M25co7/BSo0skKFHpAN8PhkNPM4xRVkyGl1K5M3Jx4rp5bsYhvYze2K4+l+pioN4e6ZwFLUVtw==", + "dependencies": { + "@vue/shared": "3.2.38" + } + }, + "node_modules/@vue/reactivity-transform": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.38.tgz", + "integrity": "sha512-3SD3Jmi1yXrDwiNJqQ6fs1x61WsDLqVk4NyKVz78mkaIRh6d3IqtRnptgRfXn+Fzf+m6B1KxBYWq1APj6h4qeA==", + "dependencies": { + "@babel/parser": "^7.16.4", + "@vue/compiler-core": "3.2.38", + "@vue/shared": "3.2.38", + "estree-walker": "^2.0.2", + "magic-string": "^0.25.7" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.2.38.tgz", + "integrity": "sha512-kk0qiSiXUU/IKxZw31824rxmFzrLr3TL6ZcbrxWTKivadoKupdlzbQM4SlGo4MU6Zzrqv4fzyUasTU1jDoEnzg==", + "dependencies": { + "@vue/reactivity": "3.2.38", + "@vue/shared": "3.2.38" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.2.38.tgz", + "integrity": "sha512-4PKAb/ck2TjxdMSzMsnHViOrrwpudk4/A56uZjhzvusoEU9xqa5dygksbzYepdZeB5NqtRw5fRhWIiQlRVK45A==", + "dependencies": { + "@vue/runtime-core": "3.2.38", + "@vue/shared": "3.2.38", + "csstype": "^2.6.8" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.2.38.tgz", + "integrity": "sha512-pg+JanpbOZ5kEfOZzO2bt02YHd+ELhYP8zPeLU1H0e7lg079NtuuSB8fjLdn58c4Ou8UQ6C1/P+528nXnLPAhA==", + "dependencies": { + "@vue/compiler-ssr": "3.2.38", + "@vue/shared": "3.2.38" + }, + "peerDependencies": { + "vue": "3.2.38" + } + }, + "node_modules/@vue/shared": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.38.tgz", + "integrity": "sha512-dTyhTIRmGXBjxJE+skC8tTWCGLCVc4wQgRRLt8+O9p5ewBAjoBwtCAkLPrtToSr1xltoe3st21Pv953aOZ7alg==" + }, + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/csstype": { + "version": "2.6.20", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.20.tgz", + "integrity": "sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==" + }, + "node_modules/esbuild": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.54.tgz", + "integrity": "sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/linux-loong64": "0.14.54", + "esbuild-android-64": "0.14.54", + "esbuild-android-arm64": "0.14.54", + "esbuild-darwin-64": "0.14.54", + "esbuild-darwin-arm64": "0.14.54", + "esbuild-freebsd-64": "0.14.54", + "esbuild-freebsd-arm64": "0.14.54", + "esbuild-linux-32": "0.14.54", + "esbuild-linux-64": "0.14.54", + "esbuild-linux-arm": "0.14.54", + "esbuild-linux-arm64": "0.14.54", + "esbuild-linux-mips64le": "0.14.54", + "esbuild-linux-ppc64le": "0.14.54", + "esbuild-linux-riscv64": "0.14.54", + "esbuild-linux-s390x": "0.14.54", + "esbuild-netbsd-64": "0.14.54", + "esbuild-openbsd-64": "0.14.54", + "esbuild-sunos-64": "0.14.54", + "esbuild-windows-32": "0.14.54", + "esbuild-windows-64": "0.14.54", + "esbuild-windows-arm64": "0.14.54" + } + }, + "node_modules/esbuild-android-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz", + "integrity": "sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-android-arm64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz", + "integrity": "sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-darwin-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz", + "integrity": "sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-darwin-arm64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz", + "integrity": "sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-freebsd-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz", + "integrity": "sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-freebsd-arm64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz", + "integrity": "sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-32": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz", + "integrity": "sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz", + "integrity": "sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-arm": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz", + "integrity": "sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-arm64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz", + "integrity": "sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-mips64le": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz", + "integrity": "sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-ppc64le": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz", + "integrity": "sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-riscv64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz", + "integrity": "sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-s390x": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz", + "integrity": "sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-netbsd-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz", + "integrity": "sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-openbsd-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz", + "integrity": "sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-sunos-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz", + "integrity": "sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-32": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz", + "integrity": "sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz", + "integrity": "sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-arm64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz", + "integrity": "sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/immutable": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.1.0.tgz", + "integrity": "sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==", + "dev": true + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", + "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, + "node_modules/moment": { + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", + "engines": { + "node": "*" + } + }, + "node_modules/moment-timezone": { + "version": "0.5.37", + "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.37.tgz", + "integrity": "sha512-uEDzDNFhfaywRl+vwXxffjjq1q0Vzr+fcQpQ1bU0kbzorfS7zVtZnCnGc8mhWmF39d4g4YriF6kwA75mJKE/Zg==", + "dependencies": { + "moment": ">= 2.9.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.4.16", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.16.tgz", + "integrity": "sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/rollup": { + "version": "2.77.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.77.3.tgz", + "integrity": "sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==", + "dev": true, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/sass": { + "version": "1.55.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.55.0.tgz", + "integrity": "sha512-Pk+PMy7OGLs9WaxZGJMn7S96dvlyVBwwtToX895WmCpAOr5YiJYEUJfiJidMuKb613z2xNWcXCHEuOvjZbqC6A==", + "dev": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/vite": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/vite/-/vite-3.0.9.tgz", + "integrity": "sha512-waYABTM+G6DBTCpYAxvevpG50UOlZuynR0ckTK5PawNVt7ebX6X7wNXHaGIO6wYYFXSM7/WcuFuO2QzhBB6aMw==", + "dev": true, + "dependencies": { + "esbuild": "^0.14.47", + "postcss": "^8.4.16", + "resolve": "^1.22.1", + "rollup": ">=2.75.6 <2.77.0 || ~2.77.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "less": "*", + "sass": "*", + "stylus": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "less": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vue": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.2.38.tgz", + "integrity": "sha512-hHrScEFSmDAWL0cwO4B6WO7D3sALZPbfuThDsGBebthrNlDxdJZpGR3WB87VbjpPh96mep1+KzukYEhpHDFa8Q==", + "dependencies": { + "@vue/compiler-dom": "3.2.38", + "@vue/compiler-sfc": "3.2.38", + "@vue/runtime-dom": "3.2.38", + "@vue/server-renderer": "3.2.38", + "@vue/shared": "3.2.38" + } + }, + "node_modules/vue-router": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.1.5.tgz", + "integrity": "sha512-IsvoF5D2GQ/EGTs/Th4NQms9gd2NSqV+yylxIyp/OYp8xOwxmU8Kj/74E9DTSYAyH5LX7idVUngN3JSj1X4xcQ==", + "dependencies": { + "@vue/devtools-api": "^6.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/posva" + }, + "peerDependencies": { + "vue": "^3.2.0" + } + } + }, + "dependencies": { + "@babel/parser": { + "version": "7.18.13", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.13.tgz", + "integrity": "sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==" + }, + "@esbuild/linux-loong64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz", + "integrity": "sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==", + "dev": true, + "optional": true + }, + "@formkit/core": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/core/-/core-1.0.0-beta.11.tgz", + "integrity": "sha512-1yIQUicY1ZVGkeT0AEVp3ahx5FdJg+snyc8yaitsNmQeCSq1Ju5o1nCRcpcZ7j2ezMbGUiL7nTscGGejC15N2Q==", + "requires": { + "@formkit/utils": "1.0.0-beta.11" + } + }, + "@formkit/dev": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/dev/-/dev-1.0.0-beta.11.tgz", + "integrity": "sha512-YuPfE4ZoIAOQfawKlnCxXdnNOktckGNUhtCirpgsyBuHVu15rX1E5mYRAyEBhDGeEPV8IOFNpooSKA/y9W7dtw==", + "requires": { + "@formkit/core": "1.0.0-beta.11", + "@formkit/utils": "1.0.0-beta.11" + } + }, + "@formkit/i18n": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/i18n/-/i18n-1.0.0-beta.11.tgz", + "integrity": "sha512-ID4y9r5NoKy+rIiv41UGCtrg8iR3Lor30oBEUJlEDPAh34vlwh4g2jorXgysdSVMRCuLnqGyGspLnrPdxgSszw==", + "requires": { + "@formkit/core": "1.0.0-beta.11", + "@formkit/utils": "1.0.0-beta.11", + "@formkit/validation": "1.0.0-beta.11" + } + }, + "@formkit/inputs": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/inputs/-/inputs-1.0.0-beta.11.tgz", + "integrity": "sha512-DF+olkewjAE/q+alsG1t4GFX7JHzVvTCukOOEuqp8AzT+MGyZFzxikSXd8qA5zX+1BvRCgQwzWZMBaQLUo3IMA==", + "requires": { + "@formkit/core": "1.0.0-beta.11" + } + }, + "@formkit/observer": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/observer/-/observer-1.0.0-beta.11.tgz", + "integrity": "sha512-jpOqOJdpydl/2eOL0yXVZjXYdk9tY0EsAf9e5PTxXcWOZpBskSwPdjNMnx8y9ycrpj6lKPcbMfs2bjnQQue8IQ==", + "requires": { + "@formkit/core": "1.0.0-beta.11", + "@formkit/utils": "1.0.0-beta.11" + } + }, + "@formkit/rules": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/rules/-/rules-1.0.0-beta.11.tgz", + "integrity": "sha512-6SQ+fGXTx9MLMUk832x9oR/423U4/7TpDxyx/cjz1xaQjAKzorwNGbjiiRszp4f3cSYcpyi/SZ36n0UktLaCVA==", + "requires": { + "@formkit/core": "1.0.0-beta.11", + "@formkit/utils": "1.0.0-beta.11", + "@formkit/validation": "1.0.0-beta.11" + } + }, + "@formkit/themes": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/themes/-/themes-1.0.0-beta.11.tgz", + "integrity": "sha512-OmefvFoLHZLnmbuT+Mqbqr681rumc62Q08Y1g82ZxG6aXWculwQYVQfZJeJFrqrJPpccsfoSflWeAuAMWiP/Yw==", + "requires": { + "@formkit/core": "1.0.0-beta.11" + } + }, + "@formkit/utils": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/utils/-/utils-1.0.0-beta.11.tgz", + "integrity": "sha512-ajeB6A0WJXaErwIgdHGnVZotghvWOZ+JvFKK6fM/rYQza2O4YFiPAVKqJRQjMbW5Jxia4sT7PQhPUFvZQFbuKQ==" + }, + "@formkit/validation": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/validation/-/validation-1.0.0-beta.11.tgz", + "integrity": "sha512-7HePIek0Y2MsH45lHDyCekJfENNdIr8ZIkJQx4VwAlfbIyZElZx5VsxInCSLf/03aOu4PhabOxpNUt38AP2hAg==", + "requires": { + "@formkit/core": "1.0.0-beta.11", + "@formkit/observer": "1.0.0-beta.11" + } + }, + "@formkit/vue": { + "version": "1.0.0-beta.11", + "resolved": "https://registry.npmjs.org/@formkit/vue/-/vue-1.0.0-beta.11.tgz", + "integrity": "sha512-0tVy8JZ/j4QbmYlVPJyFGZOukWgRBTV+DhyGo82FZvvb2+YrRAbDhqJGLIjLyOO0pNTwk7arSgDiiKd/OK8LtA==", + "requires": { + "@formkit/core": "1.0.0-beta.11", + "@formkit/dev": "1.0.0-beta.11", + "@formkit/i18n": "1.0.0-beta.11", + "@formkit/inputs": "1.0.0-beta.11", + "@formkit/observer": "1.0.0-beta.11", + "@formkit/rules": "1.0.0-beta.11", + "@formkit/themes": "1.0.0-beta.11", + "@formkit/utils": "1.0.0-beta.11", + "@formkit/validation": "1.0.0-beta.11" + } + }, + "@vitejs/plugin-vue": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-3.0.3.tgz", + "integrity": "sha512-U4zNBlz9mg+TA+i+5QPc3N5lQvdUXENZLO2h0Wdzp56gI1MWhqJOv+6R+d4kOzoaSSq6TnGPBdZAXKOe4lXy6g==", + "dev": true, + "requires": {} + }, + "@vue/compiler-core": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.38.tgz", + "integrity": "sha512-/FsvnSu7Z+lkd/8KXMa4yYNUiqQrI22135gfsQYVGuh5tqEgOB0XqrUdb/KnCLa5+TmQLPwvyUnKMyCpu+SX3Q==", + "requires": { + "@babel/parser": "^7.16.4", + "@vue/shared": "3.2.38", + "estree-walker": "^2.0.2", + "source-map": "^0.6.1" + } + }, + "@vue/compiler-dom": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.38.tgz", + "integrity": "sha512-zqX4FgUbw56kzHlgYuEEJR8mefFiiyR3u96498+zWPsLeh1WKvgIReoNE+U7gG8bCUdvsrJ0JRmev0Ky6n2O0g==", + "requires": { + "@vue/compiler-core": "3.2.38", + "@vue/shared": "3.2.38" + } + }, + "@vue/compiler-sfc": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.38.tgz", + "integrity": "sha512-KZjrW32KloMYtTcHAFuw3CqsyWc5X6seb8KbkANSWt3Cz9p2qA8c1GJpSkksFP9ABb6an0FLCFl46ZFXx3kKpg==", + "requires": { + "@babel/parser": "^7.16.4", + "@vue/compiler-core": "3.2.38", + "@vue/compiler-dom": "3.2.38", + "@vue/compiler-ssr": "3.2.38", + "@vue/reactivity-transform": "3.2.38", + "@vue/shared": "3.2.38", + "estree-walker": "^2.0.2", + "magic-string": "^0.25.7", + "postcss": "^8.1.10", + "source-map": "^0.6.1" + } + }, + "@vue/compiler-ssr": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.38.tgz", + "integrity": "sha512-bm9jOeyv1H3UskNm4S6IfueKjUNFmi2kRweFIGnqaGkkRePjwEcfCVqyS3roe7HvF4ugsEkhf4+kIvDhip6XzQ==", + "requires": { + "@vue/compiler-dom": "3.2.38", + "@vue/shared": "3.2.38" + } + }, + "@vue/devtools-api": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.2.1.tgz", + "integrity": "sha512-OEgAMeQXvCoJ+1x8WyQuVZzFo0wcyCmUR3baRVLmKBo1LmYZWMlRiXlux5jd0fqVJu6PfDbOrZItVqUEzLobeQ==" + }, + "@vue/reactivity": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.2.38.tgz", + "integrity": "sha512-6L4myYcH9HG2M25co7/BSo0skKFHpAN8PhkNPM4xRVkyGl1K5M3Jx4rp5bsYhvYze2K4+l+pioN4e6ZwFLUVtw==", + "requires": { + "@vue/shared": "3.2.38" + } + }, + "@vue/reactivity-transform": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.38.tgz", + "integrity": "sha512-3SD3Jmi1yXrDwiNJqQ6fs1x61WsDLqVk4NyKVz78mkaIRh6d3IqtRnptgRfXn+Fzf+m6B1KxBYWq1APj6h4qeA==", + "requires": { + "@babel/parser": "^7.16.4", + "@vue/compiler-core": "3.2.38", + "@vue/shared": "3.2.38", + "estree-walker": "^2.0.2", + "magic-string": "^0.25.7" + } + }, + "@vue/runtime-core": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.2.38.tgz", + "integrity": "sha512-kk0qiSiXUU/IKxZw31824rxmFzrLr3TL6ZcbrxWTKivadoKupdlzbQM4SlGo4MU6Zzrqv4fzyUasTU1jDoEnzg==", + "requires": { + "@vue/reactivity": "3.2.38", + "@vue/shared": "3.2.38" + } + }, + "@vue/runtime-dom": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.2.38.tgz", + "integrity": "sha512-4PKAb/ck2TjxdMSzMsnHViOrrwpudk4/A56uZjhzvusoEU9xqa5dygksbzYepdZeB5NqtRw5fRhWIiQlRVK45A==", + "requires": { + "@vue/runtime-core": "3.2.38", + "@vue/shared": "3.2.38", + "csstype": "^2.6.8" + } + }, + "@vue/server-renderer": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.2.38.tgz", + "integrity": "sha512-pg+JanpbOZ5kEfOZzO2bt02YHd+ELhYP8zPeLU1H0e7lg079NtuuSB8fjLdn58c4Ou8UQ6C1/P+528nXnLPAhA==", + "requires": { + "@vue/compiler-ssr": "3.2.38", + "@vue/shared": "3.2.38" + } + }, + "@vue/shared": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.38.tgz", + "integrity": "sha512-dTyhTIRmGXBjxJE+skC8tTWCGLCVc4wQgRRLt8+O9p5ewBAjoBwtCAkLPrtToSr1xltoe3st21Pv953aOZ7alg==" + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "csstype": { + "version": "2.6.20", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.20.tgz", + "integrity": "sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==" + }, + "esbuild": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.54.tgz", + "integrity": "sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==", + "dev": true, + "requires": { + "@esbuild/linux-loong64": "0.14.54", + "esbuild-android-64": "0.14.54", + "esbuild-android-arm64": "0.14.54", + "esbuild-darwin-64": "0.14.54", + "esbuild-darwin-arm64": "0.14.54", + "esbuild-freebsd-64": "0.14.54", + "esbuild-freebsd-arm64": "0.14.54", + "esbuild-linux-32": "0.14.54", + "esbuild-linux-64": "0.14.54", + "esbuild-linux-arm": "0.14.54", + "esbuild-linux-arm64": "0.14.54", + "esbuild-linux-mips64le": "0.14.54", + "esbuild-linux-ppc64le": "0.14.54", + "esbuild-linux-riscv64": "0.14.54", + "esbuild-linux-s390x": "0.14.54", + "esbuild-netbsd-64": "0.14.54", + "esbuild-openbsd-64": "0.14.54", + "esbuild-sunos-64": "0.14.54", + "esbuild-windows-32": "0.14.54", + "esbuild-windows-64": "0.14.54", + "esbuild-windows-arm64": "0.14.54" + } + }, + "esbuild-android-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz", + "integrity": "sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==", + "dev": true, + "optional": true + }, + "esbuild-android-arm64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz", + "integrity": "sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==", + "dev": true, + "optional": true + }, + "esbuild-darwin-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz", + "integrity": "sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==", + "dev": true, + "optional": true + }, + "esbuild-darwin-arm64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz", + "integrity": "sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==", + "dev": true, + "optional": true + }, + "esbuild-freebsd-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz", + "integrity": "sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==", + "dev": true, + "optional": true + }, + "esbuild-freebsd-arm64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz", + "integrity": "sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==", + "dev": true, + "optional": true + }, + "esbuild-linux-32": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz", + "integrity": "sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==", + "dev": true, + "optional": true + }, + "esbuild-linux-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz", + "integrity": "sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==", + "dev": true, + "optional": true + }, + "esbuild-linux-arm": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz", + "integrity": "sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==", + "dev": true, + "optional": true + }, + "esbuild-linux-arm64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz", + "integrity": "sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==", + "dev": true, + "optional": true + }, + "esbuild-linux-mips64le": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz", + "integrity": "sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==", + "dev": true, + "optional": true + }, + "esbuild-linux-ppc64le": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz", + "integrity": "sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==", + "dev": true, + "optional": true + }, + "esbuild-linux-riscv64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz", + "integrity": "sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==", + "dev": true, + "optional": true + }, + "esbuild-linux-s390x": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz", + "integrity": "sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==", + "dev": true, + "optional": true + }, + "esbuild-netbsd-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz", + "integrity": "sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==", + "dev": true, + "optional": true + }, + "esbuild-openbsd-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz", + "integrity": "sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==", + "dev": true, + "optional": true + }, + "esbuild-sunos-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz", + "integrity": "sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==", + "dev": true, + "optional": true + }, + "esbuild-windows-32": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz", + "integrity": "sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==", + "dev": true, + "optional": true + }, + "esbuild-windows-64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz", + "integrity": "sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==", + "dev": true, + "optional": true + }, + "esbuild-windows-arm64": { + "version": "0.14.54", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz", + "integrity": "sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==", + "dev": true, + "optional": true + }, + "estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "immutable": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.1.0.tgz", + "integrity": "sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==", + "dev": true + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-core-module": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", + "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "requires": { + "sourcemap-codec": "^1.4.8" + } + }, + "moment": { + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" + }, + "moment-timezone": { + "version": "0.5.37", + "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.37.tgz", + "integrity": "sha512-uEDzDNFhfaywRl+vwXxffjjq1q0Vzr+fcQpQ1bU0kbzorfS7zVtZnCnGc8mhWmF39d4g4YriF6kwA75mJKE/Zg==", + "requires": { + "moment": ">= 2.9.0" + } + }, + "nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "postcss": { + "version": "8.4.16", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.16.tgz", + "integrity": "sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==", + "requires": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "dev": true, + "requires": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "rollup": { + "version": "2.77.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.77.3.tgz", + "integrity": "sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==", + "dev": true, + "requires": { + "fsevents": "~2.3.2" + } + }, + "sass": { + "version": "1.55.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.55.0.tgz", + "integrity": "sha512-Pk+PMy7OGLs9WaxZGJMn7S96dvlyVBwwtToX895WmCpAOr5YiJYEUJfiJidMuKb613z2xNWcXCHEuOvjZbqC6A==", + "dev": true, + "requires": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + }, + "sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "vite": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/vite/-/vite-3.0.9.tgz", + "integrity": "sha512-waYABTM+G6DBTCpYAxvevpG50UOlZuynR0ckTK5PawNVt7ebX6X7wNXHaGIO6wYYFXSM7/WcuFuO2QzhBB6aMw==", + "dev": true, + "requires": { + "esbuild": "^0.14.47", + "fsevents": "~2.3.2", + "postcss": "^8.4.16", + "resolve": "^1.22.1", + "rollup": ">=2.75.6 <2.77.0 || ~2.77.0" + } + }, + "vue": { + "version": "3.2.38", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.2.38.tgz", + "integrity": "sha512-hHrScEFSmDAWL0cwO4B6WO7D3sALZPbfuThDsGBebthrNlDxdJZpGR3WB87VbjpPh96mep1+KzukYEhpHDFa8Q==", + "requires": { + "@vue/compiler-dom": "3.2.38", + "@vue/compiler-sfc": "3.2.38", + "@vue/runtime-dom": "3.2.38", + "@vue/server-renderer": "3.2.38", + "@vue/shared": "3.2.38" + } + }, + "vue-router": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.1.5.tgz", + "integrity": "sha512-IsvoF5D2GQ/EGTs/Th4NQms9gd2NSqV+yylxIyp/OYp8xOwxmU8Kj/74E9DTSYAyH5LX7idVUngN3JSj1X4xcQ==", + "requires": { + "@vue/devtools-api": "^6.1.4" + } + } + } +} diff --git a/ui/package.json b/ui/package.json new file mode 100644 index 0000000..ec8e5ca --- /dev/null +++ b/ui/package.json @@ -0,0 +1,24 @@ +{ + "name": "app_ui", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview" + }, + "dependencies": { + "@formkit/themes": "^1.0.0-beta.11", + "@formkit/vue": "^1.0.0-beta.11", + "moment": "^2.29.4", + "moment-timezone": "^0.5.37", + "vue": "^3.2.37", + "vue-router": "^4.1.5" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^3.0.3", + "sass": "^1.55.0", + "vite": "^3.0.7" + } +} diff --git a/ui/public/vite.svg b/ui/public/vite.svg new file mode 100644 index 0000000..e7b8dfb --- /dev/null +++ b/ui/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/ui/src/App.vue b/ui/src/App.vue new file mode 100644 index 0000000..578ee76 --- /dev/null +++ b/ui/src/App.vue @@ -0,0 +1,22 @@ + + + + + diff --git a/ui/src/assets/vue.svg b/ui/src/assets/vue.svg new file mode 100644 index 0000000..770e9d3 --- /dev/null +++ b/ui/src/assets/vue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/ui/src/components/HelloWorld.vue b/ui/src/components/HelloWorld.vue new file mode 100644 index 0000000..91f9bfc --- /dev/null +++ b/ui/src/components/HelloWorld.vue @@ -0,0 +1,40 @@ + + + + + diff --git a/ui/src/helpers/employee.js b/ui/src/helpers/employee.js new file mode 100644 index 0000000..a909be2 --- /dev/null +++ b/ui/src/helpers/employee.js @@ -0,0 +1,218 @@ +import moment from 'moment'; + +const getLapse = (from, to) => { + return (to - from) / 60 / 60; +}; + +const getInProgressTime = (from) => { + return ((new Date().getTime() / 1000) - from) / 60 / 60; +}; + +const getTotalHours = (timesheets) => timesheets.reduce((acc, ts) => { + if (!ts.IsLeave) { + if (ts.IsInProgress) { + const nowSeconds = (new Date().getTime() / 1000); + const startTime = new Date(ts.StartTimeLocalized).getTime() / 1000; + const slotsTime = getSlotsTime(ts, nowSeconds); + const inprogresstime = getLapse(startTime, nowSeconds); + // console.log('inprogresstime, slotsTime :>> ', ts.Id, inprogresstime, slotsTime); + // console.log('in progreess ', acc); + acc += (inprogresstime - slotsTime); + // console.log('in progreess ', acc); + } else { + acc += ts.TotalTime + } + } + return acc; +}, 0); + +const getSlotsTime = (timesheet, now) => { + return (timesheet.Slots || []).reduce((sum, slot) => { + const start = slot.intUnixStart; + const end = slot.intUnixEnd; + const isInProgress = slot.strState === 'In Progress'; + const isFinished = slot.strState === 'Finished'; + + let toAdd = 0; + if (isInProgress) { + toAdd = getLapse(start, now); + } else if (isFinished) { + toAdd = getLapse(start, end); + } + // console.log('timesheet :>> ', timesheet); + // console.log('start, end :>> ', start, end); + // console.log('getLapse(start, end) :>> ', getLapse(start, end)); + // console.log('isInProgress :>> ', isInProgress); + // const toAdd = !isInProgress ? getLapse(start, end) : getInProgressTime(start); + // console.log('toAdd :>>', toAdd); + return sum += toAdd; + }, 0); +} + +const getTotalLeaveHours = (timesheets) => timesheets.reduce((acc, ts) => { + if (ts.IsLeave) { + acc += ts.TotalTime + } + return acc; +}, 0); + +const getEmployeeClasses = (hours, isInProgress) => { + const classes = []; + if (hours >= 38) { + classes.push('red'); + } else if (hours >= 30) { + classes.push('yellow'); + } else { + classes.push('green'); + } + if (isInProgress) { + classes.push('in-progress'); + } + + return classes.join(' '); +} + +const leftPadding = (val, y = 2) => { + const exp = (10 ** y) * (val < 0 ? -1 : 1); + const v = ((exp + val) + ''); + return val < 0 ? '-' + v.substring(2) : v.substring(1); +}; + +const formatTime = (val) => { + const str = Number(val).toFixed(2).split('.'); + const hours = Number(str[0]); + const mins = Math.round((Number('0.' + (str[1] || 0)) * 60)); + return { + hours: leftPadding(hours), + minutes: leftPadding(mins) + }; +} + +const isLunch = ts => { + for (let index = 0; index < ts.Slots.length; index++) { + const slot = ts.Slots[index]; + if (slot.strState === 'In Progress' && slot.strType === 'B') { + return true; + } + } + + return false; +} + +export const getEmployeeInfo = (raw) => { + const last = raw[raw.length - 1]; + const totalHours = getTotalHours(raw); + const otHours = totalHours - 40; + const metadata = last._DPMetaData; + const operationalUnit = metadata.OperationalUnitInfo || {}; + const lunch = isLunch(last); + // console.log('isLunch :>> ', last.Id, lunch, metadata.EmployeeInfo.DisplayName); + return { + displayName: metadata.EmployeeInfo.DisplayName, + unit: operationalUnit.OperationalUnitName || '', + site: operationalUnit.CompanyName || '', + inProgress: hasInProgress(raw), + totalTimesheets: raw.length, + totalHours, + totalHoursObject: formatTime(totalHours), + employeeClasses: getEmployeeClasses(totalHours, last.IsInProgress), + locationClasses: getEmployeeLocationClass(operationalUnit.CompanyName), + overtime: formatTime(otHours), + isLunch: lunch, + }; +} + +const hasInProgress = (raw) => { + return raw.filter(d => d.IsInProgress).length > 0; +} + +export const employeeMapper = (data) => { + const reduced = data + // .filter(d => { + // return d._DPMetaData.EmployeeInfo.DisplayName.indexOf('Bugs') !== -1 + // }) + .reduce((acc, val) => { + if (!acc[val.Employee]) { + acc[val.Employee] = []; + } + acc[val.Employee].push(val); + return acc; + }, {}); + const employees = []; + for (const employeeId in reduced) { + if (Object.hasOwnProperty.call(reduced, employeeId)) { + const timesheets = reduced[employeeId]; + employees.push(getEmployeeInfo(timesheets)); + } + } + + employees.sort((a, b) => { + return a.totalHours > b.totalHours ? -1 : 1; + }); + + const active = [] + const inactive = [] + + employees.forEach(e => { + e.inProgress ? active.push(e) : inactive.push(e); + }); + + // console.log('active :>> ', active); + + return active.concat(inactive); +} + +function getWeekDelta(cutDay, cutHour, today, hour) { + // dia actual mayor que dia de corte Tengo que traer desde el jueves misma semana + // mismo dia despues de la hora traer misma semana + // dia actual menor que el dia de corte Tengo que traer desde el jueves semana anterior + // mismo dia antes de la hora traer semana anterior + let weekDelta = (today < cutDay || (today === cutDay && hour < cutHour)) ? -1 : 0; + return weekDelta; +} + +export function getTime(timezone, cutDay, cutHour) { + const now = moment().tz(timezone); + let today = now.day(); + let hour = now.hour(); + let weekDelta = getWeekDelta(cutDay, cutHour, today, hour); + + now + .day(cutDay) + .hour(cutHour) + .minute(0) + .second(0) + .millisecond(0) + .add(weekDelta, 'week'); + // console.log(now.format('HH:mm:ss'), timezone); + return now; +} + +const getEmployeeLocationClass = (site = '') => { + let k = 'gray'; + switch (site.toUpperCase()) { + case 'SHADOW MOUNTAIN': + k = 'pink'; + break; + case 'NORTH LOOP': + k = 'blue'; + break; + case 'MONTANA': + k = 'white'; + break; + case 'GATEWAY': + k = 'green'; + break; + case 'REMOTE': + k = 'red'; + break; + case 'ADMINISTRATION': + k = 'orange'; + break; + + default: + break; + } + + return k; +} \ No newline at end of file diff --git a/ui/src/helpers/fakedata.js b/ui/src/helpers/fakedata.js new file mode 100644 index 0000000..ea1c68f --- /dev/null +++ b/ui/src/helpers/fakedata.js @@ -0,0 +1,38948 @@ +export const fakeData = [{ + "Id": 9190, + "Employee": 34, + "EmployeeHistory": 276096, + "EmployeeAgreement": 525, + "Date": "2022-09-24T00:00:00-06:00", + "StartTime": 1664028660, + "EndTime": 1664053860, + "Mealbreak": "2022-09-24T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [], + "TotalTime": 7, + "TotalTimeInv": 1, + "Cost": 126, + "Roster": null, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2347, + "File": 16539, + "CustomFieldData": null, + "RealTime": false, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 34, + "Created": "2022-09-24T08:11:17-06:00", + "Modified": "2022-09-25T18:44:36-06:00", + "OnCost": 126, + "StartTimeLocalized": "2022-09-24T08:11:00-06:00", + "EndTimeLocalized": "2022-09-24T15:11:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 34, + "DisplayName": "Berenice Sanchez", + "EmployeeProfile": 34, + "Employee": 34, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8cc56a38231b2d3ba4dbe49080fc5235.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=AoAN2Ua9DVXioRA6B7g06wFAA9NL1KQe~XyjtbSI-KW90qddvVyHU6NabkhqbrnrJEclUG4FYUifWohvSh~IHsN6t5OFeuZUfnccRIhHibxzAmBNW4BwhjdWJlv-C52Mp3PPjgHlGHjYgxGEdp7gLO64BMfIxzety3DSEb6X7rs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 34, + "DisplayName": "Berenice Sanchez", + "EmployeeProfile": 34, + "Employee": 34, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8cc56a38231b2d3ba4dbe49080fc5235.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=AoAN2Ua9DVXioRA6B7g06wFAA9NL1KQe~XyjtbSI-KW90qddvVyHU6NabkhqbrnrJEclUG4FYUifWohvSh~IHsN6t5OFeuZUfnccRIhHibxzAmBNW4BwhjdWJlv-C52Mp3PPjgHlGHjYgxGEdp7gLO64BMfIxzety3DSEb6X7rs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 34, + "Company": 3, + "FirstName": "Berenice", + "LastName": "Sanchez", + "DisplayName": "Berenice Sanchez", + "OtherName": null, + "Salutation": null, + "MainAddress": 180, + "PostalAddress": null, + "Contact": 272882, + "EmergencyAddress": 284, + "DateOfBirth": "1991-09-19T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1116, + "UserId": 34, + "JobAppId": null, + "Active": true, + "StartDate": "2014-11-19T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276096, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:19-07:00", + "Modified": "2022-08-29T17:44:23-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9197, + "Employee": 2, + "EmployeeHistory": 61410, + "EmployeeAgreement": 102, + "Date": "2022-09-24T00:00:00-06:00", + "StartTime": 1664029560, + "EndTime": 1664031960, + "Mealbreak": "2022-09-24T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 3600, + "intEnd": 3600, + "intUnixStart": 1664033160, + "intUnixEnd": 1664033160, + "mixedActivity": { + "intState": 4, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished Duration" + }], + "TotalTime": 0.67, + "TotalTimeInv": 1, + "Cost": 16.75, + "Roster": null, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2315, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 2, + "Created": "2022-09-24T09:07:18-06:00", + "Modified": "2022-09-24T09:07:52-06:00", + "OnCost": 16.75, + "StartTimeLocalized": "2022-09-24T08:26:00-06:00", + "EndTimeLocalized": "2022-09-24T09:06:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 2, + "Company": 6, + "FirstName": "Daniel", + "LastName": "Renteria", + "DisplayName": "Daniel Renteria", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 13349, + "EmergencyAddress": 300, + "DateOfBirth": "1984-12-14T00:00:00-07:00", + "Gender": 1, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 970, + "UserId": 2, + "JobAppId": null, + "Active": true, + "StartDate": "2021-11-22T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 1, + "AllowAppraisal": true, + "HistoryId": 61410, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-24T16:08:14-07:00", + "Modified": "2022-04-15T13:25:50-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9191, + "Employee": 131, + "EmployeeHistory": 276095, + "EmployeeAgreement": 481, + "Date": "2022-09-24T00:00:00-06:00", + "StartTime": 1664030700, + "EndTime": 1664052900, + "Mealbreak": "2022-09-24T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 0, + "intUnixStart": 1664030700, + "intUnixEnd": 1664030700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 6.17, + "TotalTimeInv": 6.25, + "Cost": 0, + "Roster": 8005, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 44, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2348, + "File": 16550, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 131, + "Created": "2022-09-24T08:45:13-06:00", + "Modified": "2022-09-24T14:56:48-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-24T08:45:00-06:00", + "EndTimeLocalized": "2022-09-24T14:55:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 131, + "DisplayName": "Adrian Parra", + "EmployeeProfile": 131, + "Employee": 131, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fb7d50a16d16c77fc31ec82733f942ba.jpg?Expires=1664555144&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=DoR3aAdRhzjbPccMuFfzQaQ7IX-G9iPQFwtZLrdWpWR-qbIohX87Q7E9W5OQAhq3oobq77lWzbAFj7bJn7xcaWzaan94Cs9t36xyzqPMxKUez8fmc56kpqM-camJqnJArdsbzLOA2~bbB-xFr0sm9VvdzlHwHkuVkz7Jiof7TT8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 44, + "OperationalUnitName": "Saturday", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Saturday" + }, + "EmployeeInfo": { + "Id": 131, + "DisplayName": "Adrian Parra", + "EmployeeProfile": 131, + "Employee": 131, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fb7d50a16d16c77fc31ec82733f942ba.jpg?Expires=1664555144&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=DoR3aAdRhzjbPccMuFfzQaQ7IX-G9iPQFwtZLrdWpWR-qbIohX87Q7E9W5OQAhq3oobq77lWzbAFj7bJn7xcaWzaan94Cs9t36xyzqPMxKUez8fmc56kpqM-camJqnJArdsbzLOA2~bbB-xFr0sm9VvdzlHwHkuVkz7Jiof7TT8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 131, + "Company": 6, + "FirstName": "Adrian", + "LastName": "Parra", + "DisplayName": "Adrian Parra", + "OtherName": null, + "Salutation": null, + "MainAddress": 326, + "PostalAddress": null, + "Contact": 272949, + "EmergencyAddress": 284, + "DateOfBirth": "2001-02-24T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 14024, + "UserId": 131, + "JobAppId": null, + "Active": true, + "StartDate": "2002-06-08T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276095, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-06-16T12:00:25-06:00", + "Modified": "2022-08-25T19:22:50-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9192, + "Employee": 79, + "EmployeeHistory": 276098, + "EmployeeAgreement": 137, + "Date": "2022-09-24T00:00:00-06:00", + "StartTime": 1664030700, + "EndTime": 1664052660, + "Mealbreak": "2022-09-24T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 0, + "intUnixStart": 1664030700, + "intUnixEnd": 1664030700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 6.1, + "TotalTimeInv": 6.25, + "Cost": 73.2, + "Roster": 8006, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 44, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2349, + "File": 16549, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 79, + "Created": "2022-09-24T08:45:32-06:00", + "Modified": "2022-09-24T14:56:48-06:00", + "OnCost": 73.2, + "StartTimeLocalized": "2022-09-24T08:45:00-06:00", + "EndTimeLocalized": "2022-09-24T14:51:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 79, + "DisplayName": "Rebecca Maynez", + "EmployeeProfile": 79, + "Employee": 79, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_c9c030fd9604e695705a8ab02d8df41a.jpg?Expires=1664555144&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=dqJpMu7h9bTlSxSdrjPKRWF3EklOWghitUETpNfNXt6hc1lwtfHwkthldINTBeyHfEaSdVtBVKy5SWksid5LB0JGbMEBb9UgZAkuU3j~e9K-LqYrB35LgvKT0VrqE~TXGvAw7gm9UGy0SzROgZvATQNoO7niXSuC7JUVj-1VIvY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 44, + "OperationalUnitName": "Saturday", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Saturday" + }, + "EmployeeInfo": { + "Id": 79, + "DisplayName": "Rebecca Maynez", + "EmployeeProfile": 79, + "Employee": 79, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_c9c030fd9604e695705a8ab02d8df41a.jpg?Expires=1664555144&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=dqJpMu7h9bTlSxSdrjPKRWF3EklOWghitUETpNfNXt6hc1lwtfHwkthldINTBeyHfEaSdVtBVKy5SWksid5LB0JGbMEBb9UgZAkuU3j~e9K-LqYrB35LgvKT0VrqE~TXGvAw7gm9UGy0SzROgZvATQNoO7niXSuC7JUVj-1VIvY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 79, + "Company": 4, + "FirstName": "Rebecca", + "LastName": "Maynez", + "DisplayName": "Rebecca Maynez", + "OtherName": null, + "Salutation": null, + "MainAddress": 241, + "PostalAddress": null, + "Contact": 272950, + "EmergencyAddress": 284, + "DateOfBirth": "2002-04-04T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 14257, + "UserId": 79, + "JobAppId": null, + "Active": true, + "StartDate": "2021-11-22T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276098, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:29-07:00", + "Modified": "2022-08-29T18:16:07-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9193, + "Employee": 81, + "EmployeeHistory": 275970, + "EmployeeAgreement": 144, + "Date": "2022-09-24T00:00:00-06:00", + "StartTime": 1664030700, + "EndTime": 1664052900, + "Mealbreak": "2022-09-24T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 0, + "intUnixStart": 1664030700, + "intUnixEnd": 1664030700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 6.17, + "TotalTimeInv": 6.25, + "Cost": 86.38, + "Roster": 8002, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 44, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2331, + "File": 16551, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 81, + "Created": "2022-09-24T08:45:44-06:00", + "Modified": "2022-09-24T14:56:48-06:00", + "OnCost": 86.38, + "StartTimeLocalized": "2022-09-24T08:45:00-06:00", + "EndTimeLocalized": "2022-09-24T14:55:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 81, + "DisplayName": "David Gomez", + "EmployeeProfile": 81, + "Employee": 81, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_628106735184a54f7891b6db7dfe0b39.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=MjcbfVMvTqNoWBuIb~iVUM4wr~BJ8a3IyzEL07HVFHswfZrxfim-o40CueCGeGn~Z4R~ydbCnA3kDgFkcSe6CHhxpMTJcOPe8ci78dF7ckh6DRizk9LBUqPKFx3stO5l1bTFIePOKDIv7nEo97YtZeBqryt0liTvOiE~0i4ZXSk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 44, + "OperationalUnitName": "Saturday", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Saturday" + }, + "EmployeeInfo": { + "Id": 81, + "DisplayName": "David Gomez", + "EmployeeProfile": 81, + "Employee": 81, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_628106735184a54f7891b6db7dfe0b39.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=MjcbfVMvTqNoWBuIb~iVUM4wr~BJ8a3IyzEL07HVFHswfZrxfim-o40CueCGeGn~Z4R~ydbCnA3kDgFkcSe6CHhxpMTJcOPe8ci78dF7ckh6DRizk9LBUqPKFx3stO5l1bTFIePOKDIv7nEo97YtZeBqryt0liTvOiE~0i4ZXSk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 81, + "Company": 3, + "FirstName": "David", + "LastName": "Gomez", + "DisplayName": "David Gomez", + "OtherName": null, + "Salutation": null, + "MainAddress": 243, + "PostalAddress": null, + "Contact": 272919, + "EmergencyAddress": 278, + "DateOfBirth": "2001-02-12T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1165, + "UserId": 81, + "JobAppId": null, + "Active": true, + "StartDate": "2022-01-17T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275970, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:30-07:00", + "Modified": "2022-07-06T10:49:53-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9194, + "Employee": 82, + "EmployeeHistory": 276110, + "EmployeeAgreement": 322, + "Date": "2022-09-24T00:00:00-06:00", + "StartTime": 1664030940, + "EndTime": 1664047020, + "Mealbreak": "2022-09-24T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -240, + "intEnd": -240, + "intUnixStart": 1664030700, + "intUnixEnd": 1664030700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 4.47, + "TotalTimeInv": 6.18, + "Cost": 62.58, + "Roster": 8004, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 44, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2276, + "File": 16546, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 82, + "Created": "2022-09-24T08:49:02-06:00", + "Modified": "2022-09-25T07:23:23-06:00", + "OnCost": 62.58, + "StartTimeLocalized": "2022-09-24T08:49:00-06:00", + "EndTimeLocalized": "2022-09-24T13:17:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 82, + "DisplayName": "Valerie Torres", + "EmployeeProfile": 82, + "Employee": 82, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_882d771b3ed9418b8c0bb25151643136.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=HNxAI-PEVEeMkKjfEl5bsDwHytjIlz9R6cQls1d1erg2KLtlgWEZOfxDmlNF4DgZJkyU0kHhuM5U1AXqXkrWedQ6-UI2lYqquLh-k0bKHF4jjvAbjXE06eNaazvb4i7g~Koxd9-j-8W5VxUPtWRnWhld4QCbK6yE5DEQ~t~NHzo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 44, + "OperationalUnitName": "Saturday", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Saturday" + }, + "EmployeeInfo": { + "Id": 82, + "DisplayName": "Valerie Torres", + "EmployeeProfile": 82, + "Employee": 82, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_882d771b3ed9418b8c0bb25151643136.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=HNxAI-PEVEeMkKjfEl5bsDwHytjIlz9R6cQls1d1erg2KLtlgWEZOfxDmlNF4DgZJkyU0kHhuM5U1AXqXkrWedQ6-UI2lYqquLh-k0bKHF4jjvAbjXE06eNaazvb4i7g~Koxd9-j-8W5VxUPtWRnWhld4QCbK6yE5DEQ~t~NHzo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 82, + "Company": 6, + "FirstName": "Valerie", + "LastName": "Torres", + "DisplayName": "Valerie Torres", + "OtherName": null, + "Salutation": null, + "MainAddress": 245, + "PostalAddress": null, + "Contact": 272956, + "EmergencyAddress": 284, + "DateOfBirth": "1992-09-15T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 15036, + "UserId": 82, + "JobAppId": null, + "Active": true, + "StartDate": "2022-02-21T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276110, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:30-07:00", + "Modified": "2022-09-07T20:54:54-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9195, + "Employee": 76, + "EmployeeHistory": 276034, + "EmployeeAgreement": 79, + "Date": "2022-09-24T00:00:00-06:00", + "StartTime": 1664031240, + "EndTime": 1664052240, + "Mealbreak": "2022-09-24T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 0, + "intUnixStart": 1664031240, + "intUnixEnd": 1664031240, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.83, + "TotalTimeInv": 6, + "Cost": 0, + "Roster": 8007, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 44, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2338, + "File": 16548, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 76, + "Created": "2022-09-24T08:54:38-06:00", + "Modified": "2022-09-25T07:23:23-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-24T08:54:00-06:00", + "EndTimeLocalized": "2022-09-24T14:44:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 76, + "DisplayName": "Nadia Quintanilla", + "EmployeeProfile": 76, + "Employee": 76, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_40124f0029a54143cf7b7620fda4496b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=LlQK-YBhVSOrIOxpPNF4B27UNupfTVXRTKcy~YbcQrzc-kTwvDpU5ileLFajQyLlj1bAN2kCIcbD8sVldqDnx9mjDD1MxAwltdV0uI3SkEcs-9VzPEmK-TZW1hLQOG4PY1Xswuqt-DDrePJ0kjS~06NEN0H1drbNxZ7doie9Jdg_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 44, + "OperationalUnitName": "Saturday", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Saturday" + }, + "EmployeeInfo": { + "Id": 76, + "DisplayName": "Nadia Quintanilla", + "EmployeeProfile": 76, + "Employee": 76, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_40124f0029a54143cf7b7620fda4496b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=LlQK-YBhVSOrIOxpPNF4B27UNupfTVXRTKcy~YbcQrzc-kTwvDpU5ileLFajQyLlj1bAN2kCIcbD8sVldqDnx9mjDD1MxAwltdV0uI3SkEcs-9VzPEmK-TZW1hLQOG4PY1Xswuqt-DDrePJ0kjS~06NEN0H1drbNxZ7doie9Jdg_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 76, + "Company": 5, + "FirstName": "Nadia", + "LastName": "Quintanilla", + "DisplayName": "Nadia Quintanilla", + "OtherName": null, + "Salutation": null, + "MainAddress": 235, + "PostalAddress": null, + "Contact": 272915, + "EmergencyAddress": 271, + "DateOfBirth": "1990-11-22T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1016, + "UserId": 76, + "JobAppId": null, + "Active": true, + "StartDate": "2021-07-26T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276034, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-07-11T16:04:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9189, + "Employee": 73, + "EmployeeHistory": 276007, + "EmployeeAgreement": 76, + "Date": "2022-09-24T00:00:00-06:00", + "StartTime": 1664031600, + "EndTime": 1664060400, + "Mealbreak": "2022-09-24T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [], + "TotalTime": 8, + "TotalTimeInv": 8, + "Cost": 0, + "Roster": null, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": null, + "IsInProgress": null, + "IsLeave": true, + "LeaveId": 284, + "LeaveRule": 1, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2273, + "File": null, + "CustomFieldData": null, + "RealTime": false, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": -2, + "Created": "2022-09-24T00:11:57-06:00", + "Modified": "2022-09-24T00:11:58-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-24T09:00:00-06:00", + "EndTimeLocalized": "2022-09-24T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": -1, + "DisplayName": "Deputy", + "Photo": "https://d2sebmzxyyulvv.cloudfront.net/deputy-avatar-30.png" + }, + "OperationalUnitInfo": null, + "EmployeeInfo": { + "Id": 73, + "DisplayName": "Tyler Roberts", + "EmployeeProfile": 73, + "Employee": 73, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8a97a499511e44a423c5d63c874dc913.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hfpyin5jkIDZs~nLmN907v9I70A8RJZKGvkJkgs-V0eGdDch0wYk~BWRQZ7KgIBkfBDp3PJxvbcSf3iTuN8FVIvlus3YwrBOBKY~GHtetPR90GTW-YUQjSJLtjsjMX7jvCkvxbtOLat5rhoK0GXNthMLgrPSGiIWtOV4UgaG0ck_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 73, + "Company": 4, + "FirstName": "Tyler", + "LastName": "Roberts", + "DisplayName": "Tyler Roberts", + "OtherName": null, + "Salutation": null, + "MainAddress": 229, + "PostalAddress": null, + "Contact": 272913, + "EmergencyAddress": 269, + "DateOfBirth": "1995-08-28T00:00:00-07:00", + "Gender": 1, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 974, + "UserId": 73, + "JobAppId": null, + "Active": true, + "StartDate": "2020-11-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276007, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-07-06T11:19:56-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9196, + "Employee": 70, + "EmployeeHistory": 275990, + "EmployeeAgreement": 316, + "Date": "2022-09-24T00:00:00-06:00", + "StartTime": 1664031960, + "EndTime": 1664052120, + "Mealbreak": "2022-09-24T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -1260, + "intEnd": -1260, + "intUnixStart": 1664030700, + "intUnixEnd": 1664030700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.6, + "TotalTimeInv": 5.9, + "Cost": 78.4, + "Roster": 8003, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 44, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2350, + "File": 16547, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 70, + "Created": "2022-09-24T09:06:14-06:00", + "Modified": "2022-09-25T07:23:23-06:00", + "OnCost": 78.4, + "StartTimeLocalized": "2022-09-24T09:06:00-06:00", + "EndTimeLocalized": "2022-09-24T14:42:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 70, + "DisplayName": "Lizbeth Fernandez", + "EmployeeProfile": 70, + "Employee": 70, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6d285879d6d82fb513b2adf1550b5756.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=fvTaWT87c1IldSxd~NoV5DBUnTFM22Yg5Mxd0syl3-kBp1rdh9N1phQ2~sk3v0ca47oFUs4Fv~a7RuwxEp8H3zVgvV5q68eBSmq8RpI9zAJsTCax6uAZvMgfTHH~KPKpiTAyp~E92VfEc27FRAvdm2GznYzS5zFKZzJn6Q84qqk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 44, + "OperationalUnitName": "Saturday", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Saturday" + }, + "EmployeeInfo": { + "Id": 70, + "DisplayName": "Lizbeth Fernandez", + "EmployeeProfile": 70, + "Employee": 70, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6d285879d6d82fb513b2adf1550b5756.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=fvTaWT87c1IldSxd~NoV5DBUnTFM22Yg5Mxd0syl3-kBp1rdh9N1phQ2~sk3v0ca47oFUs4Fv~a7RuwxEp8H3zVgvV5q68eBSmq8RpI9zAJsTCax6uAZvMgfTHH~KPKpiTAyp~E92VfEc27FRAvdm2GznYzS5zFKZzJn6Q84qqk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 70, + "Company": 5, + "FirstName": "Lizbeth", + "LastName": "Fernandez", + "DisplayName": "Lizbeth Fernandez", + "OtherName": null, + "Salutation": null, + "MainAddress": 223, + "PostalAddress": null, + "Contact": 272910, + "EmergencyAddress": 266, + "DateOfBirth": "1998-12-15T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1234, + "UserId": 70, + "JobAppId": null, + "Active": true, + "StartDate": "2020-09-21T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275990, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-07-06T11:05:38-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9201, + "Employee": 31, + "EmployeeHistory": 276023, + "EmployeeAgreement": 33, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664199300, + "EndTime": 1664241000, + "Mealbreak": "2022-09-26T01:07:00-06:00", + "MealbreakSlots": { + "1664220060": "OUT", + "1664224080": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 20760, + "intEnd": 24780, + "intUnixStart": 1664220060, + "intUnixEnd": 1664224080, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 10.47, + "TotalTimeInv": 11.25, + "Cost": 0, + "Roster": 21050, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2354, + "File": 16677, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 32, + "Created": "2022-09-26T07:35:11-06:00", + "Modified": "2022-09-26T19:26:50-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-26T07:35:00-06:00", + "EndTimeLocalized": "2022-09-26T19:10:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 32, + "DisplayName": "Freddie Valenzuela", + "EmployeeProfile": 31, + "Employee": 31, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7c2a899a81bcf132fcaf0134cfea8dfd.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=HvxHTCgpy6ba-LfIJ-A5XP5mHrKH3Ki7y8iqaGkwxAbsaV5QBvGPmcawaZ4kPj30kKQVvI3xJ2gk8txGhdncdcirtdlLXvLbTiU2~gb9MMxl0PHTDkQkfXG75RHugSzBYogXNAHfdm4aP4L6pbVPSbky9oXIUNCQq5esH3LalBk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 32, + "DisplayName": "Freddie Valenzuela", + "EmployeeProfile": 31, + "Employee": 31, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7c2a899a81bcf132fcaf0134cfea8dfd.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=HvxHTCgpy6ba-LfIJ-A5XP5mHrKH3Ki7y8iqaGkwxAbsaV5QBvGPmcawaZ4kPj30kKQVvI3xJ2gk8txGhdncdcirtdlLXvLbTiU2~gb9MMxl0PHTDkQkfXG75RHugSzBYogXNAHfdm4aP4L6pbVPSbky9oXIUNCQq5esH3LalBk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 31, + "Company": 2, + "FirstName": "Freddie", + "LastName": "Valenzuela", + "DisplayName": "Freddie Valenzuela", + "OtherName": null, + "Salutation": null, + "MainAddress": 177, + "PostalAddress": null, + "Contact": 272931, + "EmergencyAddress": 284, + "DateOfBirth": "1971-07-25T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 9531, + "UserId": 32, + "JobAppId": null, + "Active": true, + "StartDate": "2006-11-20T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276023, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:19-07:00", + "Modified": "2022-07-11T09:16:50-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9202, + "Employee": 66, + "EmployeeHistory": 276031, + "EmployeeAgreement": 69, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664199360, + "EndTime": 1664230560, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664218080": "OUT", + "1664221680": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18720, + "intEnd": 22320, + "intUnixStart": 1664218080, + "intUnixEnd": 1664221680, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.67, + "TotalTimeInv": 9.25, + "Cost": 115.05, + "Roster": 21146, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2355, + "File": 16640, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 66, + "Created": "2022-09-26T07:36:13-06:00", + "Modified": "2022-09-26T20:23:52-06:00", + "OnCost": 115.05, + "StartTimeLocalized": "2022-09-26T07:36:00-06:00", + "EndTimeLocalized": "2022-09-26T16:16:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 66, + "DisplayName": "Susana Ramirez", + "EmployeeProfile": 66, + "Employee": 66, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f9cbcf12ef4912707ca2709b9797d241.jpg?Expires=1664545544&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Mv08rYSP12VwrHXRruztZBjPnslxIoOnXLpAXXAEZH9PlmzxczuSBuis6amSxatQLnan0awUO-jEQ8Re3bYEDStl2NXOjhNZbzNw5-xxrGe-h8zOgXff0O1dBgkjR8EvXULF19GYabSTID9JNxG3bs2HyOEKB6os9LdWNRyUd2I_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 66, + "DisplayName": "Susana Ramirez", + "EmployeeProfile": 66, + "Employee": 66, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f9cbcf12ef4912707ca2709b9797d241.jpg?Expires=1664545544&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Mv08rYSP12VwrHXRruztZBjPnslxIoOnXLpAXXAEZH9PlmzxczuSBuis6amSxatQLnan0awUO-jEQ8Re3bYEDStl2NXOjhNZbzNw5-xxrGe-h8zOgXff0O1dBgkjR8EvXULF19GYabSTID9JNxG3bs2HyOEKB6os9LdWNRyUd2I_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 66, + "Company": 4, + "FirstName": "Susana", + "LastName": "Ramirez", + "DisplayName": "Susana Ramirez", + "OtherName": null, + "Salutation": null, + "MainAddress": 216, + "PostalAddress": null, + "Contact": 272906, + "EmergencyAddress": 263, + "DateOfBirth": "1976-06-09T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1067, + "UserId": 66, + "JobAppId": null, + "Active": true, + "StartDate": "2020-08-10T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276031, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:26-07:00", + "Modified": "2022-07-11T12:11:35-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9203, + "Employee": 128, + "EmployeeHistory": 276020, + "EmployeeAgreement": 472, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664199480, + "EndTime": 1664234400, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664217300": "OUT", + "1664220900": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17820, + "intEnd": 21420, + "intUnixStart": 1664217300, + "intUnixEnd": 1664220900, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.7, + "TotalTimeInv": 9, + "Cost": 0, + "Roster": 21373, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2356, + "File": 16656, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 128, + "Created": "2022-09-26T07:38:29-06:00", + "Modified": "2022-09-26T20:23:52-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-26T07:38:00-06:00", + "EndTimeLocalized": "2022-09-26T17:20:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 128, + "DisplayName": "Cynthia Dufour", + "EmployeeProfile": 128, + "Employee": 128, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a062de8916b1f73d00ffbb0d423b5fc9.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=e33negGuVbvRCqGLhUnmz5-e3C~L6OUMx8u1s-tg3l8Q09gGXu1hCEfxYyZB1e5xzlKYHmSAb0j36gxODXhZ8BWImlhg5GEzblkkzbSgXIE6Xanfbxnjz6grfquAgovfvJPkXOZ5lNo8Bi2i8uyfTgSvo6fSkhnGazdcWSORpuY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 128, + "DisplayName": "Cynthia Dufour", + "EmployeeProfile": 128, + "Employee": 128, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a062de8916b1f73d00ffbb0d423b5fc9.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=e33negGuVbvRCqGLhUnmz5-e3C~L6OUMx8u1s-tg3l8Q09gGXu1hCEfxYyZB1e5xzlKYHmSAb0j36gxODXhZ8BWImlhg5GEzblkkzbSgXIE6Xanfbxnjz6grfquAgovfvJPkXOZ5lNo8Bi2i8uyfTgSvo6fSkhnGazdcWSORpuY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 128, + "Company": 6, + "FirstName": "Cynthia", + "LastName": "Dufour", + "DisplayName": "Cynthia Dufour", + "OtherName": null, + "Salutation": null, + "MainAddress": 320, + "PostalAddress": null, + "Contact": 272925, + "EmergencyAddress": 321, + "DateOfBirth": "1982-09-10T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 6559, + "UserId": 128, + "JobAppId": null, + "Active": true, + "StartDate": "2022-05-31T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276020, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-06-07T10:00:23-06:00", + "Modified": "2022-07-07T09:17:48-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9204, + "Employee": 46, + "EmployeeHistory": 275993, + "EmployeeAgreement": 48, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664199600, + "EndTime": 1664231460, + "Mealbreak": "2022-09-26T00:37:00-06:00", + "MealbreakSlots": { + "1664217600": "OUT", + "1664219820": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 20220, + "intUnixStart": 1664217600, + "intUnixEnd": 1664219820, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.23, + "TotalTimeInv": 8, + "Cost": 111.105, + "Roster": 21093, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2357, + "File": 16641, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 47, + "Created": "2022-09-26T07:40:02-06:00", + "Modified": "2022-09-26T20:23:53-06:00", + "OnCost": 111.105, + "StartTimeLocalized": "2022-09-26T07:40:00-06:00", + "EndTimeLocalized": "2022-09-26T16:31:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 47, + "DisplayName": "Mayela Guereca", + "EmployeeProfile": 46, + "Employee": 46, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_aab7758d4f20d64e04849c4ba821103b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=YF4Jf5-97CcDd6k-4amyzDX3ixhlP2m5sM7OlfeBkt1Pezm-NUysosh6aySB-D0jl-YQtr4bzBTUSjpxUS6iLEoTH0KwN7FkHIo1GJRt5iU~x1uLnfmie2~8iW80lOs9tIM7UNT3K~9gQjeHlsyAaZXUesGJC71OHnnn8DBaQik_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 47, + "DisplayName": "Mayela Guereca", + "EmployeeProfile": 46, + "Employee": 46, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_aab7758d4f20d64e04849c4ba821103b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=YF4Jf5-97CcDd6k-4amyzDX3ixhlP2m5sM7OlfeBkt1Pezm-NUysosh6aySB-D0jl-YQtr4bzBTUSjpxUS6iLEoTH0KwN7FkHIo1GJRt5iU~x1uLnfmie2~8iW80lOs9tIM7UNT3K~9gQjeHlsyAaZXUesGJC71OHnnn8DBaQik_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 46, + "Company": 6, + "FirstName": "Hermenegilda", + "LastName": "Guereca", + "DisplayName": "Mayela Guereca", + "OtherName": null, + "Salutation": null, + "MainAddress": 191, + "PostalAddress": null, + "Contact": 272892, + "EmergencyAddress": 284, + "DateOfBirth": "1974-08-04T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 996, + "UserId": 47, + "JobAppId": null, + "Active": true, + "StartDate": "2021-09-13T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275993, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:22-07:00", + "Modified": "2022-07-06T11:07:12-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9205, + "Employee": 47, + "EmployeeHistory": 276009, + "EmployeeAgreement": 49, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664199600, + "EndTime": 1664231520, + "Mealbreak": "2022-09-26T00:37:00-06:00", + "MealbreakSlots": { + "1664219160": "OUT", + "1664221380": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 19560, + "intEnd": 21780, + "intUnixStart": 1664219160, + "intUnixEnd": 1664221380, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.25, + "TotalTimeInv": 8.5, + "Cost": 140.25, + "Roster": 21114, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2358, + "File": 16642, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 46, + "Created": "2022-09-26T07:40:21-06:00", + "Modified": "2022-09-26T20:23:53-06:00", + "OnCost": 140.25, + "StartTimeLocalized": "2022-09-26T07:40:00-06:00", + "EndTimeLocalized": "2022-09-26T16:32:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 46, + "DisplayName": "Victor Rodriguez", + "EmployeeProfile": 47, + "Employee": 47, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6ef336a6a9cd56b2d1bd1b234ae66de3.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UGXfleUvjHE6qvoPEVFQLGdGVqxhZXYacfcREflTAb5V42Mu7XadcuUaAFumltzbPDvFG3~w15EHcYohiSIp9uX-hegZEMjNcUd4Dbsw5NTFJoJWmSjzk6tldj-eh5gm6VR55z8lKfkyqH422DD4if5Ep102xiZvN67-4pAx19k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 46, + "DisplayName": "Victor Rodriguez", + "EmployeeProfile": 47, + "Employee": 47, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6ef336a6a9cd56b2d1bd1b234ae66de3.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UGXfleUvjHE6qvoPEVFQLGdGVqxhZXYacfcREflTAb5V42Mu7XadcuUaAFumltzbPDvFG3~w15EHcYohiSIp9uX-hegZEMjNcUd4Dbsw5NTFJoJWmSjzk6tldj-eh5gm6VR55z8lKfkyqH422DD4if5Ep102xiZvN67-4pAx19k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 47, + "Company": 6, + "FirstName": "Victor", + "LastName": "Rodriguez", + "DisplayName": "Victor Rodriguez", + "OtherName": null, + "Salutation": null, + "MainAddress": 191, + "PostalAddress": null, + "Contact": 272891, + "EmergencyAddress": 284, + "DateOfBirth": "1996-05-02T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1001, + "UserId": 46, + "JobAppId": null, + "Active": true, + "StartDate": "2021-03-24T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276009, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:22-07:00", + "Modified": "2022-07-06T11:20:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9200, + "Employee": 77, + "EmployeeHistory": 275987, + "EmployeeAgreement": 80, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664199900, + "EndTime": 1664228700, + "Mealbreak": "2022-09-26T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [], + "TotalTime": 8, + "TotalTimeInv": 8, + "Cost": 0, + "Roster": null, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": null, + "IsInProgress": null, + "IsLeave": true, + "LeaveId": 352, + "LeaveRule": 2, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2353, + "File": null, + "CustomFieldData": null, + "RealTime": false, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": -2, + "Created": "2022-09-26T00:26:56-06:00", + "Modified": "2022-09-26T00:26:56-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-26T07:45:00-06:00", + "EndTimeLocalized": "2022-09-26T15:45:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": -1, + "DisplayName": "Deputy", + "Photo": "https://d2sebmzxyyulvv.cloudfront.net/deputy-avatar-30.png" + }, + "OperationalUnitInfo": null, + "EmployeeInfo": { + "Id": 77, + "DisplayName": "Jazmin Hernandez", + "EmployeeProfile": 77, + "Employee": 77, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a23cb02ace17d5ef811fa933b3120d27.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WOkdY5KzpCghTpqEzV6Q4OxzWKa5vKV7OoXYhPMwJvsq4rudREpRfkCfn3SsKpg0zpBBV3UVB68Hu09Ksi6L4cHrhbniM4I-tQt6pjHspvvoYCusVGTuQJClpXL9i4sax-lsois8uDNTcH5qQWSrWVoOmAxuwfabkepzuUQ6l00_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 77, + "Company": 5, + "FirstName": "Jazmin", + "LastName": "Hernandez", + "DisplayName": "Jazmin Hernandez", + "OtherName": null, + "Salutation": null, + "MainAddress": 273, + "PostalAddress": null, + "Contact": 272916, + "EmergencyAddress": 274, + "DateOfBirth": "1996-02-08T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1507, + "UserId": 77, + "JobAppId": null, + "Active": true, + "StartDate": "2021-09-13T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275987, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:29-07:00", + "Modified": "2022-07-06T11:03:30-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9206, + "Employee": 132, + "EmployeeHistory": 276017, + "EmployeeAgreement": 490, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664199900, + "EndTime": 1664233440, + "Mealbreak": "2022-09-26T01:01:00-06:00", + "MealbreakSlots": { + "1664217840": "OUT", + "1664221500": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17940, + "intEnd": 21600, + "intUnixStart": 1664217840, + "intUnixEnd": 1664221500, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.3, + "TotalTimeInv": 9.25, + "Cost": 207.5, + "Roster": 21313, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 26, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2359, + "File": 16645, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 132, + "Created": "2022-09-26T07:45:25-06:00", + "Modified": "2022-09-26T17:11:25-06:00", + "OnCost": 207.5, + "StartTimeLocalized": "2022-09-26T07:45:00-06:00", + "EndTimeLocalized": "2022-09-26T17:04:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 132, + "DisplayName": "Jon", + "EmployeeProfile": 132, + "Employee": 132, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fd566c9266f17faafed72321559bb482.jpg?Expires=1664545771&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=ZvT4WL2UTLQq~hjnwDzKCIjP~rcjzy8nvT2Tf1FQh5kqXvaaR3y9JUPNUoAJMJkeDJVeqPIaw6VjooKrYcMn5FiWzva7-rCtAFyXvTlffzjyWsKQTFpH4z0p8MCuAlg7m0DUrMcNniShXq~eD3G2dyH6oWEwPdAt8egjx9fTjkA_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 26, + "OperationalUnitName": "Sono", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Sono" + }, + "EmployeeInfo": { + "Id": 132, + "DisplayName": "Jon", + "EmployeeProfile": 132, + "Employee": 132, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fd566c9266f17faafed72321559bb482.jpg?Expires=1664545771&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=ZvT4WL2UTLQq~hjnwDzKCIjP~rcjzy8nvT2Tf1FQh5kqXvaaR3y9JUPNUoAJMJkeDJVeqPIaw6VjooKrYcMn5FiWzva7-rCtAFyXvTlffzjyWsKQTFpH4z0p8MCuAlg7m0DUrMcNniShXq~eD3G2dyH6oWEwPdAt8egjx9fTjkA_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 132, + "Company": 2, + "FirstName": "Jonathan", + "LastName": "Ojeda", + "DisplayName": "Jon", + "OtherName": null, + "Salutation": null, + "MainAddress": 330, + "PostalAddress": null, + "Contact": 272928, + "EmergencyAddress": 328, + "DateOfBirth": "1982-01-06T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 8226, + "UserId": 132, + "JobAppId": null, + "Active": true, + "StartDate": "2022-06-13T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276017, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-06-23T15:14:56-06:00", + "Modified": "2022-07-06T11:36:58-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9207, + "Employee": 30, + "EmployeeHistory": 170130, + "EmployeeAgreement": 32, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664200020, + "EndTime": 1664237820, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664219160": "OUT", + "1664222760": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 19140, + "intEnd": 22740, + "intUnixStart": 1664219160, + "intUnixEnd": 1664222760, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.5, + "TotalTimeInv": 10.22, + "Cost": 161.5, + "Roster": 21056, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2360, + "File": 16670, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 29, + "Created": "2022-09-26T07:47:32-06:00", + "Modified": "2022-09-26T20:23:52-06:00", + "OnCost": 161.5, + "StartTimeLocalized": "2022-09-26T07:47:00-06:00", + "EndTimeLocalized": "2022-09-26T18:17:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 29, + "DisplayName": "Aracely Tirrell", + "EmployeeProfile": 30, + "Employee": 30, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0d6425f581e9558209dd05be4e252239.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L9-lhv8DadL3tonHbygPqGiLf7bJAmakD7hzTwKXLJc3~GIZU6n16NldpwO6IqaxrQ61jRs9SH2sv0q1xRVN2sf7pv8rvyPxVEgPib~cuBzneMQ4FI5NBhKOIbx0ggCpukXtdUwwLgmjIGcOcdIqmZ8qCNbnre9QR63AEXdvgJU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 29, + "DisplayName": "Aracely Tirrell", + "EmployeeProfile": 30, + "Employee": 30, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0d6425f581e9558209dd05be4e252239.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L9-lhv8DadL3tonHbygPqGiLf7bJAmakD7hzTwKXLJc3~GIZU6n16NldpwO6IqaxrQ61jRs9SH2sv0q1xRVN2sf7pv8rvyPxVEgPib~cuBzneMQ4FI5NBhKOIbx0ggCpukXtdUwwLgmjIGcOcdIqmZ8qCNbnre9QR63AEXdvgJU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 30, + "Company": 6, + "FirstName": "Aracely", + "LastName": "Tirrell", + "DisplayName": "Aracely Tirrell", + "OtherName": null, + "Salutation": null, + "MainAddress": 176, + "PostalAddress": null, + "Contact": 167145, + "EmergencyAddress": 284, + "DateOfBirth": "1978-06-12T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 990, + "UserId": 29, + "JobAppId": null, + "Active": true, + "StartDate": null, + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 1, + "AllowAppraisal": true, + "HistoryId": 170130, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:18-07:00", + "Modified": "2022-05-23T08:00:28-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9208, + "Employee": 60, + "EmployeeHistory": 275996, + "EmployeeAgreement": 63, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664200140, + "EndTime": 1664222700, + "Mealbreak": "2022-09-26T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -240, + "intEnd": -240, + "intUnixStart": 1664199900, + "intUnixEnd": 1664199900, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 6.27, + "TotalTimeInv": 6.18, + "Cost": 175.56, + "Roster": 21122, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 37, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2361, + "File": 16627, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 60, + "Created": "2022-09-26T07:49:56-06:00", + "Modified": "2022-09-26T14:26:28-06:00", + "OnCost": 175.56, + "StartTimeLocalized": "2022-09-26T07:49:00-06:00", + "EndTimeLocalized": "2022-09-26T14:05:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 60, + "DisplayName": "Michelle Woo", + "EmployeeProfile": 60, + "Employee": 60, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_962116eaa6ef3f7c69e80c5ba249e082.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=d-iCH-7s4qiRodf0w88ph7HZLa81OUuXwW6jVe41TXHTMZCfMsAnzchyJXNySONd2XzXZWDwrbSnUVABRspOzUFKYd59X-wJBDHURanzm03oHzU0qMwU7fwUkg77bbwVckCUz7-nzIl6ClPCCi~X0rLyc5a5s28KRIvqLJA0U2Q_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 37, + "OperationalUnitName": "Sono", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Sono" + }, + "EmployeeInfo": { + "Id": 60, + "DisplayName": "Michelle Woo", + "EmployeeProfile": 60, + "Employee": 60, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_962116eaa6ef3f7c69e80c5ba249e082.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=d-iCH-7s4qiRodf0w88ph7HZLa81OUuXwW6jVe41TXHTMZCfMsAnzchyJXNySONd2XzXZWDwrbSnUVABRspOzUFKYd59X-wJBDHURanzm03oHzU0qMwU7fwUkg77bbwVckCUz7-nzIl6ClPCCi~X0rLyc5a5s28KRIvqLJA0U2Q_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 60, + "Company": 3, + "FirstName": "Michelle", + "LastName": "Woo", + "DisplayName": "Michelle Woo", + "OtherName": null, + "Salutation": null, + "MainAddress": 207, + "PostalAddress": null, + "Contact": 272901, + "EmergencyAddress": 294, + "DateOfBirth": "1986-02-12T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1045, + "UserId": 60, + "JobAppId": null, + "Active": true, + "StartDate": "2019-05-13T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275996, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:25-07:00", + "Modified": "2022-07-06T11:07:59-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9209, + "Employee": 29, + "EmployeeHistory": 276050, + "EmployeeAgreement": 31, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664200200, + "EndTime": 1664233920, + "Mealbreak": "2022-09-26T00:58:00-06:00", + "MealbreakSlots": { + "1664222760": "OUT", + "1664226240": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 22560, + "intEnd": 26040, + "intUnixStart": 1664222760, + "intUnixEnd": 1664226240, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.4, + "TotalTimeInv": 9.17, + "Cost": 142.8, + "Roster": 21048, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 36, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2362, + "File": 16652, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 30, + "Created": "2022-09-26T07:50:09-06:00", + "Modified": "2022-09-26T20:23:51-06:00", + "OnCost": 142.8, + "StartTimeLocalized": "2022-09-26T07:50:00-06:00", + "EndTimeLocalized": "2022-09-26T17:12:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 30, + "DisplayName": "Silvia Salcido de Moreno", + "EmployeeProfile": 29, + "Employee": 29, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3f067188d2050db4e922a9904d14c196.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UcsrcSR8gqr2CtXJRC5u9r0w44WmO69SeBmOZzONvnRUN9soxtxeN4cWNYXLk7kptSLZsp2MH8CsIQb65O~b7Ccs2tkpU9aPsApMWxYLqAoewtSHOI3B3fDxRHXigUBKmy-SswnDqgI79qIjSvF0YlDps-ubZsEyLwnDrd9xq74_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 36, + "OperationalUnitName": "Medical Assistants", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 30, + "DisplayName": "Silvia Salcido de Moreno", + "EmployeeProfile": 29, + "Employee": 29, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3f067188d2050db4e922a9904d14c196.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UcsrcSR8gqr2CtXJRC5u9r0w44WmO69SeBmOZzONvnRUN9soxtxeN4cWNYXLk7kptSLZsp2MH8CsIQb65O~b7Ccs2tkpU9aPsApMWxYLqAoewtSHOI3B3fDxRHXigUBKmy-SswnDqgI79qIjSvF0YlDps-ubZsEyLwnDrd9xq74_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 29, + "Company": 3, + "FirstName": "Silvia", + "LastName": "Salcido de Moreno", + "DisplayName": "Silvia Salcido de Moreno", + "OtherName": null, + "Salutation": null, + "MainAddress": 175, + "PostalAddress": null, + "Contact": 272939, + "EmergencyAddress": 284, + "DateOfBirth": "1986-11-10T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1022, + "UserId": 30, + "JobAppId": null, + "Active": true, + "StartDate": "2013-09-23T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276050, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:18-07:00", + "Modified": "2022-07-22T08:51:06-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9210, + "Employee": 70, + "EmployeeHistory": 275990, + "EmployeeAgreement": 73, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664200380, + "EndTime": 1664219340, + "Mealbreak": "2022-09-26T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -480, + "intEnd": 3120, + "intUnixStart": 1664199900, + "intUnixEnd": 1664203500, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.27, + "TotalTimeInv": 9.12, + "Cost": 73.78, + "Roster": 21161, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 33, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2363, + "File": 16616, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 70, + "Created": "2022-09-26T07:53:06-06:00", + "Modified": "2022-09-26T20:23:54-06:00", + "OnCost": 73.78, + "StartTimeLocalized": "2022-09-26T07:53:00-06:00", + "EndTimeLocalized": "2022-09-26T13:09:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 70, + "DisplayName": "Lizbeth Fernandez", + "EmployeeProfile": 70, + "Employee": 70, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6d285879d6d82fb513b2adf1550b5756.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=fvTaWT87c1IldSxd~NoV5DBUnTFM22Yg5Mxd0syl3-kBp1rdh9N1phQ2~sk3v0ca47oFUs4Fv~a7RuwxEp8H3zVgvV5q68eBSmq8RpI9zAJsTCax6uAZvMgfTHH~KPKpiTAyp~E92VfEc27FRAvdm2GznYzS5zFKZzJn6Q84qqk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 33, + "OperationalUnitName": "Medical Assistants", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 70, + "DisplayName": "Lizbeth Fernandez", + "EmployeeProfile": 70, + "Employee": 70, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6d285879d6d82fb513b2adf1550b5756.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=fvTaWT87c1IldSxd~NoV5DBUnTFM22Yg5Mxd0syl3-kBp1rdh9N1phQ2~sk3v0ca47oFUs4Fv~a7RuwxEp8H3zVgvV5q68eBSmq8RpI9zAJsTCax6uAZvMgfTHH~KPKpiTAyp~E92VfEc27FRAvdm2GznYzS5zFKZzJn6Q84qqk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 70, + "Company": 5, + "FirstName": "Lizbeth", + "LastName": "Fernandez", + "DisplayName": "Lizbeth Fernandez", + "OtherName": null, + "Salutation": null, + "MainAddress": 223, + "PostalAddress": null, + "Contact": 272910, + "EmergencyAddress": 266, + "DateOfBirth": "1998-12-15T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1234, + "UserId": 70, + "JobAppId": null, + "Active": true, + "StartDate": "2020-09-21T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275990, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-07-06T11:05:38-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9211, + "Employee": 44, + "EmployeeHistory": 276003, + "EmployeeAgreement": 331, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664200440, + "EndTime": 1664235300, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664224500": "OUT", + "1664228100": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 24060, + "intEnd": 27660, + "intUnixStart": 1664224500, + "intUnixEnd": 1664228100, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.68, + "TotalTimeInv": 9.1, + "Cost": 182.28, + "Roster": 21193, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 28, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2364, + "File": 16657, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 44, + "Created": "2022-09-26T07:54:36-06:00", + "Modified": "2022-09-27T20:03:04-06:00", + "OnCost": 182.28, + "StartTimeLocalized": "2022-09-26T07:54:00-06:00", + "EndTimeLocalized": "2022-09-26T17:35:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 44, + "DisplayName": "Sergio Armendariz", + "EmployeeProfile": 44, + "Employee": 44, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_dbc48ce256a1ea33d79d941183bd70c1.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Dewnzh5JoxabPwisBVYbOYybmCsJQ7ALzAqoMRLE1~KSP0w8X0PlSZ07jo1Tz-PA4KMwvbB7i26hVNvJouNHAgtGiuu1k8u4XYvnd4uVQHsaW0tT0hFNFkqoI2RoXfocdwbDBX1qPsOwZadj1cO0zz-EP8vHTVEgCu8yo4oD-rQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 28, + "OperationalUnitName": "Medical Assistants", + "Company": 5, + "CompanyName": "Montana", + "LabelWithCompany": "[MON] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 44, + "DisplayName": "Sergio Armendariz", + "EmployeeProfile": 44, + "Employee": 44, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_dbc48ce256a1ea33d79d941183bd70c1.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Dewnzh5JoxabPwisBVYbOYybmCsJQ7ALzAqoMRLE1~KSP0w8X0PlSZ07jo1Tz-PA4KMwvbB7i26hVNvJouNHAgtGiuu1k8u4XYvnd4uVQHsaW0tT0hFNFkqoI2RoXfocdwbDBX1qPsOwZadj1cO0zz-EP8vHTVEgCu8yo4oD-rQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 44, + "Company": 2, + "FirstName": "Sergio", + "LastName": "Armendariz", + "DisplayName": "Sergio Armendariz", + "OtherName": null, + "Salutation": null, + "MainAddress": 189, + "PostalAddress": null, + "Contact": 272890, + "EmergencyAddress": 284, + "DateOfBirth": "1995-01-15T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1011, + "UserId": 44, + "JobAppId": null, + "Active": true, + "StartDate": "2015-12-07T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276003, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:21-07:00", + "Modified": "2022-07-06T11:18:45-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9212, + "Employee": 17, + "EmployeeHistory": 275994, + "EmployeeAgreement": 18, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664200440, + "EndTime": 1664234340, + "Mealbreak": "2022-09-26T01:03:00-06:00", + "MealbreakSlots": { + "1664222220": "OUT", + "1664226000": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 21780, + "intEnd": 25560, + "intUnixStart": 1664222220, + "intUnixEnd": 1664226000, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.37, + "TotalTimeInv": 9.1, + "Cost": 133.92, + "Roster": 21029, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 65, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2365, + "File": 16655, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 18, + "Created": "2022-09-26T07:54:55-06:00", + "Modified": "2022-09-26T20:23:52-06:00", + "OnCost": 133.92, + "StartTimeLocalized": "2022-09-26T07:54:00-06:00", + "EndTimeLocalized": "2022-09-26T17:19:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 18, + "DisplayName": "Mayra Ferniza", + "EmployeeProfile": 17, + "Employee": 17, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_72e0ebcee2a1ac5d0207375e1696021d.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=VD3GM9chKcXh8LqkvKxXltjrAuGcwklwrKlVfkBrYUSdbDx1q37RTBfTv2MlgKZgq0SvMLmJ~ent9OdHT-62A27YkfTAStMajzTtbD5Xh91k-Ivg9plfCY6fEj1-9KpWo6GJF18Pwufx1YEys68hmZ~tZuImV5XDUvtg1yvMBmM_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 65, + "OperationalUnitName": "Justine Franco NP", + "Company": 5, + "CompanyName": "Montana", + "LabelWithCompany": "[MON] Justine Franco NP" + }, + "EmployeeInfo": { + "Id": 18, + "DisplayName": "Mayra Ferniza", + "EmployeeProfile": 17, + "Employee": 17, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_72e0ebcee2a1ac5d0207375e1696021d.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=VD3GM9chKcXh8LqkvKxXltjrAuGcwklwrKlVfkBrYUSdbDx1q37RTBfTv2MlgKZgq0SvMLmJ~ent9OdHT-62A27YkfTAStMajzTtbD5Xh91k-Ivg9plfCY6fEj1-9KpWo6GJF18Pwufx1YEys68hmZ~tZuImV5XDUvtg1yvMBmM_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 17, + "Company": 5, + "FirstName": "Mayra", + "LastName": "Ferniza", + "DisplayName": "Mayra Ferniza", + "OtherName": null, + "Salutation": null, + "MainAddress": 160, + "PostalAddress": null, + "Contact": 272873, + "EmergencyAddress": 256, + "DateOfBirth": "1986-09-14T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1015, + "UserId": 18, + "JobAppId": null, + "Active": true, + "StartDate": "2012-08-07T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275994, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:16-07:00", + "Modified": "2022-07-06T11:07:30-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9213, + "Employee": 89, + "EmployeeHistory": 130525, + "EmployeeAgreement": 109, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664200500, + "EndTime": 1664236860, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664219220": "OUT", + "1664222820": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18720, + "intEnd": 22320, + "intUnixStart": 1664219220, + "intUnixEnd": 1664222820, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.1, + "TotalTimeInv": 9, + "Cost": 136.5, + "Roster": 21219, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2366, + "File": 16662, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 89, + "Created": "2022-09-26T07:55:52-06:00", + "Modified": "2022-09-26T20:23:51-06:00", + "OnCost": 136.5, + "StartTimeLocalized": "2022-09-26T07:55:00-06:00", + "EndTimeLocalized": "2022-09-26T18:01:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 89, + "DisplayName": "Mona Lisa Hernandez", + "EmployeeProfile": 89, + "Employee": 89, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6bcaee5d709787a53a63d172427feb7e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=VHQMOdIhIB2LES8dS85N2IUjsWSmZ9AOU7Kix0bjetxMA4scwzBwg521nKljpJL7qidyl1DBTL~sSj66vp9VyoFCi3MAWiGFO98C-ADgywplGDuEv8C8MuQPcFdU4uVF-E1KEDhF7rh3Nm~uIg2sT9FB8LtdWoJYDQ~RwMtZV5U_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 89, + "DisplayName": "Mona Lisa Hernandez", + "EmployeeProfile": 89, + "Employee": 89, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6bcaee5d709787a53a63d172427feb7e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=VHQMOdIhIB2LES8dS85N2IUjsWSmZ9AOU7Kix0bjetxMA4scwzBwg521nKljpJL7qidyl1DBTL~sSj66vp9VyoFCi3MAWiGFO98C-ADgywplGDuEv8C8MuQPcFdU4uVF-E1KEDhF7rh3Nm~uIg2sT9FB8LtdWoJYDQ~RwMtZV5U_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 89, + "Company": 6, + "FirstName": "Mona Lisa", + "LastName": "Hernandez", + "DisplayName": "Mona Lisa Hernandez", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 51786, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 984, + "UserId": 89, + "JobAppId": null, + "Active": true, + "StartDate": "2022-03-29T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 130525, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-29T15:06:08-07:00", + "Modified": "2022-04-28T11:15:36-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9214, + "Employee": 86, + "EmployeeHistory": 276021, + "EmployeeAgreement": 89, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664200620, + "EndTime": 1664230080, + "Mealbreak": "2022-09-26T00:54:00-06:00", + "MealbreakSlots": { + "1664218860": "OUT", + "1664222100": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18240, + "intEnd": 21480, + "intUnixStart": 1664218860, + "intUnixEnd": 1664222100, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.28, + "TotalTimeInv": 9.05, + "Cost": 101.92, + "Roster": 21217, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 36, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2367, + "File": 16638, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 86, + "Created": "2022-09-26T07:57:00-06:00", + "Modified": "2022-09-26T20:23:53-06:00", + "OnCost": 101.92, + "StartTimeLocalized": "2022-09-26T07:57:00-06:00", + "EndTimeLocalized": "2022-09-26T16:08:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 86, + "DisplayName": "Aldo Avalos", + "EmployeeProfile": 86, + "Employee": 86, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3eb3267981c5efb334c2afbffd04cfbc.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cZItaLHsgvlP1gxq7BtwMpBgfIi98fE2uOcdTzI27hyNqOjwpxSyHEjABqf~cgFVyYn17CQQ-O5-5T3ePiZHT9deei6n7U9n7J4S~XmOiB0pTYDlq6zZQv--ijgyM-yVEnKPzAEWU1zruW0sm3-TdUfzVMTvSf7j0jqKPvunnpo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 36, + "OperationalUnitName": "Medical Assistants", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 86, + "DisplayName": "Aldo Avalos", + "EmployeeProfile": 86, + "Employee": 86, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3eb3267981c5efb334c2afbffd04cfbc.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cZItaLHsgvlP1gxq7BtwMpBgfIi98fE2uOcdTzI27hyNqOjwpxSyHEjABqf~cgFVyYn17CQQ-O5-5T3ePiZHT9deei6n7U9n7J4S~XmOiB0pTYDlq6zZQv--ijgyM-yVEnKPzAEWU1zruW0sm3-TdUfzVMTvSf7j0jqKPvunnpo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 86, + "Company": 3, + "FirstName": "Aldo", + "LastName": "Avalos", + "DisplayName": "Aldo Avalos", + "OtherName": null, + "Salutation": null, + "MainAddress": 251, + "PostalAddress": null, + "Contact": 272923, + "EmergencyAddress": 284, + "DateOfBirth": "1993-08-11T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1072, + "UserId": 86, + "JobAppId": null, + "Active": true, + "StartDate": "2022-03-23T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276021, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:31-07:00", + "Modified": "2022-07-07T09:21:06-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9215, + "Employee": 21, + "EmployeeHistory": 275991, + "EmployeeAgreement": 23, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664200680, + "EndTime": 1664237520, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664222220": "OUT", + "1664225820": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 21540, + "intEnd": 25140, + "intUnixStart": 1664222220, + "intUnixEnd": 1664225820, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.23, + "TotalTimeInv": 9.03, + "Cost": 175.37, + "Roster": 21031, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 57, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2368, + "File": 16667, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 21, + "Created": "2022-09-26T07:58:31-06:00", + "Modified": "2022-09-26T20:23:52-06:00", + "OnCost": 175.37, + "StartTimeLocalized": "2022-09-26T07:58:00-06:00", + "EndTimeLocalized": "2022-09-26T18:12:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 21, + "DisplayName": "Maria Guillen", + "EmployeeProfile": 21, + "Employee": 21, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e3b5bec34009dbb7139833c1258194bf.jpg?Expires=1664555144&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=QZLu0svi5t00EF-oNgG~isJqr9noBslJNac-HcCFxP6dhJ5glS27ItJtD22GTdCeJBR76NBfHEkjtSVVfY6mRfsm7nTniReC6MUwPZcxtqbEGAa~TX2gJWJeHbovO-g68kMgioz~aFdXNGvAdcKYdUI62fskf7POfIP2xI3jMXU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 57, + "OperationalUnitName": "Tyler Roberts PA-C", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Tyler Roberts PA-C" + }, + "EmployeeInfo": { + "Id": 21, + "DisplayName": "Maria Guillen", + "EmployeeProfile": 21, + "Employee": 21, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e3b5bec34009dbb7139833c1258194bf.jpg?Expires=1664555144&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=QZLu0svi5t00EF-oNgG~isJqr9noBslJNac-HcCFxP6dhJ5glS27ItJtD22GTdCeJBR76NBfHEkjtSVVfY6mRfsm7nTniReC6MUwPZcxtqbEGAa~TX2gJWJeHbovO-g68kMgioz~aFdXNGvAdcKYdUI62fskf7POfIP2xI3jMXU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 21, + "Company": 4, + "FirstName": "Maria", + "LastName": "Guillen", + "DisplayName": "Maria Guillen", + "OtherName": null, + "Salutation": null, + "MainAddress": 165, + "PostalAddress": null, + "Contact": 272875, + "EmergencyAddress": 284, + "DateOfBirth": "1979-03-23T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1091, + "UserId": 21, + "JobAppId": null, + "Active": true, + "StartDate": "2002-11-22T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275991, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:17-07:00", + "Modified": "2022-07-06T11:05:55-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9216, + "Employee": 82, + "EmployeeHistory": 276110, + "EmployeeAgreement": 322, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664200740, + "EndTime": 1664224800, + "Mealbreak": "2022-09-26T01:03:00-06:00", + "MealbreakSlots": { + "1664214180": "OUT", + "1664217960": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 13440, + "intEnd": 17220, + "intUnixStart": 1664214180, + "intUnixEnd": 1664217960, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 5.63, + "TotalTimeInv": 10, + "Cost": 78.82, + "Roster": 21214, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2369, + "File": 16635, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 82, + "Created": "2022-09-26T07:59:57-06:00", + "Modified": "2022-09-26T20:23:51-06:00", + "OnCost": 78.82, + "StartTimeLocalized": "2022-09-26T07:59:00-06:00", + "EndTimeLocalized": "2022-09-26T14:40:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 82, + "DisplayName": "Valerie Torres", + "EmployeeProfile": 82, + "Employee": 82, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_882d771b3ed9418b8c0bb25151643136.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=HNxAI-PEVEeMkKjfEl5bsDwHytjIlz9R6cQls1d1erg2KLtlgWEZOfxDmlNF4DgZJkyU0kHhuM5U1AXqXkrWedQ6-UI2lYqquLh-k0bKHF4jjvAbjXE06eNaazvb4i7g~Koxd9-j-8W5VxUPtWRnWhld4QCbK6yE5DEQ~t~NHzo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 82, + "DisplayName": "Valerie Torres", + "EmployeeProfile": 82, + "Employee": 82, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_882d771b3ed9418b8c0bb25151643136.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=HNxAI-PEVEeMkKjfEl5bsDwHytjIlz9R6cQls1d1erg2KLtlgWEZOfxDmlNF4DgZJkyU0kHhuM5U1AXqXkrWedQ6-UI2lYqquLh-k0bKHF4jjvAbjXE06eNaazvb4i7g~Koxd9-j-8W5VxUPtWRnWhld4QCbK6yE5DEQ~t~NHzo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 82, + "Company": 6, + "FirstName": "Valerie", + "LastName": "Torres", + "DisplayName": "Valerie Torres", + "OtherName": null, + "Salutation": null, + "MainAddress": 245, + "PostalAddress": null, + "Contact": 272956, + "EmergencyAddress": 284, + "DateOfBirth": "1992-09-15T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 15036, + "UserId": 82, + "JobAppId": null, + "Active": true, + "StartDate": "2022-02-21T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276110, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:30-07:00", + "Modified": "2022-09-07T20:54:54-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9217, + "Employee": 80, + "EmployeeHistory": 275995, + "EmployeeAgreement": 83, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664200860, + "EndTime": 1664237520, + "Mealbreak": "2022-09-26T01:03:00-06:00", + "MealbreakSlots": { + "1664215200": "OUT", + "1664218980": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 14340, + "intEnd": 18120, + "intUnixStart": 1664215200, + "intUnixEnd": 1664218980, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.13, + "TotalTimeInv": 8.98, + "Cost": 127.82, + "Roster": 21211, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 33, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2370, + "File": 16669, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 80, + "Created": "2022-09-26T08:01:00-06:00", + "Modified": "2022-09-26T20:23:53-06:00", + "OnCost": 127.82, + "StartTimeLocalized": "2022-09-26T08:01:00-06:00", + "EndTimeLocalized": "2022-09-26T18:12:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 80, + "DisplayName": "Michelle Mireles", + "EmployeeProfile": 80, + "Employee": 80, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_58b0ad92f564a5ee12977eea5eb008c9.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hp-zipvv5NyrMnl8s9SQJe6RI7d-SwtlmLNWX84XZf-Y83zbAuptR8cV3UHkuJQDQ6rEqpagn2hVJyYGUV0jFEyKUTpxXMi5XsDTKW7Uj6Cp2vLVtv9-mdOmNOqgd3s1roK3OJra~1Atd~lntRligghnxL3fygpH-nCtlfGak~M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 33, + "OperationalUnitName": "Medical Assistants", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 80, + "DisplayName": "Michelle Mireles", + "EmployeeProfile": 80, + "Employee": 80, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_58b0ad92f564a5ee12977eea5eb008c9.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hp-zipvv5NyrMnl8s9SQJe6RI7d-SwtlmLNWX84XZf-Y83zbAuptR8cV3UHkuJQDQ6rEqpagn2hVJyYGUV0jFEyKUTpxXMi5XsDTKW7Uj6Cp2vLVtv9-mdOmNOqgd3s1roK3OJra~1Atd~lntRligghnxL3fygpH-nCtlfGak~M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 80, + "Company": 4, + "FirstName": "Michelle", + "LastName": "Mireles", + "DisplayName": "Michelle Mireles", + "OtherName": null, + "Salutation": null, + "MainAddress": 277, + "PostalAddress": null, + "Contact": 272918, + "EmergencyAddress": 284, + "DateOfBirth": "2000-09-10T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1035, + "UserId": 80, + "JobAppId": null, + "Active": true, + "StartDate": "2021-10-20T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275995, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:29-07:00", + "Modified": "2022-07-06T11:07:44-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9218, + "Employee": 76, + "EmployeeHistory": 276034, + "EmployeeAgreement": 79, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664200860, + "EndTime": 1664238660, + "Mealbreak": "2022-09-26T00:57:00-06:00", + "MealbreakSlots": { + "1664216760": "OUT", + "1664220180": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15900, + "intEnd": 19320, + "intUnixStart": 1664216760, + "intUnixEnd": 1664220180, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.55, + "TotalTimeInv": 9.98, + "Cost": 0, + "Roster": 21341, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 47, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2371, + "File": 16672, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 76, + "Created": "2022-09-26T08:01:01-06:00", + "Modified": "2022-09-26T20:23:55-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-26T08:01:00-06:00", + "EndTimeLocalized": "2022-09-26T18:31:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 76, + "DisplayName": "Nadia Quintanilla", + "EmployeeProfile": 76, + "Employee": 76, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_40124f0029a54143cf7b7620fda4496b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=LlQK-YBhVSOrIOxpPNF4B27UNupfTVXRTKcy~YbcQrzc-kTwvDpU5ileLFajQyLlj1bAN2kCIcbD8sVldqDnx9mjDD1MxAwltdV0uI3SkEcs-9VzPEmK-TZW1hLQOG4PY1Xswuqt-DDrePJ0kjS~06NEN0H1drbNxZ7doie9Jdg_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 47, + "OperationalUnitName": "Nadia Quintanilla PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Nadia Quintanilla PA-C" + }, + "EmployeeInfo": { + "Id": 76, + "DisplayName": "Nadia Quintanilla", + "EmployeeProfile": 76, + "Employee": 76, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_40124f0029a54143cf7b7620fda4496b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=LlQK-YBhVSOrIOxpPNF4B27UNupfTVXRTKcy~YbcQrzc-kTwvDpU5ileLFajQyLlj1bAN2kCIcbD8sVldqDnx9mjDD1MxAwltdV0uI3SkEcs-9VzPEmK-TZW1hLQOG4PY1Xswuqt-DDrePJ0kjS~06NEN0H1drbNxZ7doie9Jdg_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 76, + "Company": 5, + "FirstName": "Nadia", + "LastName": "Quintanilla", + "DisplayName": "Nadia Quintanilla", + "OtherName": null, + "Salutation": null, + "MainAddress": 235, + "PostalAddress": null, + "Contact": 272915, + "EmergencyAddress": 271, + "DateOfBirth": "1990-11-22T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1016, + "UserId": 76, + "JobAppId": null, + "Active": true, + "StartDate": "2021-07-26T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276034, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-07-11T16:04:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9219, + "Employee": 72, + "EmployeeHistory": 276129, + "EmployeeAgreement": 75, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664200860, + "EndTime": 1664235000, + "Mealbreak": "2022-09-26T01:01:00-06:00", + "MealbreakSlots": { + "1664222760": "OUT", + "1664226420": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 21900, + "intEnd": 25560, + "intUnixStart": 1664222760, + "intUnixEnd": 1664226420, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.47, + "TotalTimeInv": 8.98, + "Cost": 118.58, + "Roster": 21180, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 57, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2372, + "File": 16629, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 72, + "Created": "2022-09-26T08:01:23-06:00", + "Modified": "2022-09-26T19:13:31-06:00", + "OnCost": 118.58, + "StartTimeLocalized": "2022-09-26T08:01:00-06:00", + "EndTimeLocalized": "2022-09-26T17:30:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 72, + "DisplayName": "Samm Viveros", + "EmployeeProfile": 72, + "Employee": 72, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_74a08a03a3c5e8d3bf5727f4cba4151f.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=KSdcgzaaINE~tib0mSFZT-s4x0KOmCcSH3k1JDGe2RAMhTVrbOyjaq-s11mhLZ7XPAUfmDS2fvVgYVGkAaWk7gtp8jjVtO~Aj~oF78-ylIXeVHXjF3hw1SfU9UhC0np1rp3i4wiuJQuMPjGg6ytVcCiWLDoabeN5akC9L1fFY0Y_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 57, + "OperationalUnitName": "Tyler Roberts PA-C", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Tyler Roberts PA-C" + }, + "EmployeeInfo": { + "Id": 72, + "DisplayName": "Samm Viveros", + "EmployeeProfile": 72, + "Employee": 72, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_74a08a03a3c5e8d3bf5727f4cba4151f.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=KSdcgzaaINE~tib0mSFZT-s4x0KOmCcSH3k1JDGe2RAMhTVrbOyjaq-s11mhLZ7XPAUfmDS2fvVgYVGkAaWk7gtp8jjVtO~Aj~oF78-ylIXeVHXjF3hw1SfU9UhC0np1rp3i4wiuJQuMPjGg6ytVcCiWLDoabeN5akC9L1fFY0Y_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 72, + "Company": 4, + "FirstName": "Samantha", + "LastName": "Viveros", + "DisplayName": "Samm Viveros", + "OtherName": null, + "Salutation": null, + "MainAddress": 227, + "PostalAddress": null, + "Contact": 272912, + "EmergencyAddress": 268, + "DateOfBirth": "1996-04-15T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 972, + "UserId": 72, + "JobAppId": null, + "Active": true, + "StartDate": "2020-10-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276129, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-09-20T09:38:11-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9220, + "Employee": 68, + "EmployeeHistory": 276018, + "EmployeeAgreement": 71, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664200980, + "EndTime": 1664237880, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 16260, + "intEnd": 19860, + "intUnixStart": 1664217240, + "intUnixEnd": 1664220840, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.25, + "TotalTimeInv": 9.95, + "Cost": 129.5, + "Roster": 21155, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 47, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2373, + "File": 16571, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 68, + "Created": "2022-09-26T08:03:01-06:00", + "Modified": "2022-09-26T18:18:20-06:00", + "OnCost": 129.5, + "StartTimeLocalized": "2022-09-26T08:03:00-06:00", + "EndTimeLocalized": "2022-09-26T18:18:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 68, + "DisplayName": "Stephanie Mireles", + "EmployeeProfile": 68, + "Employee": 68, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_698c34535292002e69ac63742be26976.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=e9Uf90rsb6Hxy3xuQS3sdqmEydJrHYPo4HhlkXSNn5ocwi3-~X9nLua4XoshGw1WDNjuoNpnR0o-J3C3JaTndZtWT1tXaUPoMcCUseJ8GQ5VVmRv8MDVw8Z6pUW814A6Nj9fxoNVDUJ09ylK7mIDEGkLfn4OIDVpuXrlw4vWVp0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 47, + "OperationalUnitName": "Nadia Quintanilla PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Nadia Quintanilla PA-C" + }, + "EmployeeInfo": { + "Id": 68, + "DisplayName": "Stephanie Mireles", + "EmployeeProfile": 68, + "Employee": 68, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_698c34535292002e69ac63742be26976.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=e9Uf90rsb6Hxy3xuQS3sdqmEydJrHYPo4HhlkXSNn5ocwi3-~X9nLua4XoshGw1WDNjuoNpnR0o-J3C3JaTndZtWT1tXaUPoMcCUseJ8GQ5VVmRv8MDVw8Z6pUW814A6Nj9fxoNVDUJ09ylK7mIDEGkLfn4OIDVpuXrlw4vWVp0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 68, + "Company": 2, + "FirstName": "Stephanie", + "LastName": "Mireles", + "DisplayName": "Stephanie Mireles", + "OtherName": null, + "Salutation": null, + "MainAddress": 220, + "PostalAddress": null, + "Contact": 272908, + "EmergencyAddress": 265, + "DateOfBirth": "1999-08-14T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1173, + "UserId": 68, + "JobAppId": null, + "Active": true, + "StartDate": "2020-08-05T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276018, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-07-06T13:29:25-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9221, + "Employee": 99, + "EmployeeHistory": 79589, + "EmployeeAgreement": 143, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664201040, + "EndTime": 1664230140, + "Mealbreak": "2022-09-26T01:01:00-06:00", + "MealbreakSlots": { + "1664214120": "OUT", + "1664217780": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 13080, + "intEnd": 16740, + "intUnixStart": 1664214120, + "intUnixEnd": 1664217780, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.07, + "TotalTimeInv": 8.93, + "Cost": 98.98, + "Roster": 21256, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2374, + "File": 16639, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 99, + "Created": "2022-09-26T08:04:33-06:00", + "Modified": "2022-09-26T20:23:52-06:00", + "OnCost": 98.98, + "StartTimeLocalized": "2022-09-26T08:04:00-06:00", + "EndTimeLocalized": "2022-09-26T16:09:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 99, + "DisplayName": "Fabiola Ortiz", + "EmployeeProfile": 99, + "Employee": 99, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_bc93429ae9717f0b9cec6953d463cad5.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=XG9lfHk1tJGX7wmosZBzZ0GFVJNX-ZcVSy~NxgnFwP3G-ufOuUio3wKFDXZ1nTYHt3OOYJ-mlY5Z-GoWzsIyJA0MV6tH7TW~D0m-9A2PQox25VgwZbjCU8M6SNa9QW5XKmviiXmsaR~DZyCGnHryhQ5YuuUqBtTL7UayIR428hs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 99, + "DisplayName": "Fabiola Ortiz", + "EmployeeProfile": 99, + "Employee": 99, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_bc93429ae9717f0b9cec6953d463cad5.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=XG9lfHk1tJGX7wmosZBzZ0GFVJNX-ZcVSy~NxgnFwP3G-ufOuUio3wKFDXZ1nTYHt3OOYJ-mlY5Z-GoWzsIyJA0MV6tH7TW~D0m-9A2PQox25VgwZbjCU8M6SNa9QW5XKmviiXmsaR~DZyCGnHryhQ5YuuUqBtTL7UayIR428hs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 99, + "Company": 2, + "FirstName": "Fabiola", + "LastName": "Ortiz", + "DisplayName": "Fabiola Ortiz", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 76732, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1270, + "UserId": 99, + "JobAppId": null, + "Active": true, + "StartDate": "2021-10-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 79589, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-05T11:06:04-06:00", + "Modified": "2022-04-18T20:21:43-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9222, + "Employee": 28, + "EmployeeHistory": 275975, + "EmployeeAgreement": 30, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664201040, + "EndTime": 1664233620, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664219400": "OUT", + "1664223000": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18360, + "intEnd": 21960, + "intUnixStart": 1664219400, + "intUnixEnd": 1664223000, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.05, + "TotalTimeInv": 8.93, + "Cost": 281.75, + "Roster": 21042, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2375, + "File": 16649, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 27, + "Created": "2022-09-26T08:04:50-06:00", + "Modified": "2022-09-26T17:11:25-06:00", + "OnCost": 281.75, + "StartTimeLocalized": "2022-09-26T08:04:00-06:00", + "EndTimeLocalized": "2022-09-26T17:07:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 27, + "DisplayName": "Elizabeth Rico", + "EmployeeProfile": 28, + "Employee": 28, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_09a0688488492c4dd40985c9a0d14b62.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=hO-O2oxJR3UP3g9lnWGLVcP4mKq8fK5qtyinwczi0NBgC-3NU9ALhD~P~USGiiFoowagGPfAmogOYAvAYqr9zDFNwx1qmfmk1rq0fg8aokWmhVcLDpRtMrsh~Lw~4HBz5FHMaAhq2gB0vhN2HHPHQq61eglpotwT8iUAmblmgbw_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 27, + "DisplayName": "Elizabeth Rico", + "EmployeeProfile": 28, + "Employee": 28, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_09a0688488492c4dd40985c9a0d14b62.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=hO-O2oxJR3UP3g9lnWGLVcP4mKq8fK5qtyinwczi0NBgC-3NU9ALhD~P~USGiiFoowagGPfAmogOYAvAYqr9zDFNwx1qmfmk1rq0fg8aokWmhVcLDpRtMrsh~Lw~4HBz5FHMaAhq2gB0vhN2HHPHQq61eglpotwT8iUAmblmgbw_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 28, + "Company": 6, + "FirstName": "Elizabeth", + "LastName": "Rico", + "DisplayName": "Elizabeth Rico", + "OtherName": null, + "Salutation": null, + "MainAddress": 174, + "PostalAddress": null, + "Contact": 272878, + "EmergencyAddress": 284, + "DateOfBirth": "1985-10-27T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 977, + "UserId": 27, + "JobAppId": null, + "Active": true, + "StartDate": "2010-06-03T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275975, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:18-07:00", + "Modified": "2022-07-06T10:54:42-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9223, + "Employee": 139, + "EmployeeHistory": 276118, + "EmployeeAgreement": 528, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664201040, + "EndTime": 1664237820, + "Mealbreak": "2022-09-26T01:01:00-06:00", + "MealbreakSlots": { + "1664216760": "OUT", + "1664220420": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15720, + "intEnd": 19380, + "intUnixStart": 1664216760, + "intUnixEnd": 1664220420, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.2, + "TotalTimeInv": 9.93, + "Cost": 0, + "Roster": 21355, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 47, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2376, + "File": 16671, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 139, + "Created": "2022-09-26T08:04:59-06:00", + "Modified": "2022-09-26T20:23:52-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-26T08:04:00-06:00", + "EndTimeLocalized": "2022-09-26T18:17:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 139, + "DisplayName": "Paola Barragan", + "EmployeeProfile": 139, + "Employee": 139, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7f1a5469c2369939f8eb74849e2d0c11.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EYQO83NQZO7dGa~faIpXzdeHA4v3sdVWpfo2PcQVUzvy2hl6CYB9k24fUslPe4H4rkc~WI4jtrPRPEudsSafynZIfOVRjh1taSz-hqL4bX3WYk~~ACwB6fLV1yyJvVHSlBl33~gufvtnrZN5QgERbn88VWGSpSM-h6E7C94gKys_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 47, + "OperationalUnitName": "Nadia Quintanilla PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Nadia Quintanilla PA-C" + }, + "EmployeeInfo": { + "Id": 139, + "DisplayName": "Paola Barragan", + "EmployeeProfile": 139, + "Employee": 139, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7f1a5469c2369939f8eb74849e2d0c11.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EYQO83NQZO7dGa~faIpXzdeHA4v3sdVWpfo2PcQVUzvy2hl6CYB9k24fUslPe4H4rkc~WI4jtrPRPEudsSafynZIfOVRjh1taSz-hqL4bX3WYk~~ACwB6fLV1yyJvVHSlBl33~gufvtnrZN5QgERbn88VWGSpSM-h6E7C94gKys_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 139, + "Company": 6, + "FirstName": "Paola", + "LastName": "Barragan", + "DisplayName": "Paola Barragan", + "OtherName": null, + "Salutation": null, + "MainAddress": 322, + "PostalAddress": null, + "Contact": 272953, + "EmergencyAddress": 284, + "DateOfBirth": "2000-07-19T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 14658, + "UserId": 139, + "JobAppId": null, + "Active": true, + "StartDate": null, + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276118, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-09-01T09:50:31-06:00", + "Modified": "2022-09-14T11:22:12-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9224, + "Employee": 67, + "EmployeeHistory": 275976, + "EmployeeAgreement": 70, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664201100, + "EndTime": 1664236980, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664219280": "OUT", + "1664222880": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18180, + "intEnd": 21780, + "intUnixStart": 1664219280, + "intUnixEnd": 1664222880, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.97, + "TotalTimeInv": 8.92, + "Cost": 152.49, + "Roster": 21152, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2377, + "File": 16664, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 67, + "Created": "2022-09-26T08:05:35-06:00", + "Modified": "2022-09-26T20:23:51-06:00", + "OnCost": 152.49, + "StartTimeLocalized": "2022-09-26T08:05:00-06:00", + "EndTimeLocalized": "2022-09-26T18:03:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 67, + "DisplayName": "Emma Porras", + "EmployeeProfile": 67, + "Employee": 67, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fb8eea4d196b457699d13f8727516a03.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=BtfXVKYh8mdrITmQa5DiAJpOSnrEExPBZHUUx1V8JJkSPeaa6U1DQirPPPDaY9fasNyeuGOZXztgPIRXANO7ZIjAVByasFMBDwaU~kXIRQ1SpiGYRH-70hCH6PFRuwLO~jsg-rv6iwiHtsG-3yneBv3o9-HkmJzkAgY97Y5k6Ow_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 67, + "DisplayName": "Emma Porras", + "EmployeeProfile": 67, + "Employee": 67, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fb8eea4d196b457699d13f8727516a03.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=BtfXVKYh8mdrITmQa5DiAJpOSnrEExPBZHUUx1V8JJkSPeaa6U1DQirPPPDaY9fasNyeuGOZXztgPIRXANO7ZIjAVByasFMBDwaU~kXIRQ1SpiGYRH-70hCH6PFRuwLO~jsg-rv6iwiHtsG-3yneBv3o9-HkmJzkAgY97Y5k6Ow_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 67, + "Company": 6, + "FirstName": "Emma", + "LastName": "Porras", + "DisplayName": "Emma Porras", + "OtherName": null, + "Salutation": null, + "MainAddress": 218, + "PostalAddress": null, + "Contact": 272907, + "EmergencyAddress": 264, + "DateOfBirth": "1981-10-11T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 958, + "UserId": 67, + "JobAppId": null, + "Active": true, + "StartDate": "2022-02-08T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275976, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-07-06T10:55:06-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9225, + "Employee": 51, + "EmployeeHistory": 276033, + "EmployeeAgreement": 198, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664201160, + "EndTime": 1664233620, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664219580": "OUT", + "1664223180": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18420, + "intEnd": 22020, + "intUnixStart": 1664219580, + "intUnixEnd": 1664223180, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.02, + "TotalTimeInv": 8.9, + "Cost": 124.31, + "Roster": 21116, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 65, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2378, + "File": 16648, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 51, + "Created": "2022-09-26T08:06:29-06:00", + "Modified": "2022-09-26T20:23:54-06:00", + "OnCost": 124.31, + "StartTimeLocalized": "2022-09-26T08:06:00-06:00", + "EndTimeLocalized": "2022-09-26T17:07:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 51, + "DisplayName": "Elizabeth Arreola", + "EmployeeProfile": 51, + "Employee": 51, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a0c25db5d291f2c1bf1b3a0453209155.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WuEMSi0aNK3ifgyhxac8KpYAlmlY-SKs1B3HezyATcLxjfrnf7jXvESIKjZJKJLv7ltTeQYcYIN4j7Tvgrg-Ru2eaP3WeEMsxo0FeHozg9ieBQ3fnAWjjVKh-y2S4Rc~HBrTZlgGd9G4X6nkx-zE6LBgtBfP6Nbt-Qxig-I5rY0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 65, + "OperationalUnitName": "Justine Franco NP", + "Company": 5, + "CompanyName": "Montana", + "LabelWithCompany": "[MON] Justine Franco NP" + }, + "EmployeeInfo": { + "Id": 51, + "DisplayName": "Elizabeth Arreola", + "EmployeeProfile": 51, + "Employee": 51, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a0c25db5d291f2c1bf1b3a0453209155.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WuEMSi0aNK3ifgyhxac8KpYAlmlY-SKs1B3HezyATcLxjfrnf7jXvESIKjZJKJLv7ltTeQYcYIN4j7Tvgrg-Ru2eaP3WeEMsxo0FeHozg9ieBQ3fnAWjjVKh-y2S4Rc~HBrTZlgGd9G4X6nkx-zE6LBgtBfP6Nbt-Qxig-I5rY0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 51, + "Company": 2, + "FirstName": "Elizabeth", + "LastName": "Arreola", + "DisplayName": "Elizabeth Arreola", + "OtherName": null, + "Salutation": null, + "MainAddress": 197, + "PostalAddress": null, + "Contact": 272897, + "EmergencyAddress": 284, + "DateOfBirth": "1985-08-06T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1858, + "UserId": 51, + "JobAppId": null, + "Active": true, + "StartDate": "2018-04-23T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276033, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:23-07:00", + "Modified": "2022-07-11T12:25:40-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9226, + "Employee": 73, + "EmployeeHistory": 276007, + "EmployeeAgreement": 76, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664201160, + "EndTime": 1664237520, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664222400": "OUT", + "1664226000": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 21240, + "intEnd": 24840, + "intUnixStart": 1664222400, + "intUnixEnd": 1664226000, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.1, + "TotalTimeInv": 8.9, + "Cost": 0, + "Roster": 21173, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 57, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2379, + "File": 16668, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 73, + "Created": "2022-09-26T08:06:30-06:00", + "Modified": "2022-09-26T20:23:54-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-26T08:06:00-06:00", + "EndTimeLocalized": "2022-09-26T18:12:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 73, + "DisplayName": "Tyler Roberts", + "EmployeeProfile": 73, + "Employee": 73, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8a97a499511e44a423c5d63c874dc913.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hfpyin5jkIDZs~nLmN907v9I70A8RJZKGvkJkgs-V0eGdDch0wYk~BWRQZ7KgIBkfBDp3PJxvbcSf3iTuN8FVIvlus3YwrBOBKY~GHtetPR90GTW-YUQjSJLtjsjMX7jvCkvxbtOLat5rhoK0GXNthMLgrPSGiIWtOV4UgaG0ck_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 57, + "OperationalUnitName": "Tyler Roberts PA-C", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Tyler Roberts PA-C" + }, + "EmployeeInfo": { + "Id": 73, + "DisplayName": "Tyler Roberts", + "EmployeeProfile": 73, + "Employee": 73, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8a97a499511e44a423c5d63c874dc913.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hfpyin5jkIDZs~nLmN907v9I70A8RJZKGvkJkgs-V0eGdDch0wYk~BWRQZ7KgIBkfBDp3PJxvbcSf3iTuN8FVIvlus3YwrBOBKY~GHtetPR90GTW-YUQjSJLtjsjMX7jvCkvxbtOLat5rhoK0GXNthMLgrPSGiIWtOV4UgaG0ck_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 73, + "Company": 4, + "FirstName": "Tyler", + "LastName": "Roberts", + "DisplayName": "Tyler Roberts", + "OtherName": null, + "Salutation": null, + "MainAddress": 229, + "PostalAddress": null, + "Contact": 272913, + "EmergencyAddress": 269, + "DateOfBirth": "1995-08-28T00:00:00-07:00", + "Gender": 1, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 974, + "UserId": 73, + "JobAppId": null, + "Active": true, + "StartDate": "2020-11-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276007, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-07-06T11:19:56-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9227, + "Employee": 102, + "EmployeeHistory": 275684, + "EmployeeAgreement": 414, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664201160, + "EndTime": 1664234100, + "Mealbreak": "2022-09-26T01:06:00-06:00", + "MealbreakSlots": { + "1664222160": "OUT", + "1664226120": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 21000, + "intEnd": 24960, + "intUnixStart": 1664222160, + "intUnixEnd": 1664226120, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.05, + "TotalTimeInv": 8.9, + "Cost": 0, + "Roster": 21257, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 65, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2380, + "File": 16653, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 102, + "Created": "2022-09-26T08:06:50-06:00", + "Modified": "2022-09-26T17:26:39-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-26T08:06:00-06:00", + "EndTimeLocalized": "2022-09-26T17:15:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 102, + "DisplayName": "Justine Franco", + "EmployeeProfile": 102, + "Employee": 102, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6ffd09c47f45d603be0685af846b9b3f.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gxi-qlNQ1rYSHrQy5yWfNmHd~6bk1JyeQRirQNbGjiaXx5a-g019V62flgh9hcLTu6D3~SVMYcZh69qlNrJxL5~BhsMhRBDcldyqVMYiniI3wizIMJJpls1NF~mCTp3ghtFS-GhyuM0tqGHnPSfKM7YMJMvRiifqN3Vx8Jg1CBs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 65, + "OperationalUnitName": "Justine Franco NP", + "Company": 5, + "CompanyName": "Montana", + "LabelWithCompany": "[MON] Justine Franco NP" + }, + "EmployeeInfo": { + "Id": 102, + "DisplayName": "Justine Franco", + "EmployeeProfile": 102, + "Employee": 102, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6ffd09c47f45d603be0685af846b9b3f.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gxi-qlNQ1rYSHrQy5yWfNmHd~6bk1JyeQRirQNbGjiaXx5a-g019V62flgh9hcLTu6D3~SVMYcZh69qlNrJxL5~BhsMhRBDcldyqVMYiniI3wizIMJJpls1NF~mCTp3ghtFS-GhyuM0tqGHnPSfKM7YMJMvRiifqN3Vx8Jg1CBs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 102, + "Company": 3, + "FirstName": "Justine", + "LastName": "Franco", + "DisplayName": "Justine Franco", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272655, + "EmergencyAddress": 284, + "DateOfBirth": "1992-02-04T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 8793, + "UserId": 102, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-11T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275684, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-11T12:54:41-06:00", + "Modified": "2022-06-30T22:42:25-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9228, + "Employee": 61, + "EmployeeHistory": 275972, + "EmployeeAgreement": 242, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664201280, + "EndTime": 1664223780, + "Mealbreak": "2022-09-26T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -480, + "intEnd": -480, + "intUnixStart": 1664200800, + "intUnixEnd": 1664200800, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 6.25, + "TotalTimeInv": 5.87, + "Cost": 162.5, + "Roster": 21133, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 32, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2381, + "File": 16631, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 61, + "Created": "2022-09-26T08:08:31-06:00", + "Modified": "2022-09-26T20:23:52-06:00", + "OnCost": 162.5, + "StartTimeLocalized": "2022-09-26T08:08:00-06:00", + "EndTimeLocalized": "2022-09-26T14:23:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 61, + "DisplayName": "Desirae Martin", + "EmployeeProfile": 61, + "Employee": 61, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f9c57d8a4b409ad8dbe9ebff056c28bc.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WUGv4hHKNH8mp5JmDb0rleqiLSSs5kXrcYvtgumjjFG7wjHIVJeGItP5JEmhN5uFGELFowx9f--z2sRrlRRMj0k3quFrhuH7SuuWn8-l8Zl02OQyPXVDieJTKej-P7CtKUBcm-uXgRdwG5AuMoSa7wVkw8MPUurpIBZx6FvJMtE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 32, + "OperationalUnitName": "Sono", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Sono" + }, + "EmployeeInfo": { + "Id": 61, + "DisplayName": "Desirae Martin", + "EmployeeProfile": 61, + "Employee": 61, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f9c57d8a4b409ad8dbe9ebff056c28bc.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WUGv4hHKNH8mp5JmDb0rleqiLSSs5kXrcYvtgumjjFG7wjHIVJeGItP5JEmhN5uFGELFowx9f--z2sRrlRRMj0k3quFrhuH7SuuWn8-l8Zl02OQyPXVDieJTKej-P7CtKUBcm-uXgRdwG5AuMoSa7wVkw8MPUurpIBZx6FvJMtE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 61, + "Company": 5, + "FirstName": "Desirae", + "LastName": "Martin", + "DisplayName": "Desirae Martin", + "OtherName": null, + "Salutation": null, + "MainAddress": 208, + "PostalAddress": null, + "Contact": 272902, + "EmergencyAddress": 260, + "DateOfBirth": "1984-07-05T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 937, + "UserId": 61, + "JobAppId": null, + "Active": true, + "StartDate": "2019-05-28T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275972, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:25-07:00", + "Modified": "2022-07-06T10:53:31-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9229, + "Employee": 54, + "EmployeeHistory": 275301, + "EmployeeAgreement": 56, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664201280, + "EndTime": 1664239920, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664218860": "OUT", + "1664222460": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17580, + "intEnd": 21180, + "intUnixStart": 1664218860, + "intUnixEnd": 1664222460, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.73, + "TotalTimeInv": 9.87, + "Cost": 223.79, + "Roster": 21119, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2382, + "File": 16673, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 54, + "Created": "2022-09-26T08:08:58-06:00", + "Modified": "2022-09-26T20:22:22-06:00", + "OnCost": 223.79, + "StartTimeLocalized": "2022-09-26T08:08:00-06:00", + "EndTimeLocalized": "2022-09-26T18:52:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 54, + "DisplayName": "Lyanne Lesso", + "EmployeeProfile": 54, + "Employee": 54, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_39d0ccc171382460cd77f920151d420e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=d2-i~NWb1NBolskITRaERgrqxhBRTTLMKG~L5PuWDNvEdZkztBwzqCacLE-avQkHxGTEINKClOQ6-z2wlDttPsWSQDf3wpo5uzOgyobynJvGZ~pA7hBuQpe2R-QFwcMB2oitqxJXiUuHPD3VcnTKFQvCtQsAJw8OLvqVwjo0Xuo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 54, + "DisplayName": "Lyanne Lesso", + "EmployeeProfile": 54, + "Employee": 54, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_39d0ccc171382460cd77f920151d420e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=d2-i~NWb1NBolskITRaERgrqxhBRTTLMKG~L5PuWDNvEdZkztBwzqCacLE-avQkHxGTEINKClOQ6-z2wlDttPsWSQDf3wpo5uzOgyobynJvGZ~pA7hBuQpe2R-QFwcMB2oitqxJXiUuHPD3VcnTKFQvCtQsAJw8OLvqVwjo0Xuo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 54, + "Company": 6, + "FirstName": "Lyanne", + "LastName": "Lesso", + "DisplayName": "Lyanne Lesso", + "OtherName": null, + "Salutation": null, + "MainAddress": 200, + "PostalAddress": null, + "Contact": 155243, + "EmergencyAddress": 284, + "DateOfBirth": "1991-04-01T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1048, + "UserId": 54, + "JobAppId": null, + "Active": true, + "StartDate": "2020-09-21T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275301, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:23-07:00", + "Modified": "2022-06-20T18:04:57-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9230, + "Employee": 92, + "EmployeeHistory": 276074, + "EmployeeAgreement": 466, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664201340, + "EndTime": 1664234280, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664218860": "OUT", + "1664222460": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17520, + "intEnd": 21120, + "intUnixStart": 1664218860, + "intUnixEnd": 1664222460, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.15, + "TotalTimeInv": 8.85, + "Cost": 114.1, + "Roster": 21426, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2383, + "File": 16654, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 92, + "Created": "2022-09-26T08:09:43-06:00", + "Modified": "2022-09-26T20:23:52-06:00", + "OnCost": 114.1, + "StartTimeLocalized": "2022-09-26T08:09:00-06:00", + "EndTimeLocalized": "2022-09-26T17:18:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 92, + "DisplayName": "Lesley Ortiz", + "EmployeeProfile": 92, + "Employee": 92, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_da29dc55d7af984cbe88a019ba67854d.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=g1ZmEDsVkl8Va7V4QdQd31ynirzIw1zFFq~af8Pe2r73XbEHZjiVzAgstNXsKipX1TsdUtcDBg7KOU3oQ3paIf3dSIiQubl3Wlu3Knjz8hwXJleEQBXRalHowdCBiC5v-hUliKCFHKPfwpbGJCFbmCrQAsRviJVl-GPVZnoMulU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 92, + "DisplayName": "Lesley Ortiz", + "EmployeeProfile": 92, + "Employee": 92, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_da29dc55d7af984cbe88a019ba67854d.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=g1ZmEDsVkl8Va7V4QdQd31ynirzIw1zFFq~af8Pe2r73XbEHZjiVzAgstNXsKipX1TsdUtcDBg7KOU3oQ3paIf3dSIiQubl3Wlu3Knjz8hwXJleEQBXRalHowdCBiC5v-hUliKCFHKPfwpbGJCFbmCrQAsRviJVl-GPVZnoMulU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 92, + "Company": 5, + "FirstName": "Lesley", + "LastName": "Ortiz", + "DisplayName": "Lesley Ortiz", + "OtherName": null, + "Salutation": null, + "MainAddress": 291, + "PostalAddress": null, + "Contact": 75336, + "EmergencyAddress": 284, + "DateOfBirth": "1996-11-09T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1225, + "UserId": 92, + "JobAppId": null, + "Active": true, + "StartDate": "2022-02-21T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276074, + "CustomFieldData": null, + "Creator": 29, + "Created": "2022-03-30T15:25:13-07:00", + "Modified": "2022-08-17T12:47:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 29, + "DisplayName": "Aracely Tirrell", + "EmployeeProfile": 30, + "Employee": 30, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0d6425f581e9558209dd05be4e252239.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L9-lhv8DadL3tonHbygPqGiLf7bJAmakD7hzTwKXLJc3~GIZU6n16NldpwO6IqaxrQ61jRs9SH2sv0q1xRVN2sf7pv8rvyPxVEgPib~cuBzneMQ4FI5NBhKOIbx0ggCpukXtdUwwLgmjIGcOcdIqmZ8qCNbnre9QR63AEXdvgJU_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9231, + "Employee": 22, + "EmployeeHistory": 276010, + "EmployeeAgreement": 24, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664201340, + "EndTime": 1664229960, + "Mealbreak": "2022-09-26T00:31:00-06:00", + "MealbreakSlots": { + "1664217240": "OUT", + "1664219100": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15900, + "intEnd": 17760, + "intUnixStart": 1664217240, + "intUnixEnd": 1664219100, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.43, + "TotalTimeInv": 6.85, + "Cost": 111.45, + "Roster": 21039, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2384, + "File": 16637, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 22, + "Created": "2022-09-26T08:09:54-06:00", + "Modified": "2022-09-26T20:23:54-06:00", + "OnCost": 111.45, + "StartTimeLocalized": "2022-09-26T08:09:00-06:00", + "EndTimeLocalized": "2022-09-26T16:06:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 22, + "DisplayName": "Viridiana Gomez", + "EmployeeProfile": 22, + "Employee": 22, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e925be21f3ce5526e949aee744bc391c.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=W1OCaCQwLucZAS20QlTYfrC0HbdIHBl5o1rfJrq9MugxcwYzZdK8Hkm-sJM19iEFTokz5Xx9c8oI7xnkbAi3snyFD9YRXB8Wbk-lS3o0ZSPwFAELbaW1YiOTYcIKcMR5rr9siVA4aj9ZB4GT2b2Pjmx0nh0aF-epsOMvdeH~KzA_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 22, + "DisplayName": "Viridiana Gomez", + "EmployeeProfile": 22, + "Employee": 22, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e925be21f3ce5526e949aee744bc391c.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=W1OCaCQwLucZAS20QlTYfrC0HbdIHBl5o1rfJrq9MugxcwYzZdK8Hkm-sJM19iEFTokz5Xx9c8oI7xnkbAi3snyFD9YRXB8Wbk-lS3o0ZSPwFAELbaW1YiOTYcIKcMR5rr9siVA4aj9ZB4GT2b2Pjmx0nh0aF-epsOMvdeH~KzA_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 22, + "Company": 6, + "FirstName": "Viridiana", + "LastName": "Gomez", + "DisplayName": "Viridiana Gomez", + "OtherName": null, + "Salutation": null, + "MainAddress": 166, + "PostalAddress": null, + "Contact": 272874, + "EmergencyAddress": null, + "DateOfBirth": "1983-09-15T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1003, + "UserId": 22, + "JobAppId": null, + "Active": true, + "StartDate": "2005-07-11T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276010, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:17-07:00", + "Modified": "2022-07-06T11:20:52-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9232, + "Employee": 59, + "EmployeeHistory": 276087, + "EmployeeAgreement": 62, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664201400, + "EndTime": 1664222760, + "Mealbreak": "2022-09-26T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -600, + "intEnd": -600, + "intUnixStart": 1664200800, + "intUnixEnd": 1664200800, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.93, + "TotalTimeInv": 5.83, + "Cost": 169.005, + "Roster": 21121, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 26, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2385, + "File": 16630, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 59, + "Created": "2022-09-26T08:10:58-06:00", + "Modified": "2022-09-26T14:26:28-06:00", + "OnCost": 169.005, + "StartTimeLocalized": "2022-09-26T08:10:00-06:00", + "EndTimeLocalized": "2022-09-26T14:06:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 59, + "DisplayName": "Esperanza Robledo", + "EmployeeProfile": 59, + "Employee": 59, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f1facd44e26dc49f636aa66f029dfb72.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=FSELOBnr~C4YwY2XfOEcL9S47MKYZ5lagrdAzrN3~MqkzKt7RiPVy5kvugg8IDnQL7UibHuhyDbIJHGBTxgKh3Qvj5pQXJyCjVNB1dIbygmlxbSqvhE6HnjjQ498KGnOi9JmbSi86mcDCf2m~pR8TYVRRtVv7L2MVw0RjkcUjO8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 26, + "OperationalUnitName": "Sono", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Sono" + }, + "EmployeeInfo": { + "Id": 59, + "DisplayName": "Esperanza Robledo", + "EmployeeProfile": 59, + "Employee": 59, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f1facd44e26dc49f636aa66f029dfb72.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=FSELOBnr~C4YwY2XfOEcL9S47MKYZ5lagrdAzrN3~MqkzKt7RiPVy5kvugg8IDnQL7UibHuhyDbIJHGBTxgKh3Qvj5pQXJyCjVNB1dIbygmlxbSqvhE6HnjjQ498KGnOi9JmbSi86mcDCf2m~pR8TYVRRtVv7L2MVw0RjkcUjO8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 59, + "Company": 2, + "FirstName": "Esperanza", + "LastName": "Robledo", + "DisplayName": "Esperanza Robledo", + "OtherName": null, + "Salutation": null, + "MainAddress": 206, + "PostalAddress": null, + "Contact": 272945, + "EmergencyAddress": null, + "DateOfBirth": "1987-08-02T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 938, + "UserId": 59, + "JobAppId": null, + "Active": true, + "StartDate": "2019-03-06T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276087, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:25-07:00", + "Modified": "2022-08-19T18:56:16-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9233, + "Employee": 64, + "EmployeeHistory": 276049, + "EmployeeAgreement": 67, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664201640, + "EndTime": 1664237340, + "Mealbreak": "2022-09-26T01:01:00-06:00", + "MealbreakSlots": { + "1664219220": "OUT", + "1664222880": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17580, + "intEnd": 21240, + "intUnixStart": 1664219220, + "intUnixEnd": 1664222880, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.9, + "TotalTimeInv": 9.77, + "Cost": 142.4, + "Roster": 21140, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 47, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2386, + "File": 16666, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 64, + "Created": "2022-09-26T08:14:58-06:00", + "Modified": "2022-09-26T20:23:54-06:00", + "OnCost": 142.4, + "StartTimeLocalized": "2022-09-26T08:14:00-06:00", + "EndTimeLocalized": "2022-09-26T18:09:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 64, + "DisplayName": "Alicia Rangel", + "EmployeeProfile": 64, + "Employee": 64, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3d92b57090833b853d28e284d6852c46.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NS0aA5gxD8rkeZ4naiyd0-VpLevPqaOgwIkOFY9nEThlILFXLKn~tTeFTyggcJZgLaoaJqvHWtEqiLTmMZhGAC8ygNNgUtSbXw9OpSyFNqZ5vurpNtWwnW8OoMeQSDkt8l1rVl7xP8BJ2n~-q6CuqeC-bj899wsx3N-MFwLlIyQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 47, + "OperationalUnitName": "Nadia Quintanilla PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Nadia Quintanilla PA-C" + }, + "EmployeeInfo": { + "Id": 64, + "DisplayName": "Alicia Rangel", + "EmployeeProfile": 64, + "Employee": 64, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3d92b57090833b853d28e284d6852c46.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NS0aA5gxD8rkeZ4naiyd0-VpLevPqaOgwIkOFY9nEThlILFXLKn~tTeFTyggcJZgLaoaJqvHWtEqiLTmMZhGAC8ygNNgUtSbXw9OpSyFNqZ5vurpNtWwnW8OoMeQSDkt8l1rVl7xP8BJ2n~-q6CuqeC-bj899wsx3N-MFwLlIyQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 64, + "Company": 2, + "FirstName": "Alicia", + "LastName": "Rangel", + "DisplayName": "Alicia Rangel", + "OtherName": null, + "Salutation": null, + "MainAddress": 212, + "PostalAddress": null, + "Contact": 272904, + "EmergencyAddress": 261, + "DateOfBirth": "1993-07-27T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1331, + "UserId": 64, + "JobAppId": null, + "Active": true, + "StartDate": "2019-09-27T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276049, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:26-07:00", + "Modified": "2022-07-19T17:37:10-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9234, + "Employee": 50, + "EmployeeHistory": 275971, + "EmployeeAgreement": 52, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664202060, + "EndTime": 1664233740, + "Mealbreak": "2022-09-26T01:07:00-06:00", + "MealbreakSlots": { + "1664217360": "OUT", + "1664221380": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15300, + "intEnd": 19320, + "intUnixStart": 1664217360, + "intUnixEnd": 1664221380, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.68, + "TotalTimeInv": 7.65, + "Cost": 111.36, + "Roster": 21115, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2387, + "File": 16650, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 50, + "Created": "2022-09-26T08:21:08-06:00", + "Modified": "2022-09-26T20:23:54-06:00", + "OnCost": 111.36, + "StartTimeLocalized": "2022-09-26T08:21:00-06:00", + "EndTimeLocalized": "2022-09-26T17:09:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 50, + "DisplayName": "Denise Renteria", + "EmployeeProfile": 50, + "Employee": 50, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7f8f9f6564688dcd70f48e7a4d52acfd.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gShOlNo2PM5xOUXuejZ1gHH9txIU5SEbDlsbr3axId6RzVLc8jMhGeoPo-W0vhCFsMgk~q5MtEYQYGsizGPy3vImCdfITpdG8fuaTahG51G78Jx0EbuWZq~GOdtHL~8M7kbl~c0TKP7FPrhj4LY2Nm27cPpk~XC91o7WzUM-O6M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 50, + "DisplayName": "Denise Renteria", + "EmployeeProfile": 50, + "Employee": 50, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7f8f9f6564688dcd70f48e7a4d52acfd.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gShOlNo2PM5xOUXuejZ1gHH9txIU5SEbDlsbr3axId6RzVLc8jMhGeoPo-W0vhCFsMgk~q5MtEYQYGsizGPy3vImCdfITpdG8fuaTahG51G78Jx0EbuWZq~GOdtHL~8M7kbl~c0TKP7FPrhj4LY2Nm27cPpk~XC91o7WzUM-O6M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 50, + "Company": 6, + "FirstName": "Denise", + "LastName": "Renteria", + "DisplayName": "Denise Renteria", + "OtherName": null, + "Salutation": null, + "MainAddress": 195, + "PostalAddress": null, + "Contact": 272896, + "EmergencyAddress": 259, + "DateOfBirth": "1992-12-08T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 967, + "UserId": 50, + "JobAppId": null, + "Active": true, + "StartDate": "2022-01-14T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275971, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:23-07:00", + "Modified": "2022-07-06T10:53:11-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9235, + "Employee": 36, + "EmployeeHistory": 275969, + "EmployeeAgreement": 38, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664202180, + "EndTime": 1664224260, + "Mealbreak": "2022-09-26T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -480, + "intEnd": 1320, + "intUnixStart": 1664201700, + "intUnixEnd": 1664203500, + "mixedActivity": { + "intState": 0, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Not Start" + }], + "TotalTime": 6.13, + "TotalTimeInv": 7.62, + "Cost": 91.95, + "Roster": 21081, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2388, + "File": 16633, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 36, + "Created": "2022-09-26T08:23:14-06:00", + "Modified": "2022-09-26T20:23:55-06:00", + "OnCost": 91.95, + "StartTimeLocalized": "2022-09-26T08:23:00-06:00", + "EndTimeLocalized": "2022-09-26T14:31:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 36, + "DisplayName": "Daisy Alcala", + "EmployeeProfile": 36, + "Employee": 36, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_d697cda0a688532ffbcdb39044b0097c.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gzHOysNM3eoVLNpRxr63O0oPN91DjpY2lgGVNnByteILN8hO6-nnK4nfrhhxLQI1AX0IhFQ~AC64Jvir39HE6Kyfk9dt2p0Eqn2UPtDNrPs9y3RyEv0ahNMcE4HiPhpIHd4VoJ2gBMcCVZzdZgsaYSSTPxjvzkK5hX4ZC7PEdYE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 36, + "DisplayName": "Daisy Alcala", + "EmployeeProfile": 36, + "Employee": 36, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_d697cda0a688532ffbcdb39044b0097c.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gzHOysNM3eoVLNpRxr63O0oPN91DjpY2lgGVNnByteILN8hO6-nnK4nfrhhxLQI1AX0IhFQ~AC64Jvir39HE6Kyfk9dt2p0Eqn2UPtDNrPs9y3RyEv0ahNMcE4HiPhpIHd4VoJ2gBMcCVZzdZgsaYSSTPxjvzkK5hX4ZC7PEdYE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 36, + "Company": 6, + "FirstName": "Daisy", + "LastName": "Alcala", + "DisplayName": "Daisy Alcala", + "OtherName": null, + "Salutation": null, + "MainAddress": 182, + "PostalAddress": null, + "Contact": 272884, + "EmergencyAddress": 284, + "DateOfBirth": "1995-09-10T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 949, + "UserId": 36, + "JobAppId": null, + "Active": true, + "StartDate": "2015-03-02T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275969, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:20-07:00", + "Modified": "2022-07-06T10:48:08-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9236, + "Employee": 135, + "EmployeeHistory": 276099, + "EmployeeAgreement": 512, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664202960, + "EndTime": 1664235420, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664223240": "OUT", + "1664226840": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 20280, + "intEnd": 23880, + "intUnixStart": 1664223240, + "intUnixEnd": 1664226840, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.02, + "TotalTimeInv": 9.25, + "Cost": 112.28, + "Roster": 21322, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 23, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2389, + "File": 16659, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 135, + "Created": "2022-09-26T08:36:17-06:00", + "Modified": "2022-09-26T20:23:54-06:00", + "OnCost": 112.28, + "StartTimeLocalized": "2022-09-26T08:36:00-06:00", + "EndTimeLocalized": "2022-09-26T17:37:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 135, + "DisplayName": "Marissa Soto-Valerio", + "EmployeeProfile": 135, + "Employee": 135, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_94560170a6a83cf1408a9e5e5068262e.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Cbw5hGMmYNTodn0SgrSSbDEWXJsJQ8NcV4R6esuf48aWPVFOyf9Ckjm48MZ~q9~FCgAmOOPbTWvcreai8GumOSy8CP~-KtO5WKL-fRoHvLU5HHFSu2gxxjAHsq4mm~iuvxpodjqd4Gn0Zs3LB3r2N~lY9kxuXcSNRkMZ3ySBIc8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 23, + "OperationalUnitName": "Dr. Pean", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Pean" + }, + "EmployeeInfo": { + "Id": 135, + "DisplayName": "Marissa Soto-Valerio", + "EmployeeProfile": 135, + "Employee": 135, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_94560170a6a83cf1408a9e5e5068262e.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Cbw5hGMmYNTodn0SgrSSbDEWXJsJQ8NcV4R6esuf48aWPVFOyf9Ckjm48MZ~q9~FCgAmOOPbTWvcreai8GumOSy8CP~-KtO5WKL-fRoHvLU5HHFSu2gxxjAHsq4mm~iuvxpodjqd4Gn0Zs3LB3r2N~lY9kxuXcSNRkMZ3ySBIc8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 135, + "Company": 3, + "FirstName": "Marissa", + "LastName": "Soto-Valerio", + "DisplayName": "Marissa Soto-Valerio", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272938, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 10369, + "UserId": 135, + "JobAppId": null, + "Active": true, + "StartDate": "2022-07-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276099, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-07-19T09:22:30-06:00", + "Modified": "2022-08-31T19:39:45-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9237, + "Employee": 74, + "EmployeeHistory": 275980, + "EmployeeAgreement": 141, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664203080, + "EndTime": 1664240340, + "Mealbreak": "2022-09-26T00:56:00-06:00", + "MealbreakSlots": { + "1664222640": "OUT", + "1664226000": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 19560, + "intEnd": 22920, + "intUnixStart": 1664222640, + "intUnixEnd": 1664226000, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.42, + "TotalTimeInv": 10.25, + "Cost": 131.88, + "Roster": 21255, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 59, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2390, + "File": 16676, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 74, + "Created": "2022-09-26T08:38:11-06:00", + "Modified": "2022-09-26T20:23:54-06:00", + "OnCost": 131.88, + "StartTimeLocalized": "2022-09-26T08:38:00-06:00", + "EndTimeLocalized": "2022-09-26T18:59:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 74, + "DisplayName": "Gabriel Cuevas", + "EmployeeProfile": 74, + "Employee": 74, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_484f0cb4a4ee813fd8e8cb72473256db.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gpL2IPsSlGgn7~rak~dVlyUrJRO4CJo4piyS13ubJ9a9mlyFEzJubll2hZhAJLg7KOFM90PYoo~Nt4~-nid52m~cG~DK57J5b~8AqXh~726vvbTZ4Kl-CTOyK-n9AJbN2AGJBwSuZIfwlY~-0TRDoXlUhxDKpjg0K6mGFkKiR0g_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 59, + "OperationalUnitName": "Clark Page PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Clark Page PA-C" + }, + "EmployeeInfo": { + "Id": 74, + "DisplayName": "Gabriel Cuevas", + "EmployeeProfile": 74, + "Employee": 74, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_484f0cb4a4ee813fd8e8cb72473256db.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gpL2IPsSlGgn7~rak~dVlyUrJRO4CJo4piyS13ubJ9a9mlyFEzJubll2hZhAJLg7KOFM90PYoo~Nt4~-nid52m~cG~DK57J5b~8AqXh~726vvbTZ4Kl-CTOyK-n9AJbN2AGJBwSuZIfwlY~-0TRDoXlUhxDKpjg0K6mGFkKiR0g_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 74, + "Company": 4, + "FirstName": "Gabriel", + "LastName": "Cuevas", + "DisplayName": "Gabriel Cuevas", + "OtherName": null, + "Salutation": null, + "MainAddress": 231, + "PostalAddress": null, + "Contact": 272914, + "EmergencyAddress": 270, + "DateOfBirth": "2001-08-14T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1039, + "UserId": 74, + "JobAppId": null, + "Active": true, + "StartDate": "2021-05-04T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275980, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-07-06T10:56:48-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9238, + "Employee": 93, + "EmployeeHistory": 130466, + "EmployeeAgreement": 125, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664203440, + "EndTime": 1664233500, + "Mealbreak": "2022-09-26T00:59:00-06:00", + "MealbreakSlots": { + "1664222400": "OUT", + "1664225940": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18960, + "intEnd": 22500, + "intUnixStart": 1664222400, + "intUnixEnd": 1664225940, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.37, + "TotalTimeInv": 8.25, + "Cost": 103.18, + "Roster": 21461, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 34, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2391, + "File": 16646, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 93, + "Created": "2022-09-26T08:44:29-06:00", + "Modified": "2022-09-26T20:23:51-06:00", + "OnCost": 103.18, + "StartTimeLocalized": "2022-09-26T08:44:00-06:00", + "EndTimeLocalized": "2022-09-26T17:05:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 93, + "DisplayName": "Misty Perez", + "EmployeeProfile": 93, + "Employee": 93, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_053d5fbe49865a3562ae72163fc94574.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UtJYG4Q1srblmypp8UCcyZyU4SeRM49hl7Qhq95mXwCWCLKWmMEMgoaz4G~3pmUl9U3BapJDV96wXgCG~oY71eVq29AoBB0voF0PrSAcvyGitXEvgUHyyvifHwnOKOTTarR-sWjCht5VmBnEzIjVjeVDz3TotmKabWJK3oIDi~M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 93, + "DisplayName": "Misty Perez", + "EmployeeProfile": 93, + "Employee": 93, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_053d5fbe49865a3562ae72163fc94574.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UtJYG4Q1srblmypp8UCcyZyU4SeRM49hl7Qhq95mXwCWCLKWmMEMgoaz4G~3pmUl9U3BapJDV96wXgCG~oY71eVq29AoBB0voF0PrSAcvyGitXEvgUHyyvifHwnOKOTTarR-sWjCht5VmBnEzIjVjeVDz3TotmKabWJK3oIDi~M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 93, + "Company": 3, + "FirstName": "Misty", + "LastName": "Perez", + "DisplayName": "Misty Perez", + "OtherName": null, + "Salutation": null, + "MainAddress": 292, + "PostalAddress": null, + "Contact": 57473, + "EmergencyAddress": 284, + "DateOfBirth": "1992-11-08T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1093, + "UserId": 93, + "JobAppId": null, + "Active": true, + "StartDate": "2015-03-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 130466, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-30T15:36:46-07:00", + "Modified": "2022-04-28T11:14:31-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9239, + "Employee": 78, + "EmployeeHistory": 130449, + "EmployeeAgreement": 300, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664203800, + "EndTime": 1664233560, + "Mealbreak": "2022-09-26T00:57:00-06:00", + "MealbreakSlots": { + "1664221860": "OUT", + "1664225280": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18060, + "intEnd": 21480, + "intUnixStart": 1664221860, + "intUnixEnd": 1664225280, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.32, + "TotalTimeInv": 8.17, + "Cost": 109.8, + "Roster": 21212, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 34, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2392, + "File": 16647, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 78, + "Created": "2022-09-26T08:50:44-06:00", + "Modified": "2022-09-26T20:23:53-06:00", + "OnCost": 109.8, + "StartTimeLocalized": "2022-09-26T08:50:00-06:00", + "EndTimeLocalized": "2022-09-26T17:06:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 78, + "DisplayName": "Hector Franco", + "EmployeeProfile": 78, + "Employee": 78, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0c697a35aaafa3a175cd0ef4c3463996.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NmHVh9Xoif4ePcexxj1rMJ0fcunV6eCn-UMLC4nMp7Wi5IoLveL-PJOEq8dg1n-7OpTl8efqKlJWwOC9N-L5NSteLrwNVer9QaRhW0xsI5xhyDXWYorFTrEjkAaHvYcbsppoYwt~SQFthgAzWr4mlNabDSuj~rGc9nYuDj0MLtQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 78, + "DisplayName": "Hector Franco", + "EmployeeProfile": 78, + "Employee": 78, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0c697a35aaafa3a175cd0ef4c3463996.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NmHVh9Xoif4ePcexxj1rMJ0fcunV6eCn-UMLC4nMp7Wi5IoLveL-PJOEq8dg1n-7OpTl8efqKlJWwOC9N-L5NSteLrwNVer9QaRhW0xsI5xhyDXWYorFTrEjkAaHvYcbsppoYwt~SQFthgAzWr4mlNabDSuj~rGc9nYuDj0MLtQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 78, + "Company": 2, + "FirstName": "Hector", + "LastName": "Franco", + "DisplayName": "Hector Franco", + "OtherName": null, + "Salutation": null, + "MainAddress": 275, + "PostalAddress": null, + "Contact": 16572, + "EmergencyAddress": 276, + "DateOfBirth": "1999-05-21T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 945, + "UserId": 78, + "JobAppId": null, + "Active": true, + "StartDate": "2021-10-11T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 130449, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:29-07:00", + "Modified": "2022-04-28T11:01:18-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9240, + "Employee": 63, + "EmployeeHistory": 275988, + "EmployeeAgreement": 65, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664203860, + "EndTime": 1664235480, + "Mealbreak": "2022-09-26T00:41:00-06:00", + "MealbreakSlots": { + "1664223900": "OUT", + "1664226360": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 20040, + "intEnd": 22500, + "intUnixStart": 1664223900, + "intUnixEnd": 1664226360, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.1, + "TotalTimeInv": 9, + "Cost": 0, + "Roster": 21134, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 23, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2393, + "File": 16660, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 62, + "Created": "2022-09-26T08:51:24-06:00", + "Modified": "2022-09-26T20:23:51-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-26T08:51:00-06:00", + "EndTimeLocalized": "2022-09-26T17:38:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 62, + "DisplayName": "Jules Pean", + "EmployeeProfile": 63, + "Employee": 63, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a73f41564e0cc3720ffd597c238e2bcf.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gJwioREdFKg3qimVBJDuk~Reid24G1TbeBfwHUEmeM20pREAcqdrl~80kH2xGiSZQ5mrqoI~Ufq4B6qDwX6wiQ6Mk1e-Y4xeI4XrQLZTlZ9muO6-3xWfJ~DRKirB~DyGfDi9AXqMM7BbuDmw3UBzm1eTA20VjvTpVEbm74PLEGk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 23, + "OperationalUnitName": "Dr. Pean", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Pean" + }, + "EmployeeInfo": { + "Id": 62, + "DisplayName": "Jules Pean", + "EmployeeProfile": 63, + "Employee": 63, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a73f41564e0cc3720ffd597c238e2bcf.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gJwioREdFKg3qimVBJDuk~Reid24G1TbeBfwHUEmeM20pREAcqdrl~80kH2xGiSZQ5mrqoI~Ufq4B6qDwX6wiQ6Mk1e-Y4xeI4XrQLZTlZ9muO6-3xWfJ~DRKirB~DyGfDi9AXqMM7BbuDmw3UBzm1eTA20VjvTpVEbm74PLEGk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 63, + "Company": 2, + "FirstName": "Jules", + "LastName": "Pean", + "DisplayName": "Jules Pean", + "OtherName": null, + "Salutation": null, + "MainAddress": 211, + "PostalAddress": null, + "Contact": 272903, + "EmergencyAddress": 284, + "DateOfBirth": "1952-03-08T00:00:00-08:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1190, + "UserId": 62, + "JobAppId": null, + "Active": true, + "StartDate": "2019-08-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275988, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:25-07:00", + "Modified": "2022-07-06T11:04:00-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9241, + "Employee": 71, + "EmployeeHistory": 275981, + "EmployeeAgreement": 74, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664203980, + "EndTime": 1664236800, + "Mealbreak": "2022-09-26T01:02:00-06:00", + "MealbreakSlots": { + "1664223900": "OUT", + "1664227620": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 19920, + "intEnd": 23640, + "intUnixStart": 1664223900, + "intUnixEnd": 1664227620, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.08, + "TotalTimeInv": 9.12, + "Cost": 113.12, + "Roster": 21174, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 23, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2394, + "File": 16661, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 71, + "Created": "2022-09-26T08:53:38-06:00", + "Modified": "2022-09-26T18:11:43-06:00", + "OnCost": 113.12, + "StartTimeLocalized": "2022-09-26T08:53:00-06:00", + "EndTimeLocalized": "2022-09-26T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 71, + "DisplayName": "Gabriela Grijalva", + "EmployeeProfile": 71, + "Employee": 71, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0b7f317a48756482cbfb25021a9465e0.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EbRpVEWQKjHj3Tpm-bNR8Xgq4M6NLwWPwBXQrbD~QwR8z6W8gw9qjdNkZdpV-TOyy20l082el2Z19foIRbkT~DDWf4niWcf022XpnsKfG1oaQ~yYXhHoN4niTenNU9nXtv8Qkh~gFRhSewmh6fcCLSugti5Vk34UPDB7~Umjmwk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 23, + "OperationalUnitName": "Dr. Pean", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Pean" + }, + "EmployeeInfo": { + "Id": 71, + "DisplayName": "Gabriela Grijalva", + "EmployeeProfile": 71, + "Employee": 71, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0b7f317a48756482cbfb25021a9465e0.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EbRpVEWQKjHj3Tpm-bNR8Xgq4M6NLwWPwBXQrbD~QwR8z6W8gw9qjdNkZdpV-TOyy20l082el2Z19foIRbkT~DDWf4niWcf022XpnsKfG1oaQ~yYXhHoN4niTenNU9nXtv8Qkh~gFRhSewmh6fcCLSugti5Vk34UPDB7~Umjmwk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 71, + "Company": 2, + "FirstName": "Gabriela", + "LastName": "Grijalva", + "DisplayName": "Gabriela Grijalva", + "OtherName": null, + "Salutation": null, + "MainAddress": 225, + "PostalAddress": null, + "Contact": 272911, + "EmergencyAddress": 267, + "DateOfBirth": "2000-06-27T00:00:00-06:00", + "Gender": 2, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 944, + "UserId": 71, + "JobAppId": null, + "Active": true, + "StartDate": "2020-09-24T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275981, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-07-06T10:57:07-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9242, + "Employee": 98, + "EmployeeHistory": 245298, + "EmployeeAgreement": 167, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204100, + "EndTime": 1664243280, + "Mealbreak": "2022-09-26T00:56:00-06:00", + "MealbreakSlots": { + "1664222700": "OUT", + "1664226060": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18600, + "intEnd": 21960, + "intUnixStart": 1664222700, + "intUnixEnd": 1664226060, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.95, + "TotalTimeInv": 10.08, + "Cost": 139.3, + "Roster": 21232, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 59, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2395, + "File": 16681, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 98, + "Created": "2022-09-26T08:55:51-06:00", + "Modified": "2022-09-26T20:23:52-06:00", + "OnCost": 139.3, + "StartTimeLocalized": "2022-09-26T08:55:00-06:00", + "EndTimeLocalized": "2022-09-26T19:48:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 98, + "DisplayName": "Esther Lujan", + "EmployeeProfile": 98, + "Employee": 98, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a11cbc0dc41039db298bfa15665ea864.jpg?Expires=1664546435&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=b8xj83hOY3IQIuUH91upA8u9kApr1JOYkDbh4AT~7hvfo5uLJCKo~aF8haP2TJLIdZLTslXnBYIkZNIyWlpSb5w4sBvZ-x0EzgyMo8Ri5uXqFLE0TK9CEnXMzg-de4uIftU2fFsdGCwZuivk1RPLNL4~3k2g4bN-PNoc~gJpi~4_", + "Pronouns": 2, + "CustomPronouns": null + }, + "OperationalUnitInfo": { + "Id": 59, + "OperationalUnitName": "Clark Page PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Clark Page PA-C" + }, + "EmployeeInfo": { + "Id": 98, + "DisplayName": "Esther Lujan", + "EmployeeProfile": 98, + "Employee": 98, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a11cbc0dc41039db298bfa15665ea864.jpg?Expires=1664546435&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=b8xj83hOY3IQIuUH91upA8u9kApr1JOYkDbh4AT~7hvfo5uLJCKo~aF8haP2TJLIdZLTslXnBYIkZNIyWlpSb5w4sBvZ-x0EzgyMo8Ri5uXqFLE0TK9CEnXMzg-de4uIftU2fFsdGCwZuivk1RPLNL4~3k2g4bN-PNoc~gJpi~4_", + "Pronouns": 2, + "CustomPronouns": null + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 98, + "Company": 5, + "FirstName": "Esther", + "LastName": "Lujan", + "DisplayName": "Esther Lujan", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 242283, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": 2, + "Pronouns": 2, + "CustomPronouns": null, + "Photo": 1068, + "UserId": 98, + "JobAppId": null, + "Active": true, + "StartDate": "2022-03-31T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 245298, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-31T16:25:29-07:00", + "Modified": "2022-06-10T22:00:18-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9243, + "Employee": 65, + "EmployeeHistory": 275964, + "EmployeeAgreement": 68, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204160, + "EndTime": 1664237040, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664223660": "OUT", + "1664227260": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 19500, + "intEnd": 23100, + "intUnixStart": 1664223660, + "intUnixEnd": 1664227260, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.13, + "TotalTimeInv": 9, + "Cost": 146.34, + "Roster": 21145, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 26, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2396, + "File": 16665, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 65, + "Created": "2022-09-26T08:56:07-06:00", + "Modified": "2022-09-26T18:11:43-06:00", + "OnCost": 146.34, + "StartTimeLocalized": "2022-09-26T08:56:00-06:00", + "EndTimeLocalized": "2022-09-26T18:04:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 65, + "DisplayName": "Amador Belmontes Martinez", + "EmployeeProfile": 65, + "Employee": 65, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0fb803e0ecc50c61a88686d810cc303f.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=N3kRmlvr-4naE225X0nBvETl36Oj77urHExq~GJh5gVzYKPtr8aqNAOE8o-8MN7doCZC-bdOnJ4LoXXFX-2y60eX1iHAA~10fMebzwyod-Vs-Us-ush5HV~trwicZGaSrfGv1M~5k4sH-6VCD1kClLkWI0sKL4yrj-YzoQo7lqc_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 26, + "OperationalUnitName": "Sono", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Sono" + }, + "EmployeeInfo": { + "Id": 65, + "DisplayName": "Amador Belmontes Martinez", + "EmployeeProfile": 65, + "Employee": 65, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0fb803e0ecc50c61a88686d810cc303f.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=N3kRmlvr-4naE225X0nBvETl36Oj77urHExq~GJh5gVzYKPtr8aqNAOE8o-8MN7doCZC-bdOnJ4LoXXFX-2y60eX1iHAA~10fMebzwyod-Vs-Us-ush5HV~trwicZGaSrfGv1M~5k4sH-6VCD1kClLkWI0sKL4yrj-YzoQo7lqc_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 65, + "Company": 2, + "FirstName": "Amador", + "LastName": "Belmontes Martinez", + "DisplayName": "Amador Belmontes Martinez", + "OtherName": null, + "Salutation": null, + "MainAddress": 214, + "PostalAddress": null, + "Contact": 272905, + "EmergencyAddress": 262, + "DateOfBirth": "1969-02-08T00:00:00-08:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1130, + "UserId": 65, + "JobAppId": null, + "Active": true, + "StartDate": "2019-12-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275964, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:26-07:00", + "Modified": "2022-07-06T10:45:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9244, + "Employee": 5, + "EmployeeHistory": 275977, + "EmployeeAgreement": 103, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204160, + "EndTime": 1664240040, + "Mealbreak": "2022-09-26T01:05:00-06:00", + "MealbreakSlots": { + "1664219580": "OUT", + "1664223480": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15420, + "intEnd": 19320, + "intUnixStart": 1664219580, + "intUnixEnd": 1664223480, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.88, + "TotalTimeInv": 9, + "Cost": 230.88, + "Roster": 21027, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2397, + "File": 16675, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 5, + "Created": "2022-09-26T08:56:15-06:00", + "Modified": "2022-09-26T20:23:54-06:00", + "OnCost": 230.88, + "StartTimeLocalized": "2022-09-26T08:56:00-06:00", + "EndTimeLocalized": "2022-09-26T18:54:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 5, + "DisplayName": "Emmanuel Castro", + "EmployeeProfile": 5, + "Employee": 5, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_48144f3189a12d8355476d40246496c0.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gEIHVmvJDcfYhEQdlwI8R0KdH~kUMyY4nW~4G7e5fqM1m5Mu7l3lDAYt7By5N~x3wXvTJV2xUI7vojcDpycwDgaTLAHmoffK6a8~zm~6DU4wwSg5RZjbf2kTuXMzsDTe8QFpqZTYHd6XRyjNcPKK4j00mPpZoaKArO6BNVkokL8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 5, + "DisplayName": "Emmanuel Castro", + "EmployeeProfile": 5, + "Employee": 5, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_48144f3189a12d8355476d40246496c0.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gEIHVmvJDcfYhEQdlwI8R0KdH~kUMyY4nW~4G7e5fqM1m5Mu7l3lDAYt7By5N~x3wXvTJV2xUI7vojcDpycwDgaTLAHmoffK6a8~zm~6DU4wwSg5RZjbf2kTuXMzsDTe8QFpqZTYHd6XRyjNcPKK4j00mPpZoaKArO6BNVkokL8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 5, + "Company": 6, + "FirstName": "Francisco", + "LastName": "Castro", + "DisplayName": "Emmanuel Castro", + "OtherName": null, + "Salutation": null, + "MainAddress": 164, + "PostalAddress": null, + "Contact": 272871, + "EmergencyAddress": 284, + "DateOfBirth": "1974-05-20T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 993, + "UserId": 5, + "JobAppId": null, + "Active": true, + "StartDate": "2013-05-02T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275977, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-24T16:08:15-07:00", + "Modified": "2022-07-06T10:55:33-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9245, + "Employee": 117, + "EmployeeHistory": 276083, + "EmployeeAgreement": 442, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204160, + "EndTime": 1664236800, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664222460": "OUT", + "1664226060": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18300, + "intEnd": 21900, + "intUnixStart": 1664222460, + "intUnixEnd": 1664226060, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.07, + "TotalTimeInv": 9, + "Cost": 80.7, + "Roster": 21280, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2398, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 117, + "Created": "2022-09-26T08:56:26-06:00", + "Modified": "2022-09-26T20:23:52-06:00", + "OnCost": 80.7, + "StartTimeLocalized": "2022-09-26T08:56:00-06:00", + "EndTimeLocalized": "2022-09-26T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 117, + "DisplayName": "Ilya Davalos", + "EmployeeProfile": 117, + "Employee": 117, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=I+D&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 117, + "DisplayName": "Ilya Davalos", + "EmployeeProfile": 117, + "Employee": 117, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=I+D&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 117, + "Company": 7, + "FirstName": "Ilya", + "LastName": "Davalos", + "DisplayName": "Ilya Davalos", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 113093, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 117, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276141, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:17-06:00", + "Modified": "2022-09-27T08:46:16-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9246, + "Employee": 116, + "EmployeeHistory": 115972, + "EmployeeAgreement": 441, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204160, + "EndTime": 1664237580, + "Mealbreak": "2022-09-26T01:04:00-06:00", + "MealbreakSlots": { + "1664222580": "OUT", + "1664226420": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18420, + "intEnd": 22260, + "intUnixStart": 1664222580, + "intUnixEnd": 1664226420, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.22, + "TotalTimeInv": 9, + "Cost": 65.76, + "Roster": 21282, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2399, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 116, + "Created": "2022-09-26T08:56:48-06:00", + "Modified": "2022-09-26T20:23:53-06:00", + "OnCost": 65.76, + "StartTimeLocalized": "2022-09-26T08:56:00-06:00", + "EndTimeLocalized": "2022-09-26T18:13:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 116, + "DisplayName": "Brenda De Leon", + "EmployeeProfile": 116, + "Employee": 116, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=B+L&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 116, + "DisplayName": "Brenda De Leon", + "EmployeeProfile": 116, + "Employee": 116, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=B+L&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 116, + "Company": 7, + "FirstName": "Brenda", + "LastName": "De Leon", + "DisplayName": "Brenda De Leon", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 113094, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 116, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115972, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:17-06:00", + "Modified": "2022-04-25T18:05:12-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9247, + "Employee": 118, + "EmployeeHistory": 115913, + "EmployeeAgreement": 443, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204220, + "EndTime": 1664236620, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664222220": "OUT", + "1664225820": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664222220, + "intUnixEnd": 1664225820, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 64, + "Roster": 21304, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2400, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 118, + "Created": "2022-09-26T08:57:04-06:00", + "Modified": "2022-09-26T20:23:53-06:00", + "OnCost": 64, + "StartTimeLocalized": "2022-09-26T08:57:00-06:00", + "EndTimeLocalized": "2022-09-26T17:57:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 118, + "DisplayName": "Silvia Ledon", + "EmployeeProfile": 118, + "Employee": 118, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=S+L&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 118, + "DisplayName": "Silvia Ledon", + "EmployeeProfile": 118, + "Employee": 118, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=S+L&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 118, + "Company": 7, + "FirstName": "Silvia", + "LastName": "Ledon", + "DisplayName": "Silvia Ledon", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 113035, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 118, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115913, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:18-06:00", + "Modified": "2022-04-25T17:50:56-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9248, + "Employee": 142, + "EmployeeHistory": 276139, + "EmployeeAgreement": 542, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204280, + "EndTime": 1664233380, + "Mealbreak": "2022-09-26T01:12:00-06:00", + "MealbreakSlots": { + "1664221260": "OUT", + "1664225580": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 16980, + "intEnd": 21300, + "intUnixStart": 1664221260, + "intUnixEnd": 1664225580, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 6.88, + "TotalTimeInv": 8, + "Cost": 0, + "Roster": 21845, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 34, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2401, + "File": 16644, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 142, + "Created": "2022-09-26T08:58:56-06:00", + "Modified": "2022-09-26T17:11:25-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-26T08:58:00-06:00", + "EndTimeLocalized": "2022-09-26T17:03:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 142, + "DisplayName": "Vanessa Magallanes", + "EmployeeProfile": 142, + "Employee": 142, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fa565141b7f588a7bbe6bb8e34e45f2e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=BtW8mTyd40wfcVorqMsOWuhSDBOqnyjlBD4hmOgHCDhD8yYBjH5cfGN~0h-PgZhECRyXtWrgf3bbMAZsCU-Pms~DsOSeDhMbwf3kOf-ta2H6Lkk3yCDhu3kOYA94Yds-k932qLTDy~mbXnM65LI435m2tEZ~m9jFEdWrZzZQXtI_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 142, + "DisplayName": "Vanessa Magallanes", + "EmployeeProfile": 142, + "Employee": 142, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fa565141b7f588a7bbe6bb8e34e45f2e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=BtW8mTyd40wfcVorqMsOWuhSDBOqnyjlBD4hmOgHCDhD8yYBjH5cfGN~0h-PgZhECRyXtWrgf3bbMAZsCU-Pms~DsOSeDhMbwf3kOf-ta2H6Lkk3yCDhu3kOYA94Yds-k932qLTDy~mbXnM65LI435m2tEZ~m9jFEdWrZzZQXtI_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 142, + "Company": 3, + "FirstName": "Vanessa", + "LastName": "Magallanes", + "DisplayName": "Vanessa Magallanes", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272968, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 16284, + "UserId": 142, + "JobAppId": null, + "Active": true, + "StartDate": "2022-09-21T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276139, + "CustomFieldData": null, + "Creator": 2, + "Created": "2022-09-21T17:48:15-06:00", + "Modified": "2022-09-23T16:33:22-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9249, + "Employee": 2, + "EmployeeHistory": 61410, + "EmployeeAgreement": 102, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204340, + "EndTime": 1664241720, + "Mealbreak": "2022-09-26T01:07:00-06:00", + "MealbreakSlots": { + "1664219400": "OUT", + "1664223420": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15060, + "intEnd": 19080, + "intUnixStart": 1664219400, + "intUnixEnd": 1664223420, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.27, + "TotalTimeInv": 9, + "Cost": 231.75, + "Roster": 21026, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2402, + "File": 16678, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 2, + "Created": "2022-09-26T08:59:41-06:00", + "Modified": "2022-09-26T20:23:55-06:00", + "OnCost": 231.75, + "StartTimeLocalized": "2022-09-26T08:59:00-06:00", + "EndTimeLocalized": "2022-09-26T19:22:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 2, + "Company": 6, + "FirstName": "Daniel", + "LastName": "Renteria", + "DisplayName": "Daniel Renteria", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 13349, + "EmergencyAddress": 300, + "DateOfBirth": "1984-12-14T00:00:00-07:00", + "Gender": 1, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 970, + "UserId": 2, + "JobAppId": null, + "Active": true, + "StartDate": "2021-11-22T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 1, + "AllowAppraisal": true, + "HistoryId": 61410, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-24T16:08:14-07:00", + "Modified": "2022-04-15T13:25:50-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9250, + "Employee": 96, + "EmployeeHistory": 276048, + "EmployeeAgreement": 135, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204340, + "EndTime": 1664242500, + "Mealbreak": "2022-09-26T00:49:00-06:00", + "MealbreakSlots": { + "1664222700": "OUT", + "1664225640": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18360, + "intEnd": 21300, + "intUnixStart": 1664222700, + "intUnixEnd": 1664225640, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.78, + "TotalTimeInv": 10, + "Cost": 0, + "Roster": 21238, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 59, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2403, + "File": 16679, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 96, + "Created": "2022-09-26T08:59:53-06:00", + "Modified": "2022-09-26T20:23:51-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-26T08:59:00-06:00", + "EndTimeLocalized": "2022-09-26T19:35:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 96, + "DisplayName": "Clark Page", + "EmployeeProfile": 96, + "Employee": 96, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a19b6aeb9552ecba1e12d71958dee40d.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Mm5g23w8dnxp011tIu0lVcpSgiZY4amqNnHkVZ9cAQefVOtXE7nxXDKLPQ0y01R68V5mZgJFwanjUxn~Xp2ddBo1L2uetx2Ye5dkiODK8p5midqpCYcdLFMVdyOcUemLapoXloYdZMbr277HUlAK-jw7y6H1p4e-8PA1R~nDOik_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 59, + "OperationalUnitName": "Clark Page PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Clark Page PA-C" + }, + "EmployeeInfo": { + "Id": 96, + "DisplayName": "Clark Page", + "EmployeeProfile": 96, + "Employee": 96, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a19b6aeb9552ecba1e12d71958dee40d.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Mm5g23w8dnxp011tIu0lVcpSgiZY4amqNnHkVZ9cAQefVOtXE7nxXDKLPQ0y01R68V5mZgJFwanjUxn~Xp2ddBo1L2uetx2Ye5dkiODK8p5midqpCYcdLFMVdyOcUemLapoXloYdZMbr277HUlAK-jw7y6H1p4e-8PA1R~nDOik_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 96, + "Company": 3, + "FirstName": "Clark", + "LastName": "Page", + "DisplayName": "Clark Page", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 57651, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1103, + "UserId": 96, + "JobAppId": null, + "Active": true, + "StartDate": "2022-03-31T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276048, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-31T14:46:22-07:00", + "Modified": "2022-07-19T13:03:28-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9198, + "Employee": 69, + "EmployeeHistory": 276128, + "EmployeeAgreement": 72, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204400, + "EndTime": 1664233200, + "Mealbreak": "2022-09-26T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [], + "TotalTime": 8, + "TotalTimeInv": 8, + "Cost": 0, + "Roster": null, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": null, + "IsInProgress": null, + "IsLeave": true, + "LeaveId": 267, + "LeaveRule": 1, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2351, + "File": null, + "CustomFieldData": null, + "RealTime": false, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": -2, + "Created": "2022-09-26T00:26:55-06:00", + "Modified": "2022-09-26T00:26:55-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-26T09:00:00-06:00", + "EndTimeLocalized": "2022-09-26T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": -1, + "DisplayName": "Deputy", + "Photo": "https://d2sebmzxyyulvv.cloudfront.net/deputy-avatar-30.png" + }, + "OperationalUnitInfo": null, + "EmployeeInfo": { + "Id": 69, + "DisplayName": "Humberto Saenz Chavez", + "EmployeeProfile": 69, + "Employee": 69, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e1e503c48d0b7357937408753dc18eb5.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WJRWQesDAJCoeihtG3wVUEJi1PaNhpUSyg7vy9i6n6Cc0iHy9L9e7xAHTag1R2en73xk6bXikPTTOUVAFwkrikSb9UVgSS2MgGiBgGAZufceXx81pn~CR41BjUIDYHCP8c3z2AQ9lIoQmN6Tgw4eZgOPbpkrWvub6Y9GId63YPI_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 69, + "Company": 2, + "FirstName": "Humberto", + "LastName": "Saenz Chavez", + "DisplayName": "Humberto Saenz Chavez", + "OtherName": null, + "Salutation": null, + "MainAddress": 222, + "PostalAddress": null, + "Contact": 272964, + "EmergencyAddress": 284, + "DateOfBirth": "1985-07-11T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1229, + "UserId": 69, + "JobAppId": null, + "Active": true, + "StartDate": "2020-07-20T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276128, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-09-18T17:40:41-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9199, + "Employee": 94, + "EmployeeHistory": 61399, + "EmployeeAgreement": 131, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204400, + "EndTime": 1664233200, + "Mealbreak": "2022-09-26T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [], + "TotalTime": 8, + "TotalTimeInv": 8, + "Cost": 0, + "Roster": null, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": null, + "IsInProgress": null, + "IsLeave": true, + "LeaveId": 237, + "LeaveRule": 1, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2352, + "File": null, + "CustomFieldData": null, + "RealTime": false, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": -2, + "Created": "2022-09-26T00:26:55-06:00", + "Modified": "2022-09-26T00:26:55-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-26T09:00:00-06:00", + "EndTimeLocalized": "2022-09-26T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": -1, + "DisplayName": "Deputy", + "Photo": "https://d2sebmzxyyulvv.cloudfront.net/deputy-avatar-30.png" + }, + "OperationalUnitInfo": null, + "EmployeeInfo": { + "Id": 94, + "DisplayName": "Allison Pollock", + "EmployeeProfile": 94, + "Employee": 94, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_c8df872bf3255ac50027ae53d6ae89a5.jpg?Expires=1664554632&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=egmhaeEFpZU2p0~kGWdY1P4NTKpHoK6BRSdqDB0vq5TDKGpVA1uAdhN~ylK7EjfvL-BYMj4s2-~K6i8TGFtt33xnrFs7LVpAEeetHaMUgLWznZsKB6VIHoNuEPnEk0hfb8tIAVSHsxrpxs80u6lKeX4TylvWRmSsayX9aRUBvSI_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 94, + "Company": 2, + "FirstName": "Allison", + "LastName": "Pollock", + "DisplayName": "Allison Pollock", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 57652, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1104, + "UserId": 94, + "JobAppId": null, + "Active": false, + "StartDate": "2021-10-25T00:00:00-06:00", + "TerminationDate": "2022-09-26T00:00:00-06:00", + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276140, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-31T10:18:25-07:00", + "Modified": "2022-09-26T16:18:02-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9251, + "Employee": 115, + "EmployeeHistory": 115850, + "EmployeeAgreement": 440, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204400, + "EndTime": 1664236800, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664222400": "OUT", + "1664226000": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664222400, + "intUnixEnd": 1664226000, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 64, + "Roster": 21276, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2404, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 115, + "Created": "2022-09-26T09:00:04-06:00", + "Modified": "2022-09-26T20:23:54-06:00", + "OnCost": 64, + "StartTimeLocalized": "2022-09-26T09:00:00-06:00", + "EndTimeLocalized": "2022-09-26T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 115, + "DisplayName": "Alan Inube", + "EmployeeProfile": 115, + "Employee": 115, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+I&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 115, + "DisplayName": "Alan Inube", + "EmployeeProfile": 115, + "Employee": 115, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+I&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 115, + "Company": 7, + "FirstName": "Alan", + "LastName": "Inube", + "DisplayName": "Alan Inube", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 112973, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 115, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115850, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:16-06:00", + "Modified": "2022-04-25T17:43:43-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9252, + "Employee": 114, + "EmployeeHistory": 115912, + "EmployeeAgreement": 439, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204400, + "EndTime": 1664236800, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664222400": "OUT", + "1664226000": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664222400, + "intUnixEnd": 1664226000, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 64, + "Roster": 21273, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2405, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 114, + "Created": "2022-09-26T09:00:10-06:00", + "Modified": "2022-09-26T20:23:54-06:00", + "OnCost": 64, + "StartTimeLocalized": "2022-09-26T09:00:00-06:00", + "EndTimeLocalized": "2022-09-26T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 114, + "DisplayName": "Sergio Briceno", + "EmployeeProfile": 114, + "Employee": 114, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_c1f0e75d5d3d393e535475b8b1188183.jpg?Expires=1664548383&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L-Nhxp-d0An00S2ES~aeyaSOfX3M-7WRtm195DzBGTSSppJ0gloC-3hEfAPeTwjbaUIMPJwMY3PWYvfcK4VXrANb3r9FX6WTgQeFgrzbHxiJLYU7j6yFHmlOTLd8sNk5O9fESoaKvjoiVt9hirYa411~v8NXRhDwc6MoanS1FFw_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 114, + "DisplayName": "Sergio Briceno", + "EmployeeProfile": 114, + "Employee": 114, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_c1f0e75d5d3d393e535475b8b1188183.jpg?Expires=1664548383&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L-Nhxp-d0An00S2ES~aeyaSOfX3M-7WRtm195DzBGTSSppJ0gloC-3hEfAPeTwjbaUIMPJwMY3PWYvfcK4VXrANb3r9FX6WTgQeFgrzbHxiJLYU7j6yFHmlOTLd8sNk5O9fESoaKvjoiVt9hirYa411~v8NXRhDwc6MoanS1FFw_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 114, + "Company": 7, + "FirstName": "Sergio", + "LastName": "Briceno", + "DisplayName": "Sergio Briceno", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 112975, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 2009, + "UserId": 114, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115912, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:16-06:00", + "Modified": "2022-04-25T17:49:32-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9253, + "Employee": 113, + "EmployeeHistory": 115851, + "EmployeeAgreement": 438, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204400, + "EndTime": 1664236800, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664222400": "OUT", + "1664226000": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664222400, + "intUnixEnd": 1664226000, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 64, + "Roster": 21270, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2406, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 113, + "Created": "2022-09-26T09:00:11-06:00", + "Modified": "2022-09-26T20:23:53-06:00", + "OnCost": 64, + "StartTimeLocalized": "2022-09-26T09:00:00-06:00", + "EndTimeLocalized": "2022-09-26T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 113, + "DisplayName": "Gabriela Gurrola", + "EmployeeProfile": 113, + "Employee": 113, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=G+G&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 113, + "DisplayName": "Gabriela Gurrola", + "EmployeeProfile": 113, + "Employee": 113, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=G+G&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 113, + "Company": 7, + "FirstName": "Gabriela", + "LastName": "Gurrola", + "DisplayName": "Gabriela Gurrola", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 112974, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 113, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115851, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:16-06:00", + "Modified": "2022-04-25T17:43:50-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9254, + "Employee": 126, + "EmployeeHistory": 223782, + "EmployeeAgreement": 469, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204400, + "EndTime": 1664226000, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664215740": "OUT", + "1664219340": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 11340, + "intEnd": 14940, + "intUnixStart": 1664215740, + "intUnixEnd": 1664219340, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 5, + "TotalTimeInv": 6, + "Cost": 70, + "Roster": 21305, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2407, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 126, + "Created": "2022-09-26T09:00:15-06:00", + "Modified": "2022-09-26T20:23:54-06:00", + "OnCost": 70, + "StartTimeLocalized": "2022-09-26T09:00:00-06:00", + "EndTimeLocalized": "2022-09-26T15:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 126, + "DisplayName": "Alexandra Benitez", + "EmployeeProfile": 126, + "Employee": 126, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+B&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 126, + "DisplayName": "Alexandra Benitez", + "EmployeeProfile": 126, + "Employee": 126, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+B&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 126, + "Company": 7, + "FirstName": "Alexandra", + "LastName": "Benitez", + "DisplayName": "Alexandra Benitez", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 167031, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 126, + "JobAppId": null, + "Active": true, + "StartDate": "2022-05-20T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 223782, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-05-20T09:38:22-06:00", + "Modified": "2022-06-06T11:37:01-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9255, + "Employee": 134, + "EmployeeHistory": 276016, + "EmployeeAgreement": 492, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204400, + "EndTime": 1664236800, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664222400": "OUT", + "1664226000": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664222400, + "intUnixEnd": 1664226000, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 0, + "Roster": 21312, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2408, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 134, + "Created": "2022-09-26T09:00:28-06:00", + "Modified": "2022-09-26T20:23:53-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-26T09:00:00-06:00", + "EndTimeLocalized": "2022-09-26T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 134, + "DisplayName": "Carlos Hernandez Gonzalez", + "EmployeeProfile": 134, + "Employee": 134, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=C+G&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 134, + "DisplayName": "Carlos Hernandez Gonzalez", + "EmployeeProfile": 134, + "Employee": 134, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=C+G&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 134, + "Company": 7, + "FirstName": "Carlos", + "LastName": "Hernandez Gonzalez", + "DisplayName": "Carlos Hernandez Gonzalez", + "OtherName": null, + "Salutation": null, + "MainAddress": 331, + "PostalAddress": null, + "Contact": 272930, + "EmergencyAddress": null, + "DateOfBirth": "1996-06-03T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 134, + "JobAppId": null, + "Active": true, + "StartDate": null, + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276016, + "CustomFieldData": null, + "Creator": 2, + "Created": "2022-07-06T11:30:29-06:00", + "Modified": "2022-07-06T11:36:45-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9256, + "Employee": 111, + "EmployeeHistory": 115976, + "EmployeeAgreement": 436, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204400, + "EndTime": 1664236800, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664222460": "OUT", + "1664226060": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18060, + "intEnd": 21660, + "intUnixStart": 1664222460, + "intUnixEnd": 1664226060, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 64, + "Roster": 21259, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2409, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 111, + "Created": "2022-09-26T09:00:34-06:00", + "Modified": "2022-09-26T20:23:53-06:00", + "OnCost": 64, + "StartTimeLocalized": "2022-09-26T09:00:00-06:00", + "EndTimeLocalized": "2022-09-26T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 111, + "DisplayName": "Martha Centeno", + "EmployeeProfile": 111, + "Employee": 111, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=M+C&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 111, + "DisplayName": "Martha Centeno", + "EmployeeProfile": 111, + "Employee": 111, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=M+C&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 111, + "Company": 7, + "FirstName": "Martha", + "LastName": "Centeno", + "DisplayName": "Martha Centeno", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 113098, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": 0, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 111, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115976, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:15-06:00", + "Modified": "2022-04-25T18:11:10-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9257, + "Employee": 112, + "EmployeeHistory": 115854, + "EmployeeAgreement": 437, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204400, + "EndTime": 1664237340, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664222400": "OUT", + "1664226000": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664222400, + "intUnixEnd": 1664226000, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.15, + "TotalTimeInv": 9, + "Cost": 65.2, + "Roster": 21264, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2410, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 112, + "Created": "2022-09-26T09:00:46-06:00", + "Modified": "2022-09-26T20:23:54-06:00", + "OnCost": 65.2, + "StartTimeLocalized": "2022-09-26T09:00:00-06:00", + "EndTimeLocalized": "2022-09-26T18:09:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 112, + "DisplayName": "Carlos Espinosa", + "EmployeeProfile": 112, + "Employee": 112, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=C+E&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 112, + "DisplayName": "Carlos Espinosa", + "EmployeeProfile": 112, + "Employee": 112, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=C+E&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 112, + "Company": 7, + "FirstName": "Carlos", + "LastName": "Espinosa", + "DisplayName": "Carlos Espinosa", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 112977, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 112, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115854, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:15-06:00", + "Modified": "2022-04-25T17:45:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9258, + "Employee": 138, + "EmployeeHistory": 276090, + "EmployeeAgreement": 524, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204460, + "EndTime": 1664236860, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664222400": "OUT", + "1664226000": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17940, + "intEnd": 21540, + "intUnixStart": 1664222400, + "intUnixEnd": 1664226000, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 8.98, + "Cost": 0, + "Roster": 21415, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2411, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 138, + "Created": "2022-09-26T09:01:06-06:00", + "Modified": "2022-09-26T20:23:53-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-26T09:01:00-06:00", + "EndTimeLocalized": "2022-09-26T18:01:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 138, + "DisplayName": "Alejandra Hernandez", + "EmployeeProfile": 138, + "Employee": 138, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+H&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 138, + "DisplayName": "Alejandra Hernandez", + "EmployeeProfile": 138, + "Employee": 138, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+H&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 138, + "Company": 7, + "FirstName": "Alejandra", + "LastName": "Hernandez", + "DisplayName": "Alejandra Hernandez", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272947, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 138, + "JobAppId": null, + "Active": true, + "StartDate": "2022-08-22T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276090, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-08-22T15:07:51-06:00", + "Modified": "2022-08-22T18:11:07-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9259, + "Employee": 137, + "EmployeeHistory": 276086, + "EmployeeAgreement": 523, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204520, + "EndTime": 1664236860, + "Mealbreak": "2022-09-26T01:00:00-06:00", + "MealbreakSlots": { + "1664222820": "OUT", + "1664226420": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18300, + "intEnd": 21900, + "intUnixStart": 1664222820, + "intUnixEnd": 1664226420, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.98, + "TotalTimeInv": 8.97, + "Cost": 0, + "Roster": 21316, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2412, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 137, + "Created": "2022-09-26T09:02:08-06:00", + "Modified": "2022-09-26T20:23:55-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-26T09:02:00-06:00", + "EndTimeLocalized": "2022-09-26T18:01:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 137, + "DisplayName": "Omar Castaneda", + "EmployeeProfile": 137, + "Employee": 137, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=O+C&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 137, + "DisplayName": "Omar Castaneda", + "EmployeeProfile": 137, + "Employee": 137, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=O+C&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 137, + "Company": 7, + "FirstName": "Omar", + "LastName": "Castaneda", + "DisplayName": "Omar Castaneda", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272944, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 137, + "JobAppId": null, + "Active": true, + "StartDate": "2022-08-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276086, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-08-19T12:18:45-06:00", + "Modified": "2022-08-19T12:20:31-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9260, + "Employee": 140, + "EmployeeHistory": 276127, + "EmployeeAgreement": 533, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204520, + "EndTime": 1664233200, + "Mealbreak": "2022-09-26T01:02:00-06:00", + "MealbreakSlots": { + "1664222400": "OUT", + "1664226120": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17880, + "intEnd": 21600, + "intUnixStart": 1664222400, + "intUnixEnd": 1664226120, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 6.93, + "TotalTimeInv": 7.97, + "Cost": 0, + "Roster": 21460, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 34, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2413, + "File": 16643, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 140, + "Created": "2022-09-26T09:02:58-06:00", + "Modified": "2022-09-26T20:23:55-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-26T09:02:00-06:00", + "EndTimeLocalized": "2022-09-26T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 140, + "DisplayName": "Cesar Molina", + "EmployeeProfile": 140, + "Employee": 140, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_913978aa8ee3482d1d13127d8af9436a.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WkJKqdnooCQlf7JjIWiYVmbeWe0GtSp9-hnrGpTseW73DuRDlNnD5h0RpPB5XmmzuTIG3hspKcqpYGewcQM8c2ZWB26TWY6osNekrwoE7V0vaD4idmd6iJQNVNaVfv9zkqrbrp4HcyewYzKnkBGEZzqFl~N7afqE5RR8S5Glvok_", + "Pronouns": 1, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 140, + "DisplayName": "Cesar Molina", + "EmployeeProfile": 140, + "Employee": 140, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_913978aa8ee3482d1d13127d8af9436a.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WkJKqdnooCQlf7JjIWiYVmbeWe0GtSp9-hnrGpTseW73DuRDlNnD5h0RpPB5XmmzuTIG3hspKcqpYGewcQM8c2ZWB26TWY6osNekrwoE7V0vaD4idmd6iJQNVNaVfv9zkqrbrp4HcyewYzKnkBGEZzqFl~N7afqE5RR8S5Glvok_", + "Pronouns": 1, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 140, + "Company": 6, + "FirstName": "Cesar", + "LastName": "Molina", + "DisplayName": "Cesar Molina", + "OtherName": null, + "Salutation": null, + "MainAddress": 332, + "PostalAddress": null, + "Contact": 272961, + "EmergencyAddress": 333, + "DateOfBirth": "1989-11-05T00:00:00-07:00", + "Gender": 0, + "Pronouns": 1, + "CustomPronouns": "", + "Photo": 15038, + "UserId": 140, + "JobAppId": null, + "Active": true, + "StartDate": "2022-09-07T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276127, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-09-07T17:13:25-06:00", + "Modified": "2022-09-16T12:51:43-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9261, + "Employee": 45, + "EmployeeHistory": 130453, + "EmployeeAgreement": 47, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664204580, + "EndTime": 1664236920, + "Mealbreak": "2022-09-26T01:05:00-06:00", + "MealbreakSlots": { + "1664219100": "OUT", + "1664223000": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 14520, + "intEnd": 18420, + "intUnixStart": 1664219100, + "intUnixEnd": 1664223000, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.9, + "TotalTimeInv": 8.95, + "Cost": 158, + "Roster": 21091, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2414, + "File": 16663, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 45, + "Created": "2022-09-26T09:03:10-06:00", + "Modified": "2022-09-26T18:11:44-06:00", + "OnCost": 158, + "StartTimeLocalized": "2022-09-26T09:03:00-06:00", + "EndTimeLocalized": "2022-09-26T18:02:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 45, + "DisplayName": "Jailene Lopez", + "EmployeeProfile": 45, + "Employee": 45, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f97ca5201b058a36c032450a7051ca39.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=TdzfMkUJhNecAttB2ZwvI3yL0GqemIWxDkWDj0aj7-C6lNsg5izpe7Z5yyjrtNh1vrOqWpTe9mtH7dS7aekXEjo6UwtUWCC7nVLy-gzHQk2y5ywGkXXrdsRDbNAZy05Z3gTSAjIK1tRfHXaonn~rBe~OXSVRziN483wiUH5ESs8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 45, + "DisplayName": "Jailene Lopez", + "EmployeeProfile": 45, + "Employee": 45, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f97ca5201b058a36c032450a7051ca39.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=TdzfMkUJhNecAttB2ZwvI3yL0GqemIWxDkWDj0aj7-C6lNsg5izpe7Z5yyjrtNh1vrOqWpTe9mtH7dS7aekXEjo6UwtUWCC7nVLy-gzHQk2y5ywGkXXrdsRDbNAZy05Z3gTSAjIK1tRfHXaonn~rBe~OXSVRziN483wiUH5ESs8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 45, + "Company": 6, + "FirstName": "Jailene", + "LastName": "Lopez", + "DisplayName": "Jailene Lopez", + "OtherName": null, + "Salutation": null, + "MainAddress": 190, + "PostalAddress": null, + "Contact": 666, + "EmergencyAddress": 284, + "DateOfBirth": "1997-05-31T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 959, + "UserId": 45, + "JobAppId": null, + "Active": true, + "StartDate": "2001-09-24T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 130453, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:21-07:00", + "Modified": "2022-04-28T11:07:03-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9262, + "Employee": 37, + "EmployeeHistory": 275966, + "EmployeeAgreement": 124, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664205600, + "EndTime": 1664233920, + "Mealbreak": "2022-09-26T01:31:00-06:00", + "MealbreakSlots": { + "1664221020": "OUT", + "1664226480": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15420, + "intEnd": 20880, + "intUnixStart": 1664221020, + "intUnixEnd": 1664226480, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 6.35, + "TotalTimeInv": 7.67, + "Cost": 111.125, + "Roster": 21080, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 34, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2415, + "File": 16651, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 39, + "Created": "2022-09-26T09:20:04-06:00", + "Modified": "2022-09-26T20:23:52-06:00", + "OnCost": 111.125, + "StartTimeLocalized": "2022-09-26T09:20:00-06:00", + "EndTimeLocalized": "2022-09-26T17:12:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 39, + "DisplayName": "Benjamin Rico Jr.", + "EmployeeProfile": 37, + "Employee": 37, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8061de79aca156ef3e62fa53502a58c2.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EI~Xg9hMI0vRYMb2MWEVCBXACYGZ0iisoJb2RTLIDpdi-~BjHwzOjOpxHHzzRM74i2PQGzZHDBimDTOSo8AFAwRYh06vOrlHcK3sXdl0-Vu-C635FcLEPKX9fuUP0lVUSA1ddtt6ErQ6lRnniSx-bM39ZYT8QSNlg7tcc9LeTDY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 39, + "DisplayName": "Benjamin Rico Jr.", + "EmployeeProfile": 37, + "Employee": 37, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8061de79aca156ef3e62fa53502a58c2.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EI~Xg9hMI0vRYMb2MWEVCBXACYGZ0iisoJb2RTLIDpdi-~BjHwzOjOpxHHzzRM74i2PQGzZHDBimDTOSo8AFAwRYh06vOrlHcK3sXdl0-Vu-C635FcLEPKX9fuUP0lVUSA1ddtt6ErQ6lRnniSx-bM39ZYT8QSNlg7tcc9LeTDY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 37, + "Company": 3, + "FirstName": "Benjamin", + "LastName": "Rico Jr.", + "DisplayName": "Benjamin Rico Jr.", + "OtherName": null, + "Salutation": null, + "MainAddress": 183, + "PostalAddress": null, + "Contact": 272883, + "EmergencyAddress": 284, + "DateOfBirth": "1990-08-31T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1033, + "UserId": 39, + "JobAppId": null, + "Active": true, + "StartDate": "2015-03-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275966, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:20-07:00", + "Modified": "2022-07-06T10:46:58-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9263, + "Employee": 18, + "EmployeeHistory": 276038, + "EmployeeAgreement": 20, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664206680, + "EndTime": 1664239980, + "Mealbreak": "2022-09-26T01:01:00-06:00", + "MealbreakSlots": { + "1664219760": "OUT", + "1664223420": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 13080, + "intEnd": 16740, + "intUnixStart": 1664219760, + "intUnixEnd": 1664223420, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.23, + "TotalTimeInv": 8.37, + "Cost": 222.21, + "Roster": 21428, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2416, + "File": 16674, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 19, + "Created": "2022-09-26T09:38:33-06:00", + "Modified": "2022-09-26T20:23:52-06:00", + "OnCost": 222.21, + "StartTimeLocalized": "2022-09-26T09:38:00-06:00", + "EndTimeLocalized": "2022-09-26T18:53:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 19, + "DisplayName": "Hector Contreras", + "EmployeeProfile": 18, + "Employee": 18, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_14582f09774732be45869ad3659378cf.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cC18xjqhmTQEJOMLcxD20ahcNI2x85Aynkdehy3Oj32Ax0cDHcuufWsTloCh9pGGSDjlBWDkUzIPHG1FBPUnJuzcBHiFKesIrg5yisU~cupx9Yediy5BvFhc7z1CZjmaHVA6LNR~KWEuiw4y4-zrDH0Kl~2VUcEDTlJKI-XaglE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 19, + "DisplayName": "Hector Contreras", + "EmployeeProfile": 18, + "Employee": 18, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_14582f09774732be45869ad3659378cf.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cC18xjqhmTQEJOMLcxD20ahcNI2x85Aynkdehy3Oj32Ax0cDHcuufWsTloCh9pGGSDjlBWDkUzIPHG1FBPUnJuzcBHiFKesIrg5yisU~cupx9Yediy5BvFhc7z1CZjmaHVA6LNR~KWEuiw4y4-zrDH0Kl~2VUcEDTlJKI-XaglE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 18, + "Company": 3, + "FirstName": "Hector", + "LastName": "Contreras", + "DisplayName": "Hector Contreras", + "OtherName": null, + "Salutation": null, + "MainAddress": 161, + "PostalAddress": null, + "Contact": 272934, + "EmergencyAddress": 284, + "DateOfBirth": "1982-06-27T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1317, + "UserId": 19, + "JobAppId": null, + "Active": true, + "StartDate": "2010-09-16T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 1, + "AllowAppraisal": true, + "HistoryId": 276038, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:16-07:00", + "Modified": "2022-07-14T09:36:52-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9264, + "Employee": 24, + "EmployeeHistory": 275982, + "EmployeeAgreement": 26, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664206860, + "EndTime": 1664235360, + "Mealbreak": "2022-09-26T01:04:00-06:00", + "MealbreakSlots": { + "1664219520": "OUT", + "1664223360": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 12660, + "intEnd": 16500, + "intUnixStart": 1664219520, + "intUnixEnd": 1664223360, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 6.85, + "TotalTimeInv": 7.82, + "Cost": 109.6, + "Roster": 21037, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2417, + "File": 16658, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 24, + "Created": "2022-09-26T09:41:45-06:00", + "Modified": "2022-09-26T20:23:52-06:00", + "OnCost": 109.6, + "StartTimeLocalized": "2022-09-26T09:41:00-06:00", + "EndTimeLocalized": "2022-09-26T17:36:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 24, + "DisplayName": "Gumara Mata", + "EmployeeProfile": 24, + "Employee": 24, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3979ef3d653677cb781b8e10e0855d35.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=CEiUJKGMTschoNegaZAqjoALpIF7gFZlyn1J9DBXnxLF3KunzT5g6FK~8Fhe-z1J-q9vEFP7WIvYRQipjKItueJQoeeIPAb1vZQ7A7onUexwCFqneJqOvJP9SyxvNI5ByfrirzNAXzW1CDLfJUubLSUkB4-VRpr4xGCfOZLYpw8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 24, + "DisplayName": "Gumara Mata", + "EmployeeProfile": 24, + "Employee": 24, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3979ef3d653677cb781b8e10e0855d35.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=CEiUJKGMTschoNegaZAqjoALpIF7gFZlyn1J9DBXnxLF3KunzT5g6FK~8Fhe-z1J-q9vEFP7WIvYRQipjKItueJQoeeIPAb1vZQ7A7onUexwCFqneJqOvJP9SyxvNI5ByfrirzNAXzW1CDLfJUubLSUkB4-VRpr4xGCfOZLYpw8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 24, + "Company": 6, + "FirstName": "Gumara", + "LastName": "Mata", + "DisplayName": "Gumara Mata", + "OtherName": null, + "Salutation": null, + "MainAddress": 168, + "PostalAddress": null, + "Contact": 272876, + "EmergencyAddress": 284, + "DateOfBirth": "1974-06-23T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 950, + "UserId": 24, + "JobAppId": null, + "Active": true, + "StartDate": "2001-09-24T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275982, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:17-07:00", + "Modified": "2022-07-06T10:57:25-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9265, + "Employee": 129, + "EmployeeHistory": 276075, + "EmployeeAgreement": 474, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664207940, + "EndTime": 1664243280, + "Mealbreak": "2022-09-26T01:02:00-06:00", + "MealbreakSlots": { + "1664222700": "OUT", + "1664226420": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 14760, + "intEnd": 18480, + "intUnixStart": 1664222700, + "intUnixEnd": 1664226420, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.78, + "TotalTimeInv": 9, + "Cost": 122.92, + "Roster": 21356, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 59, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2418, + "File": 16680, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 129, + "Created": "2022-09-26T09:59:57-06:00", + "Modified": "2022-09-26T20:23:53-06:00", + "OnCost": 122.92, + "StartTimeLocalized": "2022-09-26T09:59:00-06:00", + "EndTimeLocalized": "2022-09-26T19:48:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 129, + "DisplayName": "Maritza Lopez-Aguirre", + "EmployeeProfile": 129, + "Employee": 129, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_9df15740511a058e0a76afedbdaccb06.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WmoUVp4XuInmkLnVlh9JapYK4JF9J8AyXr1TCq869C2G~3r~arp7~kyIrL4iQ-VIqPBVIroDdyWMGL1YtPlN8AEyu6rhP5tBTrF7nphD1gGMBYQlNj773ElgFNaJ7DzXGeqwWusmkj~3YEUBiGhqjpTJlHig3JTg8DmYgVoTCeQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 59, + "OperationalUnitName": "Clark Page PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Clark Page PA-C" + }, + "EmployeeInfo": { + "Id": 129, + "DisplayName": "Maritza Lopez-Aguirre", + "EmployeeProfile": 129, + "Employee": 129, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_9df15740511a058e0a76afedbdaccb06.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WmoUVp4XuInmkLnVlh9JapYK4JF9J8AyXr1TCq869C2G~3r~arp7~kyIrL4iQ-VIqPBVIroDdyWMGL1YtPlN8AEyu6rhP5tBTrF7nphD1gGMBYQlNj773ElgFNaJ7DzXGeqwWusmkj~3YEUBiGhqjpTJlHig3JTg8DmYgVoTCeQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 129, + "Company": 2, + "FirstName": "Maritza", + "LastName": "Lopez-Aguirre", + "DisplayName": "Maritza Lopez-Aguirre", + "OtherName": null, + "Salutation": null, + "MainAddress": 323, + "PostalAddress": null, + "Contact": 234560, + "EmergencyAddress": 284, + "DateOfBirth": "2022-05-30T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 6574, + "UserId": 129, + "JobAppId": null, + "Active": true, + "StartDate": null, + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276075, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-06-08T14:21:06-06:00", + "Modified": "2022-08-17T12:56:16-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9266, + "Employee": 81, + "EmployeeHistory": 275970, + "EmployeeAgreement": 144, + "Date": "2022-09-26T00:00:00-06:00", + "StartTime": 1664212500, + "EndTime": 1664238600, + "Mealbreak": "2022-09-26T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 3600, + "intEnd": 3600, + "intUnixStart": 1664216100, + "intUnixEnd": 1664216100, + "mixedActivity": { + "intState": 4, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished Duration" + }], + "TotalTime": 7.25, + "TotalTimeInv": 5, + "Cost": 101.5, + "Roster": 21440, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2419, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 2, + "Created": "2022-09-26T11:59:34-06:00", + "Modified": "2022-09-26T20:24:36-06:00", + "OnCost": 101.5, + "StartTimeLocalized": "2022-09-26T11:15:00-06:00", + "EndTimeLocalized": "2022-09-26T18:30:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 81, + "DisplayName": "David Gomez", + "EmployeeProfile": 81, + "Employee": 81, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_628106735184a54f7891b6db7dfe0b39.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=MjcbfVMvTqNoWBuIb~iVUM4wr~BJ8a3IyzEL07HVFHswfZrxfim-o40CueCGeGn~Z4R~ydbCnA3kDgFkcSe6CHhxpMTJcOPe8ci78dF7ckh6DRizk9LBUqPKFx3stO5l1bTFIePOKDIv7nEo97YtZeBqryt0liTvOiE~0i4ZXSk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 81, + "Company": 3, + "FirstName": "David", + "LastName": "Gomez", + "DisplayName": "David Gomez", + "OtherName": null, + "Salutation": null, + "MainAddress": 243, + "PostalAddress": null, + "Contact": 272919, + "EmergencyAddress": 278, + "DateOfBirth": "2001-02-12T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1165, + "UserId": 81, + "JobAppId": null, + "Active": true, + "StartDate": "2022-01-17T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275970, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:30-07:00", + "Modified": "2022-07-06T10:49:53-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9268, + "Employee": 46, + "EmployeeHistory": 275993, + "EmployeeAgreement": 48, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664285640, + "EndTime": 1664317920, + "Mealbreak": "2022-09-27T00:45:00-06:00", + "MealbreakSlots": { + "1664301360": "OUT", + "1664304060": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15720, + "intEnd": 18420, + "intUnixStart": 1664301360, + "intUnixEnd": 1664304060, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.22, + "TotalTimeInv": 8, + "Cost": 110.97, + "Roster": 21101, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2357, + "File": 16772, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 47, + "Created": "2022-09-27T07:34:32-06:00", + "Modified": "2022-09-27T18:04:03-06:00", + "OnCost": 110.97, + "StartTimeLocalized": "2022-09-27T07:34:00-06:00", + "EndTimeLocalized": "2022-09-27T16:32:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 47, + "DisplayName": "Mayela Guereca", + "EmployeeProfile": 46, + "Employee": 46, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_aab7758d4f20d64e04849c4ba821103b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=YF4Jf5-97CcDd6k-4amyzDX3ixhlP2m5sM7OlfeBkt1Pezm-NUysosh6aySB-D0jl-YQtr4bzBTUSjpxUS6iLEoTH0KwN7FkHIo1GJRt5iU~x1uLnfmie2~8iW80lOs9tIM7UNT3K~9gQjeHlsyAaZXUesGJC71OHnnn8DBaQik_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 47, + "DisplayName": "Mayela Guereca", + "EmployeeProfile": 46, + "Employee": 46, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_aab7758d4f20d64e04849c4ba821103b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=YF4Jf5-97CcDd6k-4amyzDX3ixhlP2m5sM7OlfeBkt1Pezm-NUysosh6aySB-D0jl-YQtr4bzBTUSjpxUS6iLEoTH0KwN7FkHIo1GJRt5iU~x1uLnfmie2~8iW80lOs9tIM7UNT3K~9gQjeHlsyAaZXUesGJC71OHnnn8DBaQik_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 46, + "Company": 6, + "FirstName": "Hermenegilda", + "LastName": "Guereca", + "DisplayName": "Mayela Guereca", + "OtherName": null, + "Salutation": null, + "MainAddress": 191, + "PostalAddress": null, + "Contact": 272892, + "EmergencyAddress": 284, + "DateOfBirth": "1974-08-04T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 996, + "UserId": 47, + "JobAppId": null, + "Active": true, + "StartDate": "2021-09-13T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275993, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:22-07:00", + "Modified": "2022-07-06T11:07:12-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9269, + "Employee": 47, + "EmployeeHistory": 276009, + "EmployeeAgreement": 49, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664285640, + "EndTime": 1664317920, + "Mealbreak": "2022-09-27T00:30:00-06:00", + "MealbreakSlots": { + "1664305560": "OUT", + "1664307360": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 19920, + "intEnd": 21720, + "intUnixStart": 1664305560, + "intUnixEnd": 1664307360, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.47, + "TotalTimeInv": 8.5, + "Cost": 143.99, + "Roster": 21118, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2358, + "File": 16771, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 46, + "Created": "2022-09-27T07:34:55-06:00", + "Modified": "2022-09-27T18:04:02-06:00", + "OnCost": 143.99, + "StartTimeLocalized": "2022-09-27T07:34:00-06:00", + "EndTimeLocalized": "2022-09-27T16:32:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 46, + "DisplayName": "Victor Rodriguez", + "EmployeeProfile": 47, + "Employee": 47, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6ef336a6a9cd56b2d1bd1b234ae66de3.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UGXfleUvjHE6qvoPEVFQLGdGVqxhZXYacfcREflTAb5V42Mu7XadcuUaAFumltzbPDvFG3~w15EHcYohiSIp9uX-hegZEMjNcUd4Dbsw5NTFJoJWmSjzk6tldj-eh5gm6VR55z8lKfkyqH422DD4if5Ep102xiZvN67-4pAx19k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 46, + "DisplayName": "Victor Rodriguez", + "EmployeeProfile": 47, + "Employee": 47, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6ef336a6a9cd56b2d1bd1b234ae66de3.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UGXfleUvjHE6qvoPEVFQLGdGVqxhZXYacfcREflTAb5V42Mu7XadcuUaAFumltzbPDvFG3~w15EHcYohiSIp9uX-hegZEMjNcUd4Dbsw5NTFJoJWmSjzk6tldj-eh5gm6VR55z8lKfkyqH422DD4if5Ep102xiZvN67-4pAx19k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 47, + "Company": 6, + "FirstName": "Victor", + "LastName": "Rodriguez", + "DisplayName": "Victor Rodriguez", + "OtherName": null, + "Salutation": null, + "MainAddress": 191, + "PostalAddress": null, + "Contact": 272891, + "EmergencyAddress": 284, + "DateOfBirth": "1996-05-02T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1001, + "UserId": 46, + "JobAppId": null, + "Active": true, + "StartDate": "2021-03-24T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276009, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:22-07:00", + "Modified": "2022-07-06T11:20:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9270, + "Employee": 31, + "EmployeeHistory": 276023, + "EmployeeAgreement": 33, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664285700, + "EndTime": 1664326500, + "Mealbreak": "2022-09-27T01:05:00-06:00", + "MealbreakSlots": { + "1664307060": "OUT", + "1664310960": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 21360, + "intEnd": 25260, + "intUnixStart": 1664307060, + "intUnixEnd": 1664310960, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 10.25, + "TotalTimeInv": 11.25, + "Cost": 0, + "Roster": 21061, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2354, + "File": 16811, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 32, + "Created": "2022-09-27T07:35:20-06:00", + "Modified": "2022-09-27T18:57:05-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-27T07:35:00-06:00", + "EndTimeLocalized": "2022-09-27T18:55:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 32, + "DisplayName": "Freddie Valenzuela", + "EmployeeProfile": 31, + "Employee": 31, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7c2a899a81bcf132fcaf0134cfea8dfd.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=HvxHTCgpy6ba-LfIJ-A5XP5mHrKH3Ki7y8iqaGkwxAbsaV5QBvGPmcawaZ4kPj30kKQVvI3xJ2gk8txGhdncdcirtdlLXvLbTiU2~gb9MMxl0PHTDkQkfXG75RHugSzBYogXNAHfdm4aP4L6pbVPSbky9oXIUNCQq5esH3LalBk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 32, + "DisplayName": "Freddie Valenzuela", + "EmployeeProfile": 31, + "Employee": 31, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7c2a899a81bcf132fcaf0134cfea8dfd.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=HvxHTCgpy6ba-LfIJ-A5XP5mHrKH3Ki7y8iqaGkwxAbsaV5QBvGPmcawaZ4kPj30kKQVvI3xJ2gk8txGhdncdcirtdlLXvLbTiU2~gb9MMxl0PHTDkQkfXG75RHugSzBYogXNAHfdm4aP4L6pbVPSbky9oXIUNCQq5esH3LalBk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 31, + "Company": 2, + "FirstName": "Freddie", + "LastName": "Valenzuela", + "DisplayName": "Freddie Valenzuela", + "OtherName": null, + "Salutation": null, + "MainAddress": 177, + "PostalAddress": null, + "Contact": 272931, + "EmergencyAddress": 284, + "DateOfBirth": "1971-07-25T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 9531, + "UserId": 32, + "JobAppId": null, + "Active": true, + "StartDate": "2006-11-20T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276023, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:19-07:00", + "Modified": "2022-07-11T09:16:50-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9271, + "Employee": 30, + "EmployeeHistory": 170130, + "EmployeeAgreement": 32, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286000, + "EndTime": 1664323320, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664305560": "OUT", + "1664309160": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 19560, + "intEnd": 23160, + "intUnixStart": 1664305560, + "intUnixEnd": 1664309160, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.37, + "TotalTimeInv": 10.25, + "Cost": 159.29, + "Roster": 21065, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2360, + "File": 16799, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 29, + "Created": "2022-09-27T07:40:18-06:00", + "Modified": "2022-09-27T18:11:30-06:00", + "OnCost": 159.29, + "StartTimeLocalized": "2022-09-27T07:40:00-06:00", + "EndTimeLocalized": "2022-09-27T18:02:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 29, + "DisplayName": "Aracely Tirrell", + "EmployeeProfile": 30, + "Employee": 30, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0d6425f581e9558209dd05be4e252239.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L9-lhv8DadL3tonHbygPqGiLf7bJAmakD7hzTwKXLJc3~GIZU6n16NldpwO6IqaxrQ61jRs9SH2sv0q1xRVN2sf7pv8rvyPxVEgPib~cuBzneMQ4FI5NBhKOIbx0ggCpukXtdUwwLgmjIGcOcdIqmZ8qCNbnre9QR63AEXdvgJU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 29, + "DisplayName": "Aracely Tirrell", + "EmployeeProfile": 30, + "Employee": 30, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0d6425f581e9558209dd05be4e252239.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L9-lhv8DadL3tonHbygPqGiLf7bJAmakD7hzTwKXLJc3~GIZU6n16NldpwO6IqaxrQ61jRs9SH2sv0q1xRVN2sf7pv8rvyPxVEgPib~cuBzneMQ4FI5NBhKOIbx0ggCpukXtdUwwLgmjIGcOcdIqmZ8qCNbnre9QR63AEXdvgJU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 30, + "Company": 6, + "FirstName": "Aracely", + "LastName": "Tirrell", + "DisplayName": "Aracely Tirrell", + "OtherName": null, + "Salutation": null, + "MainAddress": 176, + "PostalAddress": null, + "Contact": 167145, + "EmergencyAddress": 284, + "DateOfBirth": "1978-06-12T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 990, + "UserId": 29, + "JobAppId": null, + "Active": true, + "StartDate": null, + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 1, + "AllowAppraisal": true, + "HistoryId": 170130, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:18-07:00", + "Modified": "2022-05-23T08:00:28-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9272, + "Employee": 28, + "EmployeeHistory": 275975, + "EmployeeAgreement": 30, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286060, + "EndTime": 1664319780, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664305680": "OUT", + "1664309280": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 19620, + "intEnd": 23220, + "intUnixStart": 1664305680, + "intUnixEnd": 1664309280, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.37, + "TotalTimeInv": 9, + "Cost": 292.95, + "Roster": 21055, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2375, + "File": 16779, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 27, + "Created": "2022-09-27T07:41:13-06:00", + "Modified": "2022-09-27T18:04:02-06:00", + "OnCost": 292.95, + "StartTimeLocalized": "2022-09-27T07:41:00-06:00", + "EndTimeLocalized": "2022-09-27T17:03:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 27, + "DisplayName": "Elizabeth Rico", + "EmployeeProfile": 28, + "Employee": 28, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_09a0688488492c4dd40985c9a0d14b62.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=hO-O2oxJR3UP3g9lnWGLVcP4mKq8fK5qtyinwczi0NBgC-3NU9ALhD~P~USGiiFoowagGPfAmogOYAvAYqr9zDFNwx1qmfmk1rq0fg8aokWmhVcLDpRtMrsh~Lw~4HBz5FHMaAhq2gB0vhN2HHPHQq61eglpotwT8iUAmblmgbw_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 27, + "DisplayName": "Elizabeth Rico", + "EmployeeProfile": 28, + "Employee": 28, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_09a0688488492c4dd40985c9a0d14b62.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=hO-O2oxJR3UP3g9lnWGLVcP4mKq8fK5qtyinwczi0NBgC-3NU9ALhD~P~USGiiFoowagGPfAmogOYAvAYqr9zDFNwx1qmfmk1rq0fg8aokWmhVcLDpRtMrsh~Lw~4HBz5FHMaAhq2gB0vhN2HHPHQq61eglpotwT8iUAmblmgbw_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 28, + "Company": 6, + "FirstName": "Elizabeth", + "LastName": "Rico", + "DisplayName": "Elizabeth Rico", + "OtherName": null, + "Salutation": null, + "MainAddress": 174, + "PostalAddress": null, + "Contact": 272878, + "EmergencyAddress": 284, + "DateOfBirth": "1985-10-27T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 977, + "UserId": 27, + "JobAppId": null, + "Active": true, + "StartDate": "2010-06-03T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275975, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:18-07:00", + "Modified": "2022-07-06T10:54:42-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9273, + "Employee": 132, + "EmployeeHistory": 276017, + "EmployeeAgreement": 490, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286300, + "EndTime": 1664319660, + "Mealbreak": "2022-09-27T01:01:00-06:00", + "MealbreakSlots": { + "1664301540": "OUT", + "1664305200": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15240, + "intEnd": 18900, + "intUnixStart": 1664301540, + "intUnixEnd": 1664305200, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.25, + "TotalTimeInv": 9.25, + "Cost": 206.25, + "Roster": 21323, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 26, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2359, + "File": 16776, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 132, + "Created": "2022-09-27T07:45:24-06:00", + "Modified": "2022-09-27T17:11:12-06:00", + "OnCost": 206.25, + "StartTimeLocalized": "2022-09-27T07:45:00-06:00", + "EndTimeLocalized": "2022-09-27T17:01:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 132, + "DisplayName": "Jon", + "EmployeeProfile": 132, + "Employee": 132, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fd566c9266f17faafed72321559bb482.jpg?Expires=1664545771&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=ZvT4WL2UTLQq~hjnwDzKCIjP~rcjzy8nvT2Tf1FQh5kqXvaaR3y9JUPNUoAJMJkeDJVeqPIaw6VjooKrYcMn5FiWzva7-rCtAFyXvTlffzjyWsKQTFpH4z0p8MCuAlg7m0DUrMcNniShXq~eD3G2dyH6oWEwPdAt8egjx9fTjkA_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 26, + "OperationalUnitName": "Sono", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Sono" + }, + "EmployeeInfo": { + "Id": 132, + "DisplayName": "Jon", + "EmployeeProfile": 132, + "Employee": 132, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fd566c9266f17faafed72321559bb482.jpg?Expires=1664545771&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=ZvT4WL2UTLQq~hjnwDzKCIjP~rcjzy8nvT2Tf1FQh5kqXvaaR3y9JUPNUoAJMJkeDJVeqPIaw6VjooKrYcMn5FiWzva7-rCtAFyXvTlffzjyWsKQTFpH4z0p8MCuAlg7m0DUrMcNniShXq~eD3G2dyH6oWEwPdAt8egjx9fTjkA_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 132, + "Company": 2, + "FirstName": "Jonathan", + "LastName": "Ojeda", + "DisplayName": "Jon", + "OtherName": null, + "Salutation": null, + "MainAddress": 330, + "PostalAddress": null, + "Contact": 272928, + "EmergencyAddress": 328, + "DateOfBirth": "1982-01-06T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 8226, + "UserId": 132, + "JobAppId": null, + "Active": true, + "StartDate": "2022-06-13T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276017, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-06-23T15:14:56-06:00", + "Modified": "2022-07-06T11:36:58-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9274, + "Employee": 29, + "EmployeeHistory": 276050, + "EmployeeAgreement": 31, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286420, + "EndTime": 1664321280, + "Mealbreak": "2022-09-27T01:02:00-06:00", + "MealbreakSlots": { + "1664308680": "OUT", + "1664312400": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 22260, + "intEnd": 25980, + "intUnixStart": 1664308680, + "intUnixEnd": 1664312400, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.65, + "TotalTimeInv": 9.22, + "Cost": 147.05, + "Roster": 21060, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 36, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2362, + "File": 16786, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 30, + "Created": "2022-09-27T07:47:11-06:00", + "Modified": "2022-09-27T18:04:03-06:00", + "OnCost": 147.05, + "StartTimeLocalized": "2022-09-27T07:47:00-06:00", + "EndTimeLocalized": "2022-09-27T17:28:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 30, + "DisplayName": "Silvia Salcido de Moreno", + "EmployeeProfile": 29, + "Employee": 29, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3f067188d2050db4e922a9904d14c196.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UcsrcSR8gqr2CtXJRC5u9r0w44WmO69SeBmOZzONvnRUN9soxtxeN4cWNYXLk7kptSLZsp2MH8CsIQb65O~b7Ccs2tkpU9aPsApMWxYLqAoewtSHOI3B3fDxRHXigUBKmy-SswnDqgI79qIjSvF0YlDps-ubZsEyLwnDrd9xq74_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 36, + "OperationalUnitName": "Medical Assistants", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 30, + "DisplayName": "Silvia Salcido de Moreno", + "EmployeeProfile": 29, + "Employee": 29, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3f067188d2050db4e922a9904d14c196.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UcsrcSR8gqr2CtXJRC5u9r0w44WmO69SeBmOZzONvnRUN9soxtxeN4cWNYXLk7kptSLZsp2MH8CsIQb65O~b7Ccs2tkpU9aPsApMWxYLqAoewtSHOI3B3fDxRHXigUBKmy-SswnDqgI79qIjSvF0YlDps-ubZsEyLwnDrd9xq74_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 29, + "Company": 3, + "FirstName": "Silvia", + "LastName": "Salcido de Moreno", + "DisplayName": "Silvia Salcido de Moreno", + "OtherName": null, + "Salutation": null, + "MainAddress": 175, + "PostalAddress": null, + "Contact": 272939, + "EmergencyAddress": 284, + "DateOfBirth": "1986-11-10T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1022, + "UserId": 30, + "JobAppId": null, + "Active": true, + "StartDate": "2013-09-23T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276050, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:18-07:00", + "Modified": "2022-07-22T08:51:06-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9275, + "Employee": 60, + "EmployeeHistory": 275996, + "EmployeeAgreement": 63, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286420, + "EndTime": 1664308680, + "Mealbreak": "2022-09-27T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -120, + "intEnd": -120, + "intUnixStart": 1664286300, + "intUnixEnd": 1664286300, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 6.18, + "TotalTimeInv": 6.22, + "Cost": 173.04, + "Roster": 21126, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 37, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2361, + "File": 16753, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 60, + "Created": "2022-09-27T07:47:18-06:00", + "Modified": "2022-09-27T14:11:33-06:00", + "OnCost": 173.04, + "StartTimeLocalized": "2022-09-27T07:47:00-06:00", + "EndTimeLocalized": "2022-09-27T13:58:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 60, + "DisplayName": "Michelle Woo", + "EmployeeProfile": 60, + "Employee": 60, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_962116eaa6ef3f7c69e80c5ba249e082.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=d-iCH-7s4qiRodf0w88ph7HZLa81OUuXwW6jVe41TXHTMZCfMsAnzchyJXNySONd2XzXZWDwrbSnUVABRspOzUFKYd59X-wJBDHURanzm03oHzU0qMwU7fwUkg77bbwVckCUz7-nzIl6ClPCCi~X0rLyc5a5s28KRIvqLJA0U2Q_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 37, + "OperationalUnitName": "Sono", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Sono" + }, + "EmployeeInfo": { + "Id": 60, + "DisplayName": "Michelle Woo", + "EmployeeProfile": 60, + "Employee": 60, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_962116eaa6ef3f7c69e80c5ba249e082.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=d-iCH-7s4qiRodf0w88ph7HZLa81OUuXwW6jVe41TXHTMZCfMsAnzchyJXNySONd2XzXZWDwrbSnUVABRspOzUFKYd59X-wJBDHURanzm03oHzU0qMwU7fwUkg77bbwVckCUz7-nzIl6ClPCCi~X0rLyc5a5s28KRIvqLJA0U2Q_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 60, + "Company": 3, + "FirstName": "Michelle", + "LastName": "Woo", + "DisplayName": "Michelle Woo", + "OtherName": null, + "Salutation": null, + "MainAddress": 207, + "PostalAddress": null, + "Contact": 272901, + "EmergencyAddress": 294, + "DateOfBirth": "1986-02-12T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1045, + "UserId": 60, + "JobAppId": null, + "Active": true, + "StartDate": "2019-05-13T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275996, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:25-07:00", + "Modified": "2022-07-06T11:07:59-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9276, + "Employee": 80, + "EmployeeHistory": 275995, + "EmployeeAgreement": 83, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286420, + "EndTime": 1664317020, + "Mealbreak": "2022-09-27T01:02:00-06:00", + "MealbreakSlots": { + "1664301600": "OUT", + "1664305320": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15180, + "intEnd": 18900, + "intUnixStart": 1664301600, + "intUnixEnd": 1664305320, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.47, + "TotalTimeInv": 9.22, + "Cost": 104.58, + "Roster": 21215, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 33, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2370, + "File": 16769, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 80, + "Created": "2022-09-27T07:47:39-06:00", + "Modified": "2022-09-27T18:04:03-06:00", + "OnCost": 104.58, + "StartTimeLocalized": "2022-09-27T07:47:00-06:00", + "EndTimeLocalized": "2022-09-27T16:17:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 80, + "DisplayName": "Michelle Mireles", + "EmployeeProfile": 80, + "Employee": 80, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_58b0ad92f564a5ee12977eea5eb008c9.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hp-zipvv5NyrMnl8s9SQJe6RI7d-SwtlmLNWX84XZf-Y83zbAuptR8cV3UHkuJQDQ6rEqpagn2hVJyYGUV0jFEyKUTpxXMi5XsDTKW7Uj6Cp2vLVtv9-mdOmNOqgd3s1roK3OJra~1Atd~lntRligghnxL3fygpH-nCtlfGak~M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 33, + "OperationalUnitName": "Medical Assistants", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 80, + "DisplayName": "Michelle Mireles", + "EmployeeProfile": 80, + "Employee": 80, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_58b0ad92f564a5ee12977eea5eb008c9.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hp-zipvv5NyrMnl8s9SQJe6RI7d-SwtlmLNWX84XZf-Y83zbAuptR8cV3UHkuJQDQ6rEqpagn2hVJyYGUV0jFEyKUTpxXMi5XsDTKW7Uj6Cp2vLVtv9-mdOmNOqgd3s1roK3OJra~1Atd~lntRligghnxL3fygpH-nCtlfGak~M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 80, + "Company": 4, + "FirstName": "Michelle", + "LastName": "Mireles", + "DisplayName": "Michelle Mireles", + "OtherName": null, + "Salutation": null, + "MainAddress": 277, + "PostalAddress": null, + "Contact": 272918, + "EmergencyAddress": 284, + "DateOfBirth": "2000-09-10T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1035, + "UserId": 80, + "JobAppId": null, + "Active": true, + "StartDate": "2021-10-20T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275995, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:29-07:00", + "Modified": "2022-07-06T11:07:44-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9277, + "Employee": 66, + "EmployeeHistory": 276031, + "EmployeeAgreement": 392, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286480, + "EndTime": 1664317080, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664305020": "OUT", + "1664308620": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18540, + "intEnd": 22140, + "intUnixStart": 1664305020, + "intUnixEnd": 1664308620, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.5, + "TotalTimeInv": 8.2, + "Cost": 112.5, + "Roster": 21469, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 36, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2420, + "File": 16770, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 66, + "Created": "2022-09-27T07:48:16-06:00", + "Modified": "2022-09-27T18:04:03-06:00", + "OnCost": 112.5, + "StartTimeLocalized": "2022-09-27T07:48:00-06:00", + "EndTimeLocalized": "2022-09-27T16:18:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 66, + "DisplayName": "Susana Ramirez", + "EmployeeProfile": 66, + "Employee": 66, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f9cbcf12ef4912707ca2709b9797d241.jpg?Expires=1664545544&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Mv08rYSP12VwrHXRruztZBjPnslxIoOnXLpAXXAEZH9PlmzxczuSBuis6amSxatQLnan0awUO-jEQ8Re3bYEDStl2NXOjhNZbzNw5-xxrGe-h8zOgXff0O1dBgkjR8EvXULF19GYabSTID9JNxG3bs2HyOEKB6os9LdWNRyUd2I_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 36, + "OperationalUnitName": "Medical Assistants", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 66, + "DisplayName": "Susana Ramirez", + "EmployeeProfile": 66, + "Employee": 66, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f9cbcf12ef4912707ca2709b9797d241.jpg?Expires=1664545544&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Mv08rYSP12VwrHXRruztZBjPnslxIoOnXLpAXXAEZH9PlmzxczuSBuis6amSxatQLnan0awUO-jEQ8Re3bYEDStl2NXOjhNZbzNw5-xxrGe-h8zOgXff0O1dBgkjR8EvXULF19GYabSTID9JNxG3bs2HyOEKB6os9LdWNRyUd2I_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 66, + "Company": 4, + "FirstName": "Susana", + "LastName": "Ramirez", + "DisplayName": "Susana Ramirez", + "OtherName": null, + "Salutation": null, + "MainAddress": 216, + "PostalAddress": null, + "Contact": 272906, + "EmergencyAddress": 263, + "DateOfBirth": "1976-06-09T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1067, + "UserId": 66, + "JobAppId": null, + "Active": true, + "StartDate": "2020-08-10T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276031, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:26-07:00", + "Modified": "2022-07-11T12:11:35-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9278, + "Employee": 44, + "EmployeeHistory": 276003, + "EmployeeAgreement": 331, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286540, + "EndTime": 1664319720, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664309040": "OUT", + "1664312640": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 22500, + "intEnd": 26100, + "intUnixStart": 1664309040, + "intUnixEnd": 1664312640, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.22, + "TotalTimeInv": 9.18, + "Cost": 172.62, + "Roster": 21096, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 28, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2364, + "File": 16778, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 44, + "Created": "2022-09-27T07:49:22-06:00", + "Modified": "2022-09-27T17:11:12-06:00", + "OnCost": 172.62, + "StartTimeLocalized": "2022-09-27T07:49:00-06:00", + "EndTimeLocalized": "2022-09-27T17:02:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 44, + "DisplayName": "Sergio Armendariz", + "EmployeeProfile": 44, + "Employee": 44, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_dbc48ce256a1ea33d79d941183bd70c1.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Dewnzh5JoxabPwisBVYbOYybmCsJQ7ALzAqoMRLE1~KSP0w8X0PlSZ07jo1Tz-PA4KMwvbB7i26hVNvJouNHAgtGiuu1k8u4XYvnd4uVQHsaW0tT0hFNFkqoI2RoXfocdwbDBX1qPsOwZadj1cO0zz-EP8vHTVEgCu8yo4oD-rQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 28, + "OperationalUnitName": "Medical Assistants", + "Company": 5, + "CompanyName": "Montana", + "LabelWithCompany": "[MON] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 44, + "DisplayName": "Sergio Armendariz", + "EmployeeProfile": 44, + "Employee": 44, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_dbc48ce256a1ea33d79d941183bd70c1.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Dewnzh5JoxabPwisBVYbOYybmCsJQ7ALzAqoMRLE1~KSP0w8X0PlSZ07jo1Tz-PA4KMwvbB7i26hVNvJouNHAgtGiuu1k8u4XYvnd4uVQHsaW0tT0hFNFkqoI2RoXfocdwbDBX1qPsOwZadj1cO0zz-EP8vHTVEgCu8yo4oD-rQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 44, + "Company": 2, + "FirstName": "Sergio", + "LastName": "Armendariz", + "DisplayName": "Sergio Armendariz", + "OtherName": null, + "Salutation": null, + "MainAddress": 189, + "PostalAddress": null, + "Contact": 272890, + "EmergencyAddress": 284, + "DateOfBirth": "1995-01-15T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1011, + "UserId": 44, + "JobAppId": null, + "Active": true, + "StartDate": "2015-12-07T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276003, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:21-07:00", + "Modified": "2022-07-06T11:18:45-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9279, + "Employee": 17, + "EmployeeHistory": 275994, + "EmployeeAgreement": 18, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286540, + "EndTime": 1664319600, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664309100": "OUT", + "1664312700": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 22560, + "intEnd": 26160, + "intUnixStart": 1664309100, + "intUnixEnd": 1664312700, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.18, + "TotalTimeInv": 9.18, + "Cost": 130.88, + "Roster": 21035, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 65, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2365, + "File": 16775, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 18, + "Created": "2022-09-27T07:49:38-06:00", + "Modified": "2022-09-27T17:11:12-06:00", + "OnCost": 130.88, + "StartTimeLocalized": "2022-09-27T07:49:00-06:00", + "EndTimeLocalized": "2022-09-27T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 18, + "DisplayName": "Mayra Ferniza", + "EmployeeProfile": 17, + "Employee": 17, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_72e0ebcee2a1ac5d0207375e1696021d.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=VD3GM9chKcXh8LqkvKxXltjrAuGcwklwrKlVfkBrYUSdbDx1q37RTBfTv2MlgKZgq0SvMLmJ~ent9OdHT-62A27YkfTAStMajzTtbD5Xh91k-Ivg9plfCY6fEj1-9KpWo6GJF18Pwufx1YEys68hmZ~tZuImV5XDUvtg1yvMBmM_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 65, + "OperationalUnitName": "Justine Franco NP", + "Company": 5, + "CompanyName": "Montana", + "LabelWithCompany": "[MON] Justine Franco NP" + }, + "EmployeeInfo": { + "Id": 18, + "DisplayName": "Mayra Ferniza", + "EmployeeProfile": 17, + "Employee": 17, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_72e0ebcee2a1ac5d0207375e1696021d.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=VD3GM9chKcXh8LqkvKxXltjrAuGcwklwrKlVfkBrYUSdbDx1q37RTBfTv2MlgKZgq0SvMLmJ~ent9OdHT-62A27YkfTAStMajzTtbD5Xh91k-Ivg9plfCY6fEj1-9KpWo6GJF18Pwufx1YEys68hmZ~tZuImV5XDUvtg1yvMBmM_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 17, + "Company": 5, + "FirstName": "Mayra", + "LastName": "Ferniza", + "DisplayName": "Mayra Ferniza", + "OtherName": null, + "Salutation": null, + "MainAddress": 160, + "PostalAddress": null, + "Contact": 272873, + "EmergencyAddress": 256, + "DateOfBirth": "1986-09-14T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1015, + "UserId": 18, + "JobAppId": null, + "Active": true, + "StartDate": "2012-08-07T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275994, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:16-07:00", + "Modified": "2022-07-06T11:07:30-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9280, + "Employee": 89, + "EmployeeHistory": 130525, + "EmployeeAgreement": 109, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286720, + "EndTime": 1664323380, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664304900": "OUT", + "1664308500": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18180, + "intEnd": 21780, + "intUnixStart": 1664304900, + "intUnixEnd": 1664308500, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.18, + "TotalTimeInv": 9, + "Cost": 137.7, + "Roster": 21231, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2366, + "File": 16801, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 89, + "Created": "2022-09-27T07:52:45-06:00", + "Modified": "2022-09-27T19:37:13-06:00", + "OnCost": 137.7, + "StartTimeLocalized": "2022-09-27T07:52:00-06:00", + "EndTimeLocalized": "2022-09-27T18:03:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 89, + "DisplayName": "Mona Lisa Hernandez", + "EmployeeProfile": 89, + "Employee": 89, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6bcaee5d709787a53a63d172427feb7e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=VHQMOdIhIB2LES8dS85N2IUjsWSmZ9AOU7Kix0bjetxMA4scwzBwg521nKljpJL7qidyl1DBTL~sSj66vp9VyoFCi3MAWiGFO98C-ADgywplGDuEv8C8MuQPcFdU4uVF-E1KEDhF7rh3Nm~uIg2sT9FB8LtdWoJYDQ~RwMtZV5U_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 89, + "DisplayName": "Mona Lisa Hernandez", + "EmployeeProfile": 89, + "Employee": 89, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6bcaee5d709787a53a63d172427feb7e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=VHQMOdIhIB2LES8dS85N2IUjsWSmZ9AOU7Kix0bjetxMA4scwzBwg521nKljpJL7qidyl1DBTL~sSj66vp9VyoFCi3MAWiGFO98C-ADgywplGDuEv8C8MuQPcFdU4uVF-E1KEDhF7rh3Nm~uIg2sT9FB8LtdWoJYDQ~RwMtZV5U_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 89, + "Company": 6, + "FirstName": "Mona Lisa", + "LastName": "Hernandez", + "DisplayName": "Mona Lisa Hernandez", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 51786, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 984, + "UserId": 89, + "JobAppId": null, + "Active": true, + "StartDate": "2022-03-29T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 130525, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-29T15:06:08-07:00", + "Modified": "2022-04-28T11:15:36-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9281, + "Employee": 70, + "EmployeeHistory": 275990, + "EmployeeAgreement": 73, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286780, + "EndTime": 1664322960, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664305860": "OUT", + "1664309460": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 19080, + "intEnd": 22680, + "intUnixStart": 1664305860, + "intUnixEnd": 1664309460, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.05, + "TotalTimeInv": 8.12, + "Cost": 126.7, + "Roster": 21171, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 33, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2363, + "File": 16794, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 70, + "Created": "2022-09-27T07:53:08-06:00", + "Modified": "2022-09-27T18:04:03-06:00", + "OnCost": 126.7, + "StartTimeLocalized": "2022-09-27T07:53:00-06:00", + "EndTimeLocalized": "2022-09-27T17:56:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 70, + "DisplayName": "Lizbeth Fernandez", + "EmployeeProfile": 70, + "Employee": 70, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6d285879d6d82fb513b2adf1550b5756.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=fvTaWT87c1IldSxd~NoV5DBUnTFM22Yg5Mxd0syl3-kBp1rdh9N1phQ2~sk3v0ca47oFUs4Fv~a7RuwxEp8H3zVgvV5q68eBSmq8RpI9zAJsTCax6uAZvMgfTHH~KPKpiTAyp~E92VfEc27FRAvdm2GznYzS5zFKZzJn6Q84qqk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 33, + "OperationalUnitName": "Medical Assistants", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 70, + "DisplayName": "Lizbeth Fernandez", + "EmployeeProfile": 70, + "Employee": 70, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6d285879d6d82fb513b2adf1550b5756.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=fvTaWT87c1IldSxd~NoV5DBUnTFM22Yg5Mxd0syl3-kBp1rdh9N1phQ2~sk3v0ca47oFUs4Fv~a7RuwxEp8H3zVgvV5q68eBSmq8RpI9zAJsTCax6uAZvMgfTHH~KPKpiTAyp~E92VfEc27FRAvdm2GznYzS5zFKZzJn6Q84qqk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 70, + "Company": 5, + "FirstName": "Lizbeth", + "LastName": "Fernandez", + "DisplayName": "Lizbeth Fernandez", + "OtherName": null, + "Salutation": null, + "MainAddress": 223, + "PostalAddress": null, + "Contact": 272910, + "EmergencyAddress": 266, + "DateOfBirth": "1998-12-15T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1234, + "UserId": 70, + "JobAppId": null, + "Active": true, + "StartDate": "2020-09-21T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275990, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-07-06T11:05:38-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9282, + "Employee": 76, + "EmployeeHistory": 276034, + "EmployeeAgreement": 398, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286780, + "EndTime": 1664320740, + "Mealbreak": "2022-09-27T01:04:00-06:00", + "MealbreakSlots": { + "1664305080": "OUT", + "1664308920": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18300, + "intEnd": 22140, + "intUnixStart": 1664305080, + "intUnixEnd": 1664308920, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.37, + "TotalTimeInv": 9, + "Cost": 0, + "Roster": 21197, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 72, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2421, + "File": 16783, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 76, + "Created": "2022-09-27T07:53:29-06:00", + "Modified": "2022-09-27T18:04:03-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-27T07:53:00-06:00", + "EndTimeLocalized": "2022-09-27T17:19:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 76, + "DisplayName": "Nadia Quintanilla", + "EmployeeProfile": 76, + "Employee": 76, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_40124f0029a54143cf7b7620fda4496b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=LlQK-YBhVSOrIOxpPNF4B27UNupfTVXRTKcy~YbcQrzc-kTwvDpU5ileLFajQyLlj1bAN2kCIcbD8sVldqDnx9mjDD1MxAwltdV0uI3SkEcs-9VzPEmK-TZW1hLQOG4PY1Xswuqt-DDrePJ0kjS~06NEN0H1drbNxZ7doie9Jdg_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 72, + "OperationalUnitName": "Nadia Quintanilla PA-C", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Nadia Quintanilla PA-C" + }, + "EmployeeInfo": { + "Id": 76, + "DisplayName": "Nadia Quintanilla", + "EmployeeProfile": 76, + "Employee": 76, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_40124f0029a54143cf7b7620fda4496b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=LlQK-YBhVSOrIOxpPNF4B27UNupfTVXRTKcy~YbcQrzc-kTwvDpU5ileLFajQyLlj1bAN2kCIcbD8sVldqDnx9mjDD1MxAwltdV0uI3SkEcs-9VzPEmK-TZW1hLQOG4PY1Xswuqt-DDrePJ0kjS~06NEN0H1drbNxZ7doie9Jdg_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 76, + "Company": 5, + "FirstName": "Nadia", + "LastName": "Quintanilla", + "DisplayName": "Nadia Quintanilla", + "OtherName": null, + "Salutation": null, + "MainAddress": 235, + "PostalAddress": null, + "Contact": 272915, + "EmergencyAddress": 271, + "DateOfBirth": "1990-11-22T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1016, + "UserId": 76, + "JobAppId": null, + "Active": true, + "StartDate": "2021-07-26T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276034, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-07-11T16:04:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9283, + "Employee": 78, + "EmployeeHistory": 130449, + "EmployeeAgreement": 300, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286780, + "EndTime": 1664320860, + "Mealbreak": "2022-09-27T00:54:00-06:00", + "MealbreakSlots": { + "1664308800": "OUT", + "1664312040": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 22020, + "intEnd": 25260, + "intUnixStart": 1664308800, + "intUnixEnd": 1664312040, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.57, + "TotalTimeInv": 9.12, + "Cost": 128.55, + "Roster": 21216, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 72, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2392, + "File": 16784, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 78, + "Created": "2022-09-27T07:53:42-06:00", + "Modified": "2022-09-27T18:04:03-06:00", + "OnCost": 128.55, + "StartTimeLocalized": "2022-09-27T07:53:00-06:00", + "EndTimeLocalized": "2022-09-27T17:21:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 78, + "DisplayName": "Hector Franco", + "EmployeeProfile": 78, + "Employee": 78, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0c697a35aaafa3a175cd0ef4c3463996.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NmHVh9Xoif4ePcexxj1rMJ0fcunV6eCn-UMLC4nMp7Wi5IoLveL-PJOEq8dg1n-7OpTl8efqKlJWwOC9N-L5NSteLrwNVer9QaRhW0xsI5xhyDXWYorFTrEjkAaHvYcbsppoYwt~SQFthgAzWr4mlNabDSuj~rGc9nYuDj0MLtQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 72, + "OperationalUnitName": "Nadia Quintanilla PA-C", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Nadia Quintanilla PA-C" + }, + "EmployeeInfo": { + "Id": 78, + "DisplayName": "Hector Franco", + "EmployeeProfile": 78, + "Employee": 78, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0c697a35aaafa3a175cd0ef4c3463996.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NmHVh9Xoif4ePcexxj1rMJ0fcunV6eCn-UMLC4nMp7Wi5IoLveL-PJOEq8dg1n-7OpTl8efqKlJWwOC9N-L5NSteLrwNVer9QaRhW0xsI5xhyDXWYorFTrEjkAaHvYcbsppoYwt~SQFthgAzWr4mlNabDSuj~rGc9nYuDj0MLtQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 78, + "Company": 2, + "FirstName": "Hector", + "LastName": "Franco", + "DisplayName": "Hector Franco", + "OtherName": null, + "Salutation": null, + "MainAddress": 275, + "PostalAddress": null, + "Contact": 16572, + "EmergencyAddress": 276, + "DateOfBirth": "1999-05-21T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 945, + "UserId": 78, + "JobAppId": null, + "Active": true, + "StartDate": "2021-10-11T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 130449, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:29-07:00", + "Modified": "2022-04-28T11:01:18-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9284, + "Employee": 72, + "EmployeeHistory": 276129, + "EmployeeAgreement": 75, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286900, + "EndTime": 1664312760, + "Mealbreak": "2022-09-27T00:51:00-06:00", + "MealbreakSlots": { + "1664309700": "OUT", + "1664312760": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 22800, + "intEnd": 25860, + "intUnixStart": 1664309700, + "intUnixEnd": 1664312760, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 6.33, + "TotalTimeInv": 6.08, + "Cost": 88.62, + "Roster": 21194, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 57, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2372, + "File": 16766, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 72, + "Created": "2022-09-27T07:55:16-06:00", + "Modified": "2022-09-27T18:04:03-06:00", + "OnCost": 88.62, + "StartTimeLocalized": "2022-09-27T07:55:00-06:00", + "EndTimeLocalized": "2022-09-27T15:06:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 72, + "DisplayName": "Samm Viveros", + "EmployeeProfile": 72, + "Employee": 72, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_74a08a03a3c5e8d3bf5727f4cba4151f.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=KSdcgzaaINE~tib0mSFZT-s4x0KOmCcSH3k1JDGe2RAMhTVrbOyjaq-s11mhLZ7XPAUfmDS2fvVgYVGkAaWk7gtp8jjVtO~Aj~oF78-ylIXeVHXjF3hw1SfU9UhC0np1rp3i4wiuJQuMPjGg6ytVcCiWLDoabeN5akC9L1fFY0Y_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 57, + "OperationalUnitName": "Tyler Roberts PA-C", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Tyler Roberts PA-C" + }, + "EmployeeInfo": { + "Id": 72, + "DisplayName": "Samm Viveros", + "EmployeeProfile": 72, + "Employee": 72, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_74a08a03a3c5e8d3bf5727f4cba4151f.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=KSdcgzaaINE~tib0mSFZT-s4x0KOmCcSH3k1JDGe2RAMhTVrbOyjaq-s11mhLZ7XPAUfmDS2fvVgYVGkAaWk7gtp8jjVtO~Aj~oF78-ylIXeVHXjF3hw1SfU9UhC0np1rp3i4wiuJQuMPjGg6ytVcCiWLDoabeN5akC9L1fFY0Y_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 72, + "Company": 4, + "FirstName": "Samantha", + "LastName": "Viveros", + "DisplayName": "Samm Viveros", + "OtherName": null, + "Salutation": null, + "MainAddress": 227, + "PostalAddress": null, + "Contact": 272912, + "EmergencyAddress": 268, + "DateOfBirth": "1996-04-15T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 972, + "UserId": 72, + "JobAppId": null, + "Active": true, + "StartDate": "2020-10-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276129, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-09-20T09:38:11-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9285, + "Employee": 21, + "EmployeeHistory": 275991, + "EmployeeAgreement": 23, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286900, + "EndTime": 1664322780, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664309520": "OUT", + "1664313120": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 22620, + "intEnd": 26220, + "intUnixStart": 1664309520, + "intUnixEnd": 1664313120, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.97, + "TotalTimeInv": 9.08, + "Cost": 170.43, + "Roster": 21040, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 57, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2368, + "File": 16791, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 21, + "Created": "2022-09-27T07:55:22-06:00", + "Modified": "2022-09-27T18:04:03-06:00", + "OnCost": 170.43, + "StartTimeLocalized": "2022-09-27T07:55:00-06:00", + "EndTimeLocalized": "2022-09-27T17:53:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 21, + "DisplayName": "Maria Guillen", + "EmployeeProfile": 21, + "Employee": 21, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e3b5bec34009dbb7139833c1258194bf.jpg?Expires=1664555144&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=QZLu0svi5t00EF-oNgG~isJqr9noBslJNac-HcCFxP6dhJ5glS27ItJtD22GTdCeJBR76NBfHEkjtSVVfY6mRfsm7nTniReC6MUwPZcxtqbEGAa~TX2gJWJeHbovO-g68kMgioz~aFdXNGvAdcKYdUI62fskf7POfIP2xI3jMXU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 57, + "OperationalUnitName": "Tyler Roberts PA-C", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Tyler Roberts PA-C" + }, + "EmployeeInfo": { + "Id": 21, + "DisplayName": "Maria Guillen", + "EmployeeProfile": 21, + "Employee": 21, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e3b5bec34009dbb7139833c1258194bf.jpg?Expires=1664555144&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=QZLu0svi5t00EF-oNgG~isJqr9noBslJNac-HcCFxP6dhJ5glS27ItJtD22GTdCeJBR76NBfHEkjtSVVfY6mRfsm7nTniReC6MUwPZcxtqbEGAa~TX2gJWJeHbovO-g68kMgioz~aFdXNGvAdcKYdUI62fskf7POfIP2xI3jMXU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 21, + "Company": 4, + "FirstName": "Maria", + "LastName": "Guillen", + "DisplayName": "Maria Guillen", + "OtherName": null, + "Salutation": null, + "MainAddress": 165, + "PostalAddress": null, + "Contact": 272875, + "EmergencyAddress": 284, + "DateOfBirth": "1979-03-23T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1091, + "UserId": 21, + "JobAppId": null, + "Active": true, + "StartDate": "2002-11-22T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275991, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:17-07:00", + "Modified": "2022-07-06T11:05:55-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9286, + "Employee": 77, + "EmployeeHistory": 275987, + "EmployeeAgreement": 111, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286900, + "EndTime": 1664317020, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664299740": "OUT", + "1664303340": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 12840, + "intEnd": 16440, + "intUnixStart": 1664299740, + "intUnixEnd": 1664303340, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.37, + "TotalTimeInv": 9.08, + "Cost": 117.92, + "Roster": 21200, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2422, + "File": 16768, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 77, + "Created": "2022-09-27T07:55:55-06:00", + "Modified": "2022-09-27T18:04:04-06:00", + "OnCost": 117.92, + "StartTimeLocalized": "2022-09-27T07:55:00-06:00", + "EndTimeLocalized": "2022-09-27T16:17:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 77, + "DisplayName": "Jazmin Hernandez", + "EmployeeProfile": 77, + "Employee": 77, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a23cb02ace17d5ef811fa933b3120d27.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WOkdY5KzpCghTpqEzV6Q4OxzWKa5vKV7OoXYhPMwJvsq4rudREpRfkCfn3SsKpg0zpBBV3UVB68Hu09Ksi6L4cHrhbniM4I-tQt6pjHspvvoYCusVGTuQJClpXL9i4sax-lsois8uDNTcH5qQWSrWVoOmAxuwfabkepzuUQ6l00_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 77, + "DisplayName": "Jazmin Hernandez", + "EmployeeProfile": 77, + "Employee": 77, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a23cb02ace17d5ef811fa933b3120d27.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WOkdY5KzpCghTpqEzV6Q4OxzWKa5vKV7OoXYhPMwJvsq4rudREpRfkCfn3SsKpg0zpBBV3UVB68Hu09Ksi6L4cHrhbniM4I-tQt6pjHspvvoYCusVGTuQJClpXL9i4sax-lsois8uDNTcH5qQWSrWVoOmAxuwfabkepzuUQ6l00_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 77, + "Company": 5, + "FirstName": "Jazmin", + "LastName": "Hernandez", + "DisplayName": "Jazmin Hernandez", + "OtherName": null, + "Salutation": null, + "MainAddress": 273, + "PostalAddress": null, + "Contact": 272916, + "EmergencyAddress": 274, + "DateOfBirth": "1996-02-08T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1507, + "UserId": 77, + "JobAppId": null, + "Active": true, + "StartDate": "2021-09-13T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275987, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:29-07:00", + "Modified": "2022-07-06T11:03:30-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9287, + "Employee": 82, + "EmployeeHistory": 276110, + "EmployeeAgreement": 322, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664286960, + "EndTime": 1664318460, + "Mealbreak": "2022-09-27T01:03:00-06:00", + "MealbreakSlots": { + "1664304120": "OUT", + "1664307900": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17160, + "intEnd": 20940, + "intUnixStart": 1664304120, + "intUnixEnd": 1664307900, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.7, + "TotalTimeInv": 10, + "Cost": 107.8, + "Roster": 21221, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2369, + "File": 16774, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 82, + "Created": "2022-09-27T07:56:39-06:00", + "Modified": "2022-09-27T18:04:03-06:00", + "OnCost": 107.8, + "StartTimeLocalized": "2022-09-27T07:56:00-06:00", + "EndTimeLocalized": "2022-09-27T16:41:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 82, + "DisplayName": "Valerie Torres", + "EmployeeProfile": 82, + "Employee": 82, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_882d771b3ed9418b8c0bb25151643136.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=HNxAI-PEVEeMkKjfEl5bsDwHytjIlz9R6cQls1d1erg2KLtlgWEZOfxDmlNF4DgZJkyU0kHhuM5U1AXqXkrWedQ6-UI2lYqquLh-k0bKHF4jjvAbjXE06eNaazvb4i7g~Koxd9-j-8W5VxUPtWRnWhld4QCbK6yE5DEQ~t~NHzo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 82, + "DisplayName": "Valerie Torres", + "EmployeeProfile": 82, + "Employee": 82, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_882d771b3ed9418b8c0bb25151643136.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=HNxAI-PEVEeMkKjfEl5bsDwHytjIlz9R6cQls1d1erg2KLtlgWEZOfxDmlNF4DgZJkyU0kHhuM5U1AXqXkrWedQ6-UI2lYqquLh-k0bKHF4jjvAbjXE06eNaazvb4i7g~Koxd9-j-8W5VxUPtWRnWhld4QCbK6yE5DEQ~t~NHzo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 82, + "Company": 6, + "FirstName": "Valerie", + "LastName": "Torres", + "DisplayName": "Valerie Torres", + "OtherName": null, + "Salutation": null, + "MainAddress": 245, + "PostalAddress": null, + "Contact": 272956, + "EmergencyAddress": 284, + "DateOfBirth": "1992-09-15T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 15036, + "UserId": 82, + "JobAppId": null, + "Active": true, + "StartDate": "2022-02-21T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276110, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:30-07:00", + "Modified": "2022-09-07T20:54:54-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9288, + "Employee": 73, + "EmployeeHistory": 276007, + "EmployeeAgreement": 76, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664287200, + "EndTime": 1664321340, + "Mealbreak": "2022-09-27T01:01:00-06:00", + "MealbreakSlots": { + "1664309100": "OUT", + "1664312760": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 21900, + "intEnd": 25560, + "intUnixStart": 1664309100, + "intUnixEnd": 1664312760, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.47, + "TotalTimeInv": 9, + "Cost": 0, + "Roster": 21184, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 57, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2379, + "File": 16787, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 73, + "Created": "2022-09-27T08:00:05-06:00", + "Modified": "2022-09-27T18:04:02-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-27T08:00:00-06:00", + "EndTimeLocalized": "2022-09-27T17:29:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 73, + "DisplayName": "Tyler Roberts", + "EmployeeProfile": 73, + "Employee": 73, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8a97a499511e44a423c5d63c874dc913.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hfpyin5jkIDZs~nLmN907v9I70A8RJZKGvkJkgs-V0eGdDch0wYk~BWRQZ7KgIBkfBDp3PJxvbcSf3iTuN8FVIvlus3YwrBOBKY~GHtetPR90GTW-YUQjSJLtjsjMX7jvCkvxbtOLat5rhoK0GXNthMLgrPSGiIWtOV4UgaG0ck_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 57, + "OperationalUnitName": "Tyler Roberts PA-C", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Tyler Roberts PA-C" + }, + "EmployeeInfo": { + "Id": 73, + "DisplayName": "Tyler Roberts", + "EmployeeProfile": 73, + "Employee": 73, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8a97a499511e44a423c5d63c874dc913.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hfpyin5jkIDZs~nLmN907v9I70A8RJZKGvkJkgs-V0eGdDch0wYk~BWRQZ7KgIBkfBDp3PJxvbcSf3iTuN8FVIvlus3YwrBOBKY~GHtetPR90GTW-YUQjSJLtjsjMX7jvCkvxbtOLat5rhoK0GXNthMLgrPSGiIWtOV4UgaG0ck_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 73, + "Company": 4, + "FirstName": "Tyler", + "LastName": "Roberts", + "DisplayName": "Tyler Roberts", + "OtherName": null, + "Salutation": null, + "MainAddress": 229, + "PostalAddress": null, + "Contact": 272913, + "EmergencyAddress": 269, + "DateOfBirth": "1995-08-28T00:00:00-07:00", + "Gender": 1, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 974, + "UserId": 73, + "JobAppId": null, + "Active": true, + "StartDate": "2020-11-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276007, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-07-06T11:19:56-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9289, + "Employee": 61, + "EmployeeHistory": 275972, + "EmployeeAgreement": 242, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664287260, + "EndTime": 1664308800, + "Mealbreak": "2022-09-27T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -60, + "intEnd": -60, + "intUnixStart": 1664287200, + "intUnixEnd": 1664287200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.98, + "TotalTimeInv": 5.98, + "Cost": 155.48, + "Roster": 21141, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 32, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2381, + "File": 16756, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 61, + "Created": "2022-09-27T08:01:09-06:00", + "Modified": "2022-09-27T14:11:33-06:00", + "OnCost": 155.48, + "StartTimeLocalized": "2022-09-27T08:01:00-06:00", + "EndTimeLocalized": "2022-09-27T14:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 61, + "DisplayName": "Desirae Martin", + "EmployeeProfile": 61, + "Employee": 61, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f9c57d8a4b409ad8dbe9ebff056c28bc.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WUGv4hHKNH8mp5JmDb0rleqiLSSs5kXrcYvtgumjjFG7wjHIVJeGItP5JEmhN5uFGELFowx9f--z2sRrlRRMj0k3quFrhuH7SuuWn8-l8Zl02OQyPXVDieJTKej-P7CtKUBcm-uXgRdwG5AuMoSa7wVkw8MPUurpIBZx6FvJMtE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 32, + "OperationalUnitName": "Sono", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Sono" + }, + "EmployeeInfo": { + "Id": 61, + "DisplayName": "Desirae Martin", + "EmployeeProfile": 61, + "Employee": 61, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f9c57d8a4b409ad8dbe9ebff056c28bc.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WUGv4hHKNH8mp5JmDb0rleqiLSSs5kXrcYvtgumjjFG7wjHIVJeGItP5JEmhN5uFGELFowx9f--z2sRrlRRMj0k3quFrhuH7SuuWn8-l8Zl02OQyPXVDieJTKej-P7CtKUBcm-uXgRdwG5AuMoSa7wVkw8MPUurpIBZx6FvJMtE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 61, + "Company": 5, + "FirstName": "Desirae", + "LastName": "Martin", + "DisplayName": "Desirae Martin", + "OtherName": null, + "Salutation": null, + "MainAddress": 208, + "PostalAddress": null, + "Contact": 272902, + "EmergencyAddress": 260, + "DateOfBirth": "1984-07-05T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 937, + "UserId": 61, + "JobAppId": null, + "Active": true, + "StartDate": "2019-05-28T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275972, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:25-07:00", + "Modified": "2022-07-06T10:53:31-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9290, + "Employee": 69, + "EmployeeHistory": 276128, + "EmployeeAgreement": 72, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664287260, + "EndTime": 1664323320, + "Mealbreak": "2022-09-27T00:56:00-06:00", + "MealbreakSlots": { + "1664310000": "OUT", + "1664313360": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 22740, + "intEnd": 26100, + "intUnixStart": 1664310000, + "intUnixEnd": 1664313360, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.08, + "TotalTimeInv": 9.98, + "Cost": 0, + "Roster": 21167, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 21, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2351, + "File": 16800, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 69, + "Created": "2022-09-27T08:01:20-06:00", + "Modified": "2022-09-27T19:37:12-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-27T08:01:00-06:00", + "EndTimeLocalized": "2022-09-27T18:02:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 69, + "DisplayName": "Humberto Saenz Chavez", + "EmployeeProfile": 69, + "Employee": 69, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e1e503c48d0b7357937408753dc18eb5.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WJRWQesDAJCoeihtG3wVUEJi1PaNhpUSyg7vy9i6n6Cc0iHy9L9e7xAHTag1R2en73xk6bXikPTTOUVAFwkrikSb9UVgSS2MgGiBgGAZufceXx81pn~CR41BjUIDYHCP8c3z2AQ9lIoQmN6Tgw4eZgOPbpkrWvub6Y9GId63YPI_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 21, + "OperationalUnitName": "Dr. Saenz", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Saenz" + }, + "EmployeeInfo": { + "Id": 69, + "DisplayName": "Humberto Saenz Chavez", + "EmployeeProfile": 69, + "Employee": 69, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e1e503c48d0b7357937408753dc18eb5.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WJRWQesDAJCoeihtG3wVUEJi1PaNhpUSyg7vy9i6n6Cc0iHy9L9e7xAHTag1R2en73xk6bXikPTTOUVAFwkrikSb9UVgSS2MgGiBgGAZufceXx81pn~CR41BjUIDYHCP8c3z2AQ9lIoQmN6Tgw4eZgOPbpkrWvub6Y9GId63YPI_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 69, + "Company": 2, + "FirstName": "Humberto", + "LastName": "Saenz Chavez", + "DisplayName": "Humberto Saenz Chavez", + "OtherName": null, + "Salutation": null, + "MainAddress": 222, + "PostalAddress": null, + "Contact": 272964, + "EmergencyAddress": 284, + "DateOfBirth": "1985-07-11T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1229, + "UserId": 69, + "JobAppId": null, + "Active": true, + "StartDate": "2020-07-20T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276128, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-09-18T17:40:41-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9291, + "Employee": 67, + "EmployeeHistory": 275976, + "EmployeeAgreement": 70, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664287260, + "EndTime": 1664323380, + "Mealbreak": "2022-09-27T01:02:00-06:00", + "MealbreakSlots": { + "1664304960": "OUT", + "1664308680": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17700, + "intEnd": 21420, + "intUnixStart": 1664304960, + "intUnixEnd": 1664308680, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9, + "TotalTimeInv": 8.98, + "Cost": 153, + "Roster": 21163, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2377, + "File": 16802, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 67, + "Created": "2022-09-27T08:01:35-06:00", + "Modified": "2022-09-27T19:37:12-06:00", + "OnCost": 153, + "StartTimeLocalized": "2022-09-27T08:01:00-06:00", + "EndTimeLocalized": "2022-09-27T18:03:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 67, + "DisplayName": "Emma Porras", + "EmployeeProfile": 67, + "Employee": 67, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fb8eea4d196b457699d13f8727516a03.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=BtfXVKYh8mdrITmQa5DiAJpOSnrEExPBZHUUx1V8JJkSPeaa6U1DQirPPPDaY9fasNyeuGOZXztgPIRXANO7ZIjAVByasFMBDwaU~kXIRQ1SpiGYRH-70hCH6PFRuwLO~jsg-rv6iwiHtsG-3yneBv3o9-HkmJzkAgY97Y5k6Ow_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 67, + "DisplayName": "Emma Porras", + "EmployeeProfile": 67, + "Employee": 67, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fb8eea4d196b457699d13f8727516a03.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=BtfXVKYh8mdrITmQa5DiAJpOSnrEExPBZHUUx1V8JJkSPeaa6U1DQirPPPDaY9fasNyeuGOZXztgPIRXANO7ZIjAVByasFMBDwaU~kXIRQ1SpiGYRH-70hCH6PFRuwLO~jsg-rv6iwiHtsG-3yneBv3o9-HkmJzkAgY97Y5k6Ow_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 67, + "Company": 6, + "FirstName": "Emma", + "LastName": "Porras", + "DisplayName": "Emma Porras", + "OtherName": null, + "Salutation": null, + "MainAddress": 218, + "PostalAddress": null, + "Contact": 272907, + "EmergencyAddress": 264, + "DateOfBirth": "1981-10-11T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 958, + "UserId": 67, + "JobAppId": null, + "Active": true, + "StartDate": "2022-02-08T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275976, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-07-06T10:55:06-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9292, + "Employee": 68, + "EmployeeHistory": 276018, + "EmployeeAgreement": 71, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664287260, + "EndTime": 1664323500, + "Mealbreak": "2022-09-27T01:04:00-06:00", + "MealbreakSlots": { + "1664310120": "OUT", + "1664313960": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 22860, + "intEnd": 26700, + "intUnixStart": 1664310120, + "intUnixEnd": 1664313960, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9, + "TotalTimeInv": 9.98, + "Cost": 126, + "Roster": 21169, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 21, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2373, + "File": 16805, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 68, + "Created": "2022-09-27T08:01:48-06:00", + "Modified": "2022-09-27T19:37:13-06:00", + "OnCost": 126, + "StartTimeLocalized": "2022-09-27T08:01:00-06:00", + "EndTimeLocalized": "2022-09-27T18:05:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 68, + "DisplayName": "Stephanie Mireles", + "EmployeeProfile": 68, + "Employee": 68, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_698c34535292002e69ac63742be26976.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=e9Uf90rsb6Hxy3xuQS3sdqmEydJrHYPo4HhlkXSNn5ocwi3-~X9nLua4XoshGw1WDNjuoNpnR0o-J3C3JaTndZtWT1tXaUPoMcCUseJ8GQ5VVmRv8MDVw8Z6pUW814A6Nj9fxoNVDUJ09ylK7mIDEGkLfn4OIDVpuXrlw4vWVp0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 21, + "OperationalUnitName": "Dr. Saenz", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Saenz" + }, + "EmployeeInfo": { + "Id": 68, + "DisplayName": "Stephanie Mireles", + "EmployeeProfile": 68, + "Employee": 68, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_698c34535292002e69ac63742be26976.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=e9Uf90rsb6Hxy3xuQS3sdqmEydJrHYPo4HhlkXSNn5ocwi3-~X9nLua4XoshGw1WDNjuoNpnR0o-J3C3JaTndZtWT1tXaUPoMcCUseJ8GQ5VVmRv8MDVw8Z6pUW814A6Nj9fxoNVDUJ09ylK7mIDEGkLfn4OIDVpuXrlw4vWVp0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 68, + "Company": 2, + "FirstName": "Stephanie", + "LastName": "Mireles", + "DisplayName": "Stephanie Mireles", + "OtherName": null, + "Salutation": null, + "MainAddress": 220, + "PostalAddress": null, + "Contact": 272908, + "EmergencyAddress": 265, + "DateOfBirth": "1999-08-14T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1173, + "UserId": 68, + "JobAppId": null, + "Active": true, + "StartDate": "2020-08-05T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276018, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-07-06T13:29:25-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9293, + "Employee": 128, + "EmployeeHistory": 276020, + "EmployeeAgreement": 472, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664287320, + "EndTime": 1664320140, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664304600": "OUT", + "1664308200": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17280, + "intEnd": 20880, + "intUnixStart": 1664304600, + "intUnixEnd": 1664308200, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.12, + "TotalTimeInv": 8.97, + "Cost": 0, + "Roster": 21303, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2356, + "File": 16780, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 128, + "Created": "2022-09-27T08:02:11-06:00", + "Modified": "2022-09-27T17:11:12-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-27T08:02:00-06:00", + "EndTimeLocalized": "2022-09-27T17:09:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 128, + "DisplayName": "Cynthia Dufour", + "EmployeeProfile": 128, + "Employee": 128, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a062de8916b1f73d00ffbb0d423b5fc9.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=e33negGuVbvRCqGLhUnmz5-e3C~L6OUMx8u1s-tg3l8Q09gGXu1hCEfxYyZB1e5xzlKYHmSAb0j36gxODXhZ8BWImlhg5GEzblkkzbSgXIE6Xanfbxnjz6grfquAgovfvJPkXOZ5lNo8Bi2i8uyfTgSvo6fSkhnGazdcWSORpuY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 128, + "DisplayName": "Cynthia Dufour", + "EmployeeProfile": 128, + "Employee": 128, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a062de8916b1f73d00ffbb0d423b5fc9.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=e33negGuVbvRCqGLhUnmz5-e3C~L6OUMx8u1s-tg3l8Q09gGXu1hCEfxYyZB1e5xzlKYHmSAb0j36gxODXhZ8BWImlhg5GEzblkkzbSgXIE6Xanfbxnjz6grfquAgovfvJPkXOZ5lNo8Bi2i8uyfTgSvo6fSkhnGazdcWSORpuY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 128, + "Company": 6, + "FirstName": "Cynthia", + "LastName": "Dufour", + "DisplayName": "Cynthia Dufour", + "OtherName": null, + "Salutation": null, + "MainAddress": 320, + "PostalAddress": null, + "Contact": 272925, + "EmergencyAddress": 321, + "DateOfBirth": "1982-09-10T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 6559, + "UserId": 128, + "JobAppId": null, + "Active": true, + "StartDate": "2022-05-31T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276020, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-06-07T10:00:23-06:00", + "Modified": "2022-07-07T09:17:48-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9294, + "Employee": 54, + "EmployeeHistory": 275301, + "EmployeeAgreement": 56, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664287440, + "EndTime": 1664325120, + "Mealbreak": "2022-09-27T01:01:00-06:00", + "MealbreakSlots": { + "1664305500": "OUT", + "1664309160": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18060, + "intEnd": 21720, + "intUnixStart": 1664305500, + "intUnixEnd": 1664309160, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.45, + "TotalTimeInv": 9.93, + "Cost": 217.35, + "Roster": 21128, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2382, + "File": 16809, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 54, + "Created": "2022-09-27T08:04:31-06:00", + "Modified": "2022-09-27T19:37:12-06:00", + "OnCost": 217.35, + "StartTimeLocalized": "2022-09-27T08:04:00-06:00", + "EndTimeLocalized": "2022-09-27T18:32:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 54, + "DisplayName": "Lyanne Lesso", + "EmployeeProfile": 54, + "Employee": 54, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_39d0ccc171382460cd77f920151d420e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=d2-i~NWb1NBolskITRaERgrqxhBRTTLMKG~L5PuWDNvEdZkztBwzqCacLE-avQkHxGTEINKClOQ6-z2wlDttPsWSQDf3wpo5uzOgyobynJvGZ~pA7hBuQpe2R-QFwcMB2oitqxJXiUuHPD3VcnTKFQvCtQsAJw8OLvqVwjo0Xuo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 54, + "DisplayName": "Lyanne Lesso", + "EmployeeProfile": 54, + "Employee": 54, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_39d0ccc171382460cd77f920151d420e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=d2-i~NWb1NBolskITRaERgrqxhBRTTLMKG~L5PuWDNvEdZkztBwzqCacLE-avQkHxGTEINKClOQ6-z2wlDttPsWSQDf3wpo5uzOgyobynJvGZ~pA7hBuQpe2R-QFwcMB2oitqxJXiUuHPD3VcnTKFQvCtQsAJw8OLvqVwjo0Xuo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 54, + "Company": 6, + "FirstName": "Lyanne", + "LastName": "Lesso", + "DisplayName": "Lyanne Lesso", + "OtherName": null, + "Salutation": null, + "MainAddress": 200, + "PostalAddress": null, + "Contact": 155243, + "EmergencyAddress": 284, + "DateOfBirth": "1991-04-01T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1048, + "UserId": 54, + "JobAppId": null, + "Active": true, + "StartDate": "2020-09-21T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275301, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:23-07:00", + "Modified": "2022-06-20T18:04:57-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9295, + "Employee": 102, + "EmployeeHistory": 275684, + "EmployeeAgreement": 414, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664287620, + "EndTime": 1664319720, + "Mealbreak": "2022-09-27T01:04:00-06:00", + "MealbreakSlots": { + "1664309040": "OUT", + "1664312880": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 21420, + "intEnd": 25260, + "intUnixStart": 1664309040, + "intUnixEnd": 1664312880, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.85, + "TotalTimeInv": 8.88, + "Cost": 0, + "Roster": 21260, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 65, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2380, + "File": 16777, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 102, + "Created": "2022-09-27T08:07:59-06:00", + "Modified": "2022-09-27T17:11:12-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-27T08:07:00-06:00", + "EndTimeLocalized": "2022-09-27T17:02:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 102, + "DisplayName": "Justine Franco", + "EmployeeProfile": 102, + "Employee": 102, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6ffd09c47f45d603be0685af846b9b3f.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gxi-qlNQ1rYSHrQy5yWfNmHd~6bk1JyeQRirQNbGjiaXx5a-g019V62flgh9hcLTu6D3~SVMYcZh69qlNrJxL5~BhsMhRBDcldyqVMYiniI3wizIMJJpls1NF~mCTp3ghtFS-GhyuM0tqGHnPSfKM7YMJMvRiifqN3Vx8Jg1CBs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 65, + "OperationalUnitName": "Justine Franco NP", + "Company": 5, + "CompanyName": "Montana", + "LabelWithCompany": "[MON] Justine Franco NP" + }, + "EmployeeInfo": { + "Id": 102, + "DisplayName": "Justine Franco", + "EmployeeProfile": 102, + "Employee": 102, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6ffd09c47f45d603be0685af846b9b3f.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gxi-qlNQ1rYSHrQy5yWfNmHd~6bk1JyeQRirQNbGjiaXx5a-g019V62flgh9hcLTu6D3~SVMYcZh69qlNrJxL5~BhsMhRBDcldyqVMYiniI3wizIMJJpls1NF~mCTp3ghtFS-GhyuM0tqGHnPSfKM7YMJMvRiifqN3Vx8Jg1CBs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 102, + "Company": 3, + "FirstName": "Justine", + "LastName": "Franco", + "DisplayName": "Justine Franco", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272655, + "EmergencyAddress": 284, + "DateOfBirth": "1992-02-04T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 8793, + "UserId": 102, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-11T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275684, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-11T12:54:41-06:00", + "Modified": "2022-06-30T22:42:25-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9296, + "Employee": 51, + "EmployeeHistory": 276033, + "EmployeeAgreement": 198, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664287680, + "EndTime": 1664320320, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664305740": "OUT", + "1664309340": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18060, + "intEnd": 21660, + "intUnixStart": 1664305740, + "intUnixEnd": 1664309340, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.07, + "TotalTimeInv": 8.87, + "Cost": 125.085, + "Roster": 21125, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 65, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2378, + "File": 16782, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 51, + "Created": "2022-09-27T08:08:25-06:00", + "Modified": "2022-09-27T18:04:03-06:00", + "OnCost": 125.085, + "StartTimeLocalized": "2022-09-27T08:08:00-06:00", + "EndTimeLocalized": "2022-09-27T17:12:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 51, + "DisplayName": "Elizabeth Arreola", + "EmployeeProfile": 51, + "Employee": 51, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a0c25db5d291f2c1bf1b3a0453209155.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WuEMSi0aNK3ifgyhxac8KpYAlmlY-SKs1B3HezyATcLxjfrnf7jXvESIKjZJKJLv7ltTeQYcYIN4j7Tvgrg-Ru2eaP3WeEMsxo0FeHozg9ieBQ3fnAWjjVKh-y2S4Rc~HBrTZlgGd9G4X6nkx-zE6LBgtBfP6Nbt-Qxig-I5rY0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 65, + "OperationalUnitName": "Justine Franco NP", + "Company": 5, + "CompanyName": "Montana", + "LabelWithCompany": "[MON] Justine Franco NP" + }, + "EmployeeInfo": { + "Id": 51, + "DisplayName": "Elizabeth Arreola", + "EmployeeProfile": 51, + "Employee": 51, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a0c25db5d291f2c1bf1b3a0453209155.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WuEMSi0aNK3ifgyhxac8KpYAlmlY-SKs1B3HezyATcLxjfrnf7jXvESIKjZJKJLv7ltTeQYcYIN4j7Tvgrg-Ru2eaP3WeEMsxo0FeHozg9ieBQ3fnAWjjVKh-y2S4Rc~HBrTZlgGd9G4X6nkx-zE6LBgtBfP6Nbt-Qxig-I5rY0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 51, + "Company": 2, + "FirstName": "Elizabeth", + "LastName": "Arreola", + "DisplayName": "Elizabeth Arreola", + "OtherName": null, + "Salutation": null, + "MainAddress": 197, + "PostalAddress": null, + "Contact": 272897, + "EmergencyAddress": 284, + "DateOfBirth": "1985-08-06T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1858, + "UserId": 51, + "JobAppId": null, + "Active": true, + "StartDate": "2018-04-23T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276033, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:23-07:00", + "Modified": "2022-07-11T12:25:40-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9297, + "Employee": 98, + "EmployeeHistory": 245298, + "EmployeeAgreement": 299, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664287800, + "EndTime": 1664318400, + "Mealbreak": "2022-09-27T00:56:00-06:00", + "MealbreakSlots": { + "1664309040": "OUT", + "1664312400": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 21240, + "intEnd": 24600, + "intUnixStart": 1664309040, + "intUnixEnd": 1664312400, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.57, + "TotalTimeInv": 5.83, + "Cost": 105.98, + "Roster": 21459, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 72, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2423, + "File": 16773, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 98, + "Created": "2022-09-27T08:10:18-06:00", + "Modified": "2022-09-27T18:04:03-06:00", + "OnCost": 105.98, + "StartTimeLocalized": "2022-09-27T08:10:00-06:00", + "EndTimeLocalized": "2022-09-27T16:40:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 98, + "DisplayName": "Esther Lujan", + "EmployeeProfile": 98, + "Employee": 98, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a11cbc0dc41039db298bfa15665ea864.jpg?Expires=1664546435&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=b8xj83hOY3IQIuUH91upA8u9kApr1JOYkDbh4AT~7hvfo5uLJCKo~aF8haP2TJLIdZLTslXnBYIkZNIyWlpSb5w4sBvZ-x0EzgyMo8Ri5uXqFLE0TK9CEnXMzg-de4uIftU2fFsdGCwZuivk1RPLNL4~3k2g4bN-PNoc~gJpi~4_", + "Pronouns": 2, + "CustomPronouns": null + }, + "OperationalUnitInfo": { + "Id": 72, + "OperationalUnitName": "Nadia Quintanilla PA-C", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Nadia Quintanilla PA-C" + }, + "EmployeeInfo": { + "Id": 98, + "DisplayName": "Esther Lujan", + "EmployeeProfile": 98, + "Employee": 98, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a11cbc0dc41039db298bfa15665ea864.jpg?Expires=1664546435&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=b8xj83hOY3IQIuUH91upA8u9kApr1JOYkDbh4AT~7hvfo5uLJCKo~aF8haP2TJLIdZLTslXnBYIkZNIyWlpSb5w4sBvZ-x0EzgyMo8Ri5uXqFLE0TK9CEnXMzg-de4uIftU2fFsdGCwZuivk1RPLNL4~3k2g4bN-PNoc~gJpi~4_", + "Pronouns": 2, + "CustomPronouns": null + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 98, + "Company": 5, + "FirstName": "Esther", + "LastName": "Lujan", + "DisplayName": "Esther Lujan", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 242283, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": 2, + "Pronouns": 2, + "CustomPronouns": null, + "Photo": 1068, + "UserId": 98, + "JobAppId": null, + "Active": true, + "StartDate": "2022-03-31T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 245298, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-31T16:25:29-07:00", + "Modified": "2022-06-10T22:00:18-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9298, + "Employee": 92, + "EmployeeHistory": 276074, + "EmployeeAgreement": 466, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664288100, + "EndTime": 1664305500, + "Mealbreak": "2022-09-27T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -900, + "intEnd": 2700, + "intUnixStart": 1664287200, + "intUnixEnd": 1664290800, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 4.83, + "TotalTimeInv": 5.75, + "Cost": 67.62, + "Roster": 21223, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2383, + "File": 16744, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 92, + "Created": "2022-09-27T08:15:56-06:00", + "Modified": "2022-09-27T13:27:25-06:00", + "OnCost": 67.62, + "StartTimeLocalized": "2022-09-27T08:15:00-06:00", + "EndTimeLocalized": "2022-09-27T13:05:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 92, + "DisplayName": "Lesley Ortiz", + "EmployeeProfile": 92, + "Employee": 92, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_da29dc55d7af984cbe88a019ba67854d.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=g1ZmEDsVkl8Va7V4QdQd31ynirzIw1zFFq~af8Pe2r73XbEHZjiVzAgstNXsKipX1TsdUtcDBg7KOU3oQ3paIf3dSIiQubl3Wlu3Knjz8hwXJleEQBXRalHowdCBiC5v-hUliKCFHKPfwpbGJCFbmCrQAsRviJVl-GPVZnoMulU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 92, + "DisplayName": "Lesley Ortiz", + "EmployeeProfile": 92, + "Employee": 92, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_da29dc55d7af984cbe88a019ba67854d.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=g1ZmEDsVkl8Va7V4QdQd31ynirzIw1zFFq~af8Pe2r73XbEHZjiVzAgstNXsKipX1TsdUtcDBg7KOU3oQ3paIf3dSIiQubl3Wlu3Knjz8hwXJleEQBXRalHowdCBiC5v-hUliKCFHKPfwpbGJCFbmCrQAsRviJVl-GPVZnoMulU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 92, + "Company": 5, + "FirstName": "Lesley", + "LastName": "Ortiz", + "DisplayName": "Lesley Ortiz", + "OtherName": null, + "Salutation": null, + "MainAddress": 291, + "PostalAddress": null, + "Contact": 75336, + "EmergencyAddress": 284, + "DateOfBirth": "1996-11-09T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1225, + "UserId": 92, + "JobAppId": null, + "Active": true, + "StartDate": "2022-02-21T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276074, + "CustomFieldData": null, + "Creator": 29, + "Created": "2022-03-30T15:25:13-07:00", + "Modified": "2022-08-17T12:47:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 29, + "DisplayName": "Aracely Tirrell", + "EmployeeProfile": 30, + "Employee": 30, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0d6425f581e9558209dd05be4e252239.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L9-lhv8DadL3tonHbygPqGiLf7bJAmakD7hzTwKXLJc3~GIZU6n16NldpwO6IqaxrQ61jRs9SH2sv0q1xRVN2sf7pv8rvyPxVEgPib~cuBzneMQ4FI5NBhKOIbx0ggCpukXtdUwwLgmjIGcOcdIqmZ8qCNbnre9QR63AEXdvgJU_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9299, + "Employee": 59, + "EmployeeHistory": 276087, + "EmployeeAgreement": 62, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664288160, + "EndTime": 1664308860, + "Mealbreak": "2022-09-27T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -960, + "intEnd": -960, + "intUnixStart": 1664287200, + "intUnixEnd": 1664287200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.75, + "TotalTimeInv": 5.73, + "Cost": 163.875, + "Roster": 21130, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 26, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2385, + "File": 16759, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 59, + "Created": "2022-09-27T08:16:11-06:00", + "Modified": "2022-09-27T18:04:04-06:00", + "OnCost": 163.875, + "StartTimeLocalized": "2022-09-27T08:16:00-06:00", + "EndTimeLocalized": "2022-09-27T14:01:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 59, + "DisplayName": "Esperanza Robledo", + "EmployeeProfile": 59, + "Employee": 59, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f1facd44e26dc49f636aa66f029dfb72.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=FSELOBnr~C4YwY2XfOEcL9S47MKYZ5lagrdAzrN3~MqkzKt7RiPVy5kvugg8IDnQL7UibHuhyDbIJHGBTxgKh3Qvj5pQXJyCjVNB1dIbygmlxbSqvhE6HnjjQ498KGnOi9JmbSi86mcDCf2m~pR8TYVRRtVv7L2MVw0RjkcUjO8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 26, + "OperationalUnitName": "Sono", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Sono" + }, + "EmployeeInfo": { + "Id": 59, + "DisplayName": "Esperanza Robledo", + "EmployeeProfile": 59, + "Employee": 59, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f1facd44e26dc49f636aa66f029dfb72.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=FSELOBnr~C4YwY2XfOEcL9S47MKYZ5lagrdAzrN3~MqkzKt7RiPVy5kvugg8IDnQL7UibHuhyDbIJHGBTxgKh3Qvj5pQXJyCjVNB1dIbygmlxbSqvhE6HnjjQ498KGnOi9JmbSi86mcDCf2m~pR8TYVRRtVv7L2MVw0RjkcUjO8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 59, + "Company": 2, + "FirstName": "Esperanza", + "LastName": "Robledo", + "DisplayName": "Esperanza Robledo", + "OtherName": null, + "Salutation": null, + "MainAddress": 206, + "PostalAddress": null, + "Contact": 272945, + "EmergencyAddress": null, + "DateOfBirth": "1987-08-02T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 938, + "UserId": 59, + "JobAppId": null, + "Active": true, + "StartDate": "2019-03-06T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276087, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:25-07:00", + "Modified": "2022-08-19T18:56:16-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9300, + "Employee": 22, + "EmployeeHistory": 276010, + "EmployeeAgreement": 24, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664288160, + "EndTime": 1664312880, + "Mealbreak": "2022-09-27T00:31:00-06:00", + "MealbreakSlots": { + "1664303160": "OUT", + "1664305020": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15000, + "intEnd": 16860, + "intUnixStart": 1664303160, + "intUnixEnd": 1664305020, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 6.35, + "TotalTimeInv": 1, + "Cost": 95.25, + "Roster": 22259, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2384, + "File": 16767, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 22, + "Created": "2022-09-27T08:16:35-06:00", + "Modified": "2022-09-27T19:44:04-06:00", + "OnCost": 95.25, + "StartTimeLocalized": "2022-09-27T08:16:00-06:00", + "EndTimeLocalized": "2022-09-27T15:08:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 22, + "DisplayName": "Viridiana Gomez", + "EmployeeProfile": 22, + "Employee": 22, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e925be21f3ce5526e949aee744bc391c.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=W1OCaCQwLucZAS20QlTYfrC0HbdIHBl5o1rfJrq9MugxcwYzZdK8Hkm-sJM19iEFTokz5Xx9c8oI7xnkbAi3snyFD9YRXB8Wbk-lS3o0ZSPwFAELbaW1YiOTYcIKcMR5rr9siVA4aj9ZB4GT2b2Pjmx0nh0aF-epsOMvdeH~KzA_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 22, + "DisplayName": "Viridiana Gomez", + "EmployeeProfile": 22, + "Employee": 22, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e925be21f3ce5526e949aee744bc391c.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=W1OCaCQwLucZAS20QlTYfrC0HbdIHBl5o1rfJrq9MugxcwYzZdK8Hkm-sJM19iEFTokz5Xx9c8oI7xnkbAi3snyFD9YRXB8Wbk-lS3o0ZSPwFAELbaW1YiOTYcIKcMR5rr9siVA4aj9ZB4GT2b2Pjmx0nh0aF-epsOMvdeH~KzA_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 22, + "Company": 6, + "FirstName": "Viridiana", + "LastName": "Gomez", + "DisplayName": "Viridiana Gomez", + "OtherName": null, + "Salutation": null, + "MainAddress": 166, + "PostalAddress": null, + "Contact": 272874, + "EmergencyAddress": null, + "DateOfBirth": "1983-09-15T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1003, + "UserId": 22, + "JobAppId": null, + "Active": true, + "StartDate": "2005-07-11T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276010, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:17-07:00", + "Modified": "2022-07-06T11:20:52-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9301, + "Employee": 50, + "EmployeeHistory": 275971, + "EmployeeAgreement": 52, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664288160, + "EndTime": 1664322360, + "Mealbreak": "2022-09-27T01:01:00-06:00", + "MealbreakSlots": { + "1664303520": "OUT", + "1664307180": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15360, + "intEnd": 19020, + "intUnixStart": 1664303520, + "intUnixEnd": 1664307180, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.48, + "TotalTimeInv": 7.73, + "Cost": 122.96, + "Roster": 21117, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2387, + "File": 16789, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 50, + "Created": "2022-09-27T08:16:46-06:00", + "Modified": "2022-09-27T18:04:04-06:00", + "OnCost": 122.96, + "StartTimeLocalized": "2022-09-27T08:16:00-06:00", + "EndTimeLocalized": "2022-09-27T17:46:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 50, + "DisplayName": "Denise Renteria", + "EmployeeProfile": 50, + "Employee": 50, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7f8f9f6564688dcd70f48e7a4d52acfd.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gShOlNo2PM5xOUXuejZ1gHH9txIU5SEbDlsbr3axId6RzVLc8jMhGeoPo-W0vhCFsMgk~q5MtEYQYGsizGPy3vImCdfITpdG8fuaTahG51G78Jx0EbuWZq~GOdtHL~8M7kbl~c0TKP7FPrhj4LY2Nm27cPpk~XC91o7WzUM-O6M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 50, + "DisplayName": "Denise Renteria", + "EmployeeProfile": 50, + "Employee": 50, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7f8f9f6564688dcd70f48e7a4d52acfd.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gShOlNo2PM5xOUXuejZ1gHH9txIU5SEbDlsbr3axId6RzVLc8jMhGeoPo-W0vhCFsMgk~q5MtEYQYGsizGPy3vImCdfITpdG8fuaTahG51G78Jx0EbuWZq~GOdtHL~8M7kbl~c0TKP7FPrhj4LY2Nm27cPpk~XC91o7WzUM-O6M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 50, + "Company": 6, + "FirstName": "Denise", + "LastName": "Renteria", + "DisplayName": "Denise Renteria", + "OtherName": null, + "Salutation": null, + "MainAddress": 195, + "PostalAddress": null, + "Contact": 272896, + "EmergencyAddress": 259, + "DateOfBirth": "1992-12-08T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 967, + "UserId": 50, + "JobAppId": null, + "Active": true, + "StartDate": "2022-01-14T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275971, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:23-07:00", + "Modified": "2022-07-06T10:53:11-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9302, + "Employee": 64, + "EmployeeHistory": 276049, + "EmployeeAgreement": 67, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664288280, + "EndTime": 1664325060, + "Mealbreak": "2022-09-27T01:07:00-06:00", + "MealbreakSlots": { + "1664309100": "OUT", + "1664313120": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 20820, + "intEnd": 24840, + "intUnixStart": 1664309100, + "intUnixEnd": 1664313120, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.1, + "TotalTimeInv": 9.7, + "Cost": 145.6, + "Roster": 21153, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 21, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2386, + "File": 16808, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 64, + "Created": "2022-09-27T08:18:42-06:00", + "Modified": "2022-09-27T19:37:13-06:00", + "OnCost": 145.6, + "StartTimeLocalized": "2022-09-27T08:18:00-06:00", + "EndTimeLocalized": "2022-09-27T18:31:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 64, + "DisplayName": "Alicia Rangel", + "EmployeeProfile": 64, + "Employee": 64, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3d92b57090833b853d28e284d6852c46.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NS0aA5gxD8rkeZ4naiyd0-VpLevPqaOgwIkOFY9nEThlILFXLKn~tTeFTyggcJZgLaoaJqvHWtEqiLTmMZhGAC8ygNNgUtSbXw9OpSyFNqZ5vurpNtWwnW8OoMeQSDkt8l1rVl7xP8BJ2n~-q6CuqeC-bj899wsx3N-MFwLlIyQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 21, + "OperationalUnitName": "Dr. Saenz", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Saenz" + }, + "EmployeeInfo": { + "Id": 64, + "DisplayName": "Alicia Rangel", + "EmployeeProfile": 64, + "Employee": 64, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3d92b57090833b853d28e284d6852c46.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NS0aA5gxD8rkeZ4naiyd0-VpLevPqaOgwIkOFY9nEThlILFXLKn~tTeFTyggcJZgLaoaJqvHWtEqiLTmMZhGAC8ygNNgUtSbXw9OpSyFNqZ5vurpNtWwnW8OoMeQSDkt8l1rVl7xP8BJ2n~-q6CuqeC-bj899wsx3N-MFwLlIyQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 64, + "Company": 2, + "FirstName": "Alicia", + "LastName": "Rangel", + "DisplayName": "Alicia Rangel", + "OtherName": null, + "Salutation": null, + "MainAddress": 212, + "PostalAddress": null, + "Contact": 272904, + "EmergencyAddress": 261, + "DateOfBirth": "1993-07-27T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1331, + "UserId": 64, + "JobAppId": null, + "Active": true, + "StartDate": "2019-09-27T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276049, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:26-07:00", + "Modified": "2022-07-19T17:37:10-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9303, + "Employee": 36, + "EmployeeHistory": 275969, + "EmployeeAgreement": 38, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664288340, + "EndTime": 1664322960, + "Mealbreak": "2022-09-27T00:34:00-06:00", + "MealbreakSlots": { + "1664303460": "OUT", + "1664305500": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15120, + "intEnd": 17160, + "intUnixStart": 1664303460, + "intUnixEnd": 1664305500, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.05, + "TotalTimeInv": 7.68, + "Cost": 135.75, + "Roster": 21094, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2388, + "File": 16793, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 36, + "Created": "2022-09-27T08:19:40-06:00", + "Modified": "2022-09-27T18:04:04-06:00", + "OnCost": 135.75, + "StartTimeLocalized": "2022-09-27T08:19:00-06:00", + "EndTimeLocalized": "2022-09-27T17:56:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 36, + "DisplayName": "Daisy Alcala", + "EmployeeProfile": 36, + "Employee": 36, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_d697cda0a688532ffbcdb39044b0097c.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gzHOysNM3eoVLNpRxr63O0oPN91DjpY2lgGVNnByteILN8hO6-nnK4nfrhhxLQI1AX0IhFQ~AC64Jvir39HE6Kyfk9dt2p0Eqn2UPtDNrPs9y3RyEv0ahNMcE4HiPhpIHd4VoJ2gBMcCVZzdZgsaYSSTPxjvzkK5hX4ZC7PEdYE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 36, + "DisplayName": "Daisy Alcala", + "EmployeeProfile": 36, + "Employee": 36, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_d697cda0a688532ffbcdb39044b0097c.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gzHOysNM3eoVLNpRxr63O0oPN91DjpY2lgGVNnByteILN8hO6-nnK4nfrhhxLQI1AX0IhFQ~AC64Jvir39HE6Kyfk9dt2p0Eqn2UPtDNrPs9y3RyEv0ahNMcE4HiPhpIHd4VoJ2gBMcCVZzdZgsaYSSTPxjvzkK5hX4ZC7PEdYE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 36, + "Company": 6, + "FirstName": "Daisy", + "LastName": "Alcala", + "DisplayName": "Daisy Alcala", + "OtherName": null, + "Salutation": null, + "MainAddress": 182, + "PostalAddress": null, + "Contact": 272884, + "EmergencyAddress": 284, + "DateOfBirth": "1995-09-10T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 949, + "UserId": 36, + "JobAppId": null, + "Active": true, + "StartDate": "2015-03-02T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275969, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:20-07:00", + "Modified": "2022-07-06T10:48:08-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9304, + "Employee": 135, + "EmployeeHistory": 276099, + "EmployeeAgreement": 512, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664289300, + "EndTime": 1664322600, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664308680": "OUT", + "1664312280": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 19380, + "intEnd": 22980, + "intUnixStart": 1664308680, + "intUnixEnd": 1664312280, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.25, + "TotalTimeInv": 9.25, + "Cost": 115.5, + "Roster": 21333, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 23, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2389, + "File": 16790, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 135, + "Created": "2022-09-27T08:35:08-06:00", + "Modified": "2022-09-27T17:56:44-06:00", + "OnCost": 115.5, + "StartTimeLocalized": "2022-09-27T08:35:00-06:00", + "EndTimeLocalized": "2022-09-27T17:50:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 135, + "DisplayName": "Marissa Soto-Valerio", + "EmployeeProfile": 135, + "Employee": 135, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_94560170a6a83cf1408a9e5e5068262e.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Cbw5hGMmYNTodn0SgrSSbDEWXJsJQ8NcV4R6esuf48aWPVFOyf9Ckjm48MZ~q9~FCgAmOOPbTWvcreai8GumOSy8CP~-KtO5WKL-fRoHvLU5HHFSu2gxxjAHsq4mm~iuvxpodjqd4Gn0Zs3LB3r2N~lY9kxuXcSNRkMZ3ySBIc8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 23, + "OperationalUnitName": "Dr. Pean", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Pean" + }, + "EmployeeInfo": { + "Id": 135, + "DisplayName": "Marissa Soto-Valerio", + "EmployeeProfile": 135, + "Employee": 135, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_94560170a6a83cf1408a9e5e5068262e.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Cbw5hGMmYNTodn0SgrSSbDEWXJsJQ8NcV4R6esuf48aWPVFOyf9Ckjm48MZ~q9~FCgAmOOPbTWvcreai8GumOSy8CP~-KtO5WKL-fRoHvLU5HHFSu2gxxjAHsq4mm~iuvxpodjqd4Gn0Zs3LB3r2N~lY9kxuXcSNRkMZ3ySBIc8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 135, + "Company": 3, + "FirstName": "Marissa", + "LastName": "Soto-Valerio", + "DisplayName": "Marissa Soto-Valerio", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272938, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 10369, + "UserId": 135, + "JobAppId": null, + "Active": true, + "StartDate": "2022-07-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276099, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-07-19T09:22:30-06:00", + "Modified": "2022-08-31T19:39:45-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9305, + "Employee": 74, + "EmployeeHistory": 275980, + "EmployeeAgreement": 141, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664289360, + "EndTime": 1664326380, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664308320": "OUT", + "1664311920": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18960, + "intEnd": 22560, + "intUnixStart": 1664308320, + "intUnixEnd": 1664311920, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.28, + "TotalTimeInv": 10.25, + "Cost": 129.92, + "Roster": 21258, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 59, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2390, + "File": 16718, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 74, + "Created": "2022-09-27T08:36:01-06:00", + "Modified": "2022-09-27T19:36:09-06:00", + "OnCost": 129.92, + "StartTimeLocalized": "2022-09-27T08:36:00-06:00", + "EndTimeLocalized": "2022-09-27T18:53:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 74, + "DisplayName": "Gabriel Cuevas", + "EmployeeProfile": 74, + "Employee": 74, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_484f0cb4a4ee813fd8e8cb72473256db.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gpL2IPsSlGgn7~rak~dVlyUrJRO4CJo4piyS13ubJ9a9mlyFEzJubll2hZhAJLg7KOFM90PYoo~Nt4~-nid52m~cG~DK57J5b~8AqXh~726vvbTZ4Kl-CTOyK-n9AJbN2AGJBwSuZIfwlY~-0TRDoXlUhxDKpjg0K6mGFkKiR0g_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 59, + "OperationalUnitName": "Clark Page PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Clark Page PA-C" + }, + "EmployeeInfo": { + "Id": 74, + "DisplayName": "Gabriel Cuevas", + "EmployeeProfile": 74, + "Employee": 74, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_484f0cb4a4ee813fd8e8cb72473256db.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gpL2IPsSlGgn7~rak~dVlyUrJRO4CJo4piyS13ubJ9a9mlyFEzJubll2hZhAJLg7KOFM90PYoo~Nt4~-nid52m~cG~DK57J5b~8AqXh~726vvbTZ4Kl-CTOyK-n9AJbN2AGJBwSuZIfwlY~-0TRDoXlUhxDKpjg0K6mGFkKiR0g_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 74, + "Company": 4, + "FirstName": "Gabriel", + "LastName": "Cuevas", + "DisplayName": "Gabriel Cuevas", + "OtherName": null, + "Salutation": null, + "MainAddress": 231, + "PostalAddress": null, + "Contact": 272914, + "EmergencyAddress": 270, + "DateOfBirth": "2001-08-14T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1039, + "UserId": 74, + "JobAppId": null, + "Active": true, + "StartDate": "2021-05-04T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275980, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-07-06T10:56:48-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9306, + "Employee": 93, + "EmployeeHistory": 130466, + "EmployeeAgreement": 126, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664289840, + "EndTime": 1664324880, + "Mealbreak": "2022-09-27T01:01:00-06:00", + "MealbreakSlots": { + "1664308800": "OUT", + "1664312460": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18960, + "intEnd": 22620, + "intUnixStart": 1664308800, + "intUnixEnd": 1664312460, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.72, + "TotalTimeInv": 5.25, + "Cost": 122.08, + "Roster": 21245, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 59, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2424, + "File": 16807, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 93, + "Created": "2022-09-27T08:44:39-06:00", + "Modified": "2022-09-27T19:37:12-06:00", + "OnCost": 122.08, + "StartTimeLocalized": "2022-09-27T08:44:00-06:00", + "EndTimeLocalized": "2022-09-27T18:28:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 93, + "DisplayName": "Misty Perez", + "EmployeeProfile": 93, + "Employee": 93, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_053d5fbe49865a3562ae72163fc94574.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UtJYG4Q1srblmypp8UCcyZyU4SeRM49hl7Qhq95mXwCWCLKWmMEMgoaz4G~3pmUl9U3BapJDV96wXgCG~oY71eVq29AoBB0voF0PrSAcvyGitXEvgUHyyvifHwnOKOTTarR-sWjCht5VmBnEzIjVjeVDz3TotmKabWJK3oIDi~M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 59, + "OperationalUnitName": "Clark Page PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Clark Page PA-C" + }, + "EmployeeInfo": { + "Id": 93, + "DisplayName": "Misty Perez", + "EmployeeProfile": 93, + "Employee": 93, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_053d5fbe49865a3562ae72163fc94574.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UtJYG4Q1srblmypp8UCcyZyU4SeRM49hl7Qhq95mXwCWCLKWmMEMgoaz4G~3pmUl9U3BapJDV96wXgCG~oY71eVq29AoBB0voF0PrSAcvyGitXEvgUHyyvifHwnOKOTTarR-sWjCht5VmBnEzIjVjeVDz3TotmKabWJK3oIDi~M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 93, + "Company": 3, + "FirstName": "Misty", + "LastName": "Perez", + "DisplayName": "Misty Perez", + "OtherName": null, + "Salutation": null, + "MainAddress": 292, + "PostalAddress": null, + "Contact": 57473, + "EmergencyAddress": 284, + "DateOfBirth": "1992-11-08T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1093, + "UserId": 93, + "JobAppId": null, + "Active": true, + "StartDate": "2015-03-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 130466, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-30T15:36:46-07:00", + "Modified": "2022-04-28T11:14:31-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9307, + "Employee": 34, + "EmployeeHistory": 276096, + "EmployeeAgreement": 36, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664289840, + "EndTime": 1664326380, + "Mealbreak": "2022-09-27T00:20:00-06:00", + "MealbreakSlots": { + "1664308080": "OUT", + "1664309280": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18240, + "intEnd": 19440, + "intUnixStart": 1664308080, + "intUnixEnd": 1664309280, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.82, + "TotalTimeInv": 5.25, + "Cost": 176.76, + "Roster": 21073, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 34, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2425, + "File": 16810, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 34, + "Created": "2022-09-27T08:44:43-06:00", + "Modified": "2022-09-28T04:37:46-06:00", + "OnCost": 176.76, + "StartTimeLocalized": "2022-09-27T08:44:00-06:00", + "EndTimeLocalized": "2022-09-27T18:53:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 34, + "DisplayName": "Berenice Sanchez", + "EmployeeProfile": 34, + "Employee": 34, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8cc56a38231b2d3ba4dbe49080fc5235.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=AoAN2Ua9DVXioRA6B7g06wFAA9NL1KQe~XyjtbSI-KW90qddvVyHU6NabkhqbrnrJEclUG4FYUifWohvSh~IHsN6t5OFeuZUfnccRIhHibxzAmBNW4BwhjdWJlv-C52Mp3PPjgHlGHjYgxGEdp7gLO64BMfIxzety3DSEb6X7rs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 34, + "DisplayName": "Berenice Sanchez", + "EmployeeProfile": 34, + "Employee": 34, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8cc56a38231b2d3ba4dbe49080fc5235.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=AoAN2Ua9DVXioRA6B7g06wFAA9NL1KQe~XyjtbSI-KW90qddvVyHU6NabkhqbrnrJEclUG4FYUifWohvSh~IHsN6t5OFeuZUfnccRIhHibxzAmBNW4BwhjdWJlv-C52Mp3PPjgHlGHjYgxGEdp7gLO64BMfIxzety3DSEb6X7rs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 34, + "Company": 3, + "FirstName": "Berenice", + "LastName": "Sanchez", + "DisplayName": "Berenice Sanchez", + "OtherName": null, + "Salutation": null, + "MainAddress": 180, + "PostalAddress": null, + "Contact": 272882, + "EmergencyAddress": 284, + "DateOfBirth": "1991-09-19T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1116, + "UserId": 34, + "JobAppId": null, + "Active": true, + "StartDate": "2014-11-19T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276096, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:19-07:00", + "Modified": "2022-08-29T17:44:23-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9267, + "Employee": 86, + "EmployeeHistory": 276021, + "EmployeeAgreement": 89, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664289900, + "EndTime": 1664318700, + "Mealbreak": "2022-09-27T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [], + "TotalTime": 8, + "TotalTimeInv": 8, + "Cost": 0, + "Roster": null, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": null, + "IsInProgress": null, + "IsLeave": true, + "LeaveId": 336, + "LeaveRule": 2, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2367, + "File": null, + "CustomFieldData": null, + "RealTime": false, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": -2, + "Created": "2022-09-27T00:11:53-06:00", + "Modified": "2022-09-27T00:11:53-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-27T08:45:00-06:00", + "EndTimeLocalized": "2022-09-27T16:45:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": -1, + "DisplayName": "Deputy", + "Photo": "https://d2sebmzxyyulvv.cloudfront.net/deputy-avatar-30.png" + }, + "OperationalUnitInfo": null, + "EmployeeInfo": { + "Id": 86, + "DisplayName": "Aldo Avalos", + "EmployeeProfile": 86, + "Employee": 86, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3eb3267981c5efb334c2afbffd04cfbc.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cZItaLHsgvlP1gxq7BtwMpBgfIi98fE2uOcdTzI27hyNqOjwpxSyHEjABqf~cgFVyYn17CQQ-O5-5T3ePiZHT9deei6n7U9n7J4S~XmOiB0pTYDlq6zZQv--ijgyM-yVEnKPzAEWU1zruW0sm3-TdUfzVMTvSf7j0jqKPvunnpo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 86, + "Company": 3, + "FirstName": "Aldo", + "LastName": "Avalos", + "DisplayName": "Aldo Avalos", + "OtherName": null, + "Salutation": null, + "MainAddress": 251, + "PostalAddress": null, + "Contact": 272923, + "EmergencyAddress": 284, + "DateOfBirth": "1993-08-11T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1072, + "UserId": 86, + "JobAppId": null, + "Active": true, + "StartDate": "2022-03-23T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276021, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:31-07:00", + "Modified": "2022-07-07T09:21:06-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9308, + "Employee": 139, + "EmployeeHistory": 276118, + "EmployeeAgreement": 527, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664289900, + "EndTime": 1664309340, + "Mealbreak": "2022-09-27T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 0, + "intUnixStart": 1664289900, + "intUnixEnd": 1664289900, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.4, + "TotalTimeInv": 5.25, + "Cost": 0, + "Roster": 21437, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 34, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2426, + "File": 16762, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 139, + "Created": "2022-09-27T08:45:08-06:00", + "Modified": "2022-09-27T14:11:33-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-27T08:45:00-06:00", + "EndTimeLocalized": "2022-09-27T14:09:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 139, + "DisplayName": "Paola Barragan", + "EmployeeProfile": 139, + "Employee": 139, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7f1a5469c2369939f8eb74849e2d0c11.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EYQO83NQZO7dGa~faIpXzdeHA4v3sdVWpfo2PcQVUzvy2hl6CYB9k24fUslPe4H4rkc~WI4jtrPRPEudsSafynZIfOVRjh1taSz-hqL4bX3WYk~~ACwB6fLV1yyJvVHSlBl33~gufvtnrZN5QgERbn88VWGSpSM-h6E7C94gKys_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 139, + "DisplayName": "Paola Barragan", + "EmployeeProfile": 139, + "Employee": 139, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7f1a5469c2369939f8eb74849e2d0c11.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EYQO83NQZO7dGa~faIpXzdeHA4v3sdVWpfo2PcQVUzvy2hl6CYB9k24fUslPe4H4rkc~WI4jtrPRPEudsSafynZIfOVRjh1taSz-hqL4bX3WYk~~ACwB6fLV1yyJvVHSlBl33~gufvtnrZN5QgERbn88VWGSpSM-h6E7C94gKys_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 139, + "Company": 6, + "FirstName": "Paola", + "LastName": "Barragan", + "DisplayName": "Paola Barragan", + "OtherName": null, + "Salutation": null, + "MainAddress": 322, + "PostalAddress": null, + "Contact": 272953, + "EmergencyAddress": 284, + "DateOfBirth": "2000-07-19T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 14658, + "UserId": 139, + "JobAppId": null, + "Active": true, + "StartDate": null, + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276118, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-09-01T09:50:31-06:00", + "Modified": "2022-09-14T11:22:12-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9309, + "Employee": 99, + "EmployeeHistory": 79589, + "EmployeeAgreement": 143, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290380, + "EndTime": 1664322300, + "Mealbreak": "2022-09-27T00:59:00-06:00", + "MealbreakSlots": { + "1664299680": "OUT", + "1664303220": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 9300, + "intEnd": 12840, + "intUnixStart": 1664299680, + "intUnixEnd": 1664303220, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.88, + "TotalTimeInv": 9, + "Cost": 110.32, + "Roster": 21261, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 25, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2374, + "File": 16788, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 99, + "Created": "2022-09-27T08:53:17-06:00", + "Modified": "2022-09-27T18:04:36-06:00", + "OnCost": 110.32, + "StartTimeLocalized": "2022-09-27T08:53:00-06:00", + "EndTimeLocalized": "2022-09-27T17:45:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 99, + "DisplayName": "Fabiola Ortiz", + "EmployeeProfile": 99, + "Employee": 99, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_bc93429ae9717f0b9cec6953d463cad5.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=XG9lfHk1tJGX7wmosZBzZ0GFVJNX-ZcVSy~NxgnFwP3G-ufOuUio3wKFDXZ1nTYHt3OOYJ-mlY5Z-GoWzsIyJA0MV6tH7TW~D0m-9A2PQox25VgwZbjCU8M6SNa9QW5XKmviiXmsaR~DZyCGnHryhQ5YuuUqBtTL7UayIR428hs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 99, + "DisplayName": "Fabiola Ortiz", + "EmployeeProfile": 99, + "Employee": 99, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_bc93429ae9717f0b9cec6953d463cad5.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=XG9lfHk1tJGX7wmosZBzZ0GFVJNX-ZcVSy~NxgnFwP3G-ufOuUio3wKFDXZ1nTYHt3OOYJ-mlY5Z-GoWzsIyJA0MV6tH7TW~D0m-9A2PQox25VgwZbjCU8M6SNa9QW5XKmviiXmsaR~DZyCGnHryhQ5YuuUqBtTL7UayIR428hs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 99, + "Company": 2, + "FirstName": "Fabiola", + "LastName": "Ortiz", + "DisplayName": "Fabiola Ortiz", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 76732, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1270, + "UserId": 99, + "JobAppId": null, + "Active": true, + "StartDate": "2021-10-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 79589, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-05T11:06:04-06:00", + "Modified": "2022-04-18T20:21:43-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9310, + "Employee": 65, + "EmployeeHistory": 275964, + "EmployeeAgreement": 68, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290440, + "EndTime": 1664323500, + "Mealbreak": "2022-09-27T01:18:00-06:00", + "MealbreakSlots": { + "1664309460": "OUT", + "1664314140": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 19020, + "intEnd": 23700, + "intUnixStart": 1664309460, + "intUnixEnd": 1664314140, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.88, + "TotalTimeInv": 9, + "Cost": 141.84, + "Roster": 21157, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 26, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2396, + "File": 16804, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 65, + "Created": "2022-09-27T08:54:22-06:00", + "Modified": "2022-09-27T18:11:30-06:00", + "OnCost": 141.84, + "StartTimeLocalized": "2022-09-27T08:54:00-06:00", + "EndTimeLocalized": "2022-09-27T18:05:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 65, + "DisplayName": "Amador Belmontes Martinez", + "EmployeeProfile": 65, + "Employee": 65, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0fb803e0ecc50c61a88686d810cc303f.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=N3kRmlvr-4naE225X0nBvETl36Oj77urHExq~GJh5gVzYKPtr8aqNAOE8o-8MN7doCZC-bdOnJ4LoXXFX-2y60eX1iHAA~10fMebzwyod-Vs-Us-ush5HV~trwicZGaSrfGv1M~5k4sH-6VCD1kClLkWI0sKL4yrj-YzoQo7lqc_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 26, + "OperationalUnitName": "Sono", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Sono" + }, + "EmployeeInfo": { + "Id": 65, + "DisplayName": "Amador Belmontes Martinez", + "EmployeeProfile": 65, + "Employee": 65, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0fb803e0ecc50c61a88686d810cc303f.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=N3kRmlvr-4naE225X0nBvETl36Oj77urHExq~GJh5gVzYKPtr8aqNAOE8o-8MN7doCZC-bdOnJ4LoXXFX-2y60eX1iHAA~10fMebzwyod-Vs-Us-ush5HV~trwicZGaSrfGv1M~5k4sH-6VCD1kClLkWI0sKL4yrj-YzoQo7lqc_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 65, + "Company": 2, + "FirstName": "Amador", + "LastName": "Belmontes Martinez", + "DisplayName": "Amador Belmontes Martinez", + "OtherName": null, + "Salutation": null, + "MainAddress": 214, + "PostalAddress": null, + "Contact": 272905, + "EmergencyAddress": 262, + "DateOfBirth": "1969-02-08T00:00:00-08:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1130, + "UserId": 65, + "JobAppId": null, + "Active": true, + "StartDate": "2019-12-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275964, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:26-07:00", + "Modified": "2022-07-06T10:45:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9311, + "Employee": 117, + "EmployeeHistory": 276141, + "EmployeeAgreement": 442, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290620, + "EndTime": 1664323200, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664308860": "OUT", + "1664312460": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18240, + "intEnd": 21840, + "intUnixStart": 1664308860, + "intUnixEnd": 1664312460, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.05, + "TotalTimeInv": 9, + "Cost": 80.5, + "Roster": 21286, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2398, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 117, + "Created": "2022-09-27T08:57:09-06:00", + "Modified": "2022-09-27T18:04:36-06:00", + "OnCost": 80.5, + "StartTimeLocalized": "2022-09-27T08:57:00-06:00", + "EndTimeLocalized": "2022-09-27T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 117, + "DisplayName": "Ilya Davalos", + "EmployeeProfile": 117, + "Employee": 117, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=I+D&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 117, + "DisplayName": "Ilya Davalos", + "EmployeeProfile": 117, + "Employee": 117, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=I+D&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 117, + "Company": 7, + "FirstName": "Ilya", + "LastName": "Davalos", + "DisplayName": "Ilya Davalos", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 113093, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 117, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276141, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:17-06:00", + "Modified": "2022-09-27T08:46:16-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9312, + "Employee": 118, + "EmployeeHistory": 115913, + "EmployeeAgreement": 443, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290620, + "EndTime": 1664323020, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664308620": "OUT", + "1664312220": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664308620, + "intUnixEnd": 1664312220, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 64, + "Roster": 21306, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2400, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 118, + "Created": "2022-09-27T08:57:20-06:00", + "Modified": "2022-09-27T18:04:37-06:00", + "OnCost": 64, + "StartTimeLocalized": "2022-09-27T08:57:00-06:00", + "EndTimeLocalized": "2022-09-27T17:57:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 118, + "DisplayName": "Silvia Ledon", + "EmployeeProfile": 118, + "Employee": 118, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=S+L&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 118, + "DisplayName": "Silvia Ledon", + "EmployeeProfile": 118, + "Employee": 118, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=S+L&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 118, + "Company": 7, + "FirstName": "Silvia", + "LastName": "Ledon", + "DisplayName": "Silvia Ledon", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 113035, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 118, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115913, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:18-06:00", + "Modified": "2022-04-25T17:50:56-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9313, + "Employee": 63, + "EmployeeHistory": 275988, + "EmployeeAgreement": 65, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290620, + "EndTime": 1664323020, + "Mealbreak": "2022-09-27T00:58:00-06:00", + "MealbreakSlots": { + "1664308800": "OUT", + "1664312280": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18180, + "intEnd": 21660, + "intUnixStart": 1664308800, + "intUnixEnd": 1664312280, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.03, + "TotalTimeInv": 9, + "Cost": 0, + "Roster": 21144, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 23, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2393, + "File": 16795, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 62, + "Created": "2022-09-27T08:57:39-06:00", + "Modified": "2022-09-27T18:04:03-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-27T08:57:00-06:00", + "EndTimeLocalized": "2022-09-27T17:57:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 62, + "DisplayName": "Jules Pean", + "EmployeeProfile": 63, + "Employee": 63, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a73f41564e0cc3720ffd597c238e2bcf.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gJwioREdFKg3qimVBJDuk~Reid24G1TbeBfwHUEmeM20pREAcqdrl~80kH2xGiSZQ5mrqoI~Ufq4B6qDwX6wiQ6Mk1e-Y4xeI4XrQLZTlZ9muO6-3xWfJ~DRKirB~DyGfDi9AXqMM7BbuDmw3UBzm1eTA20VjvTpVEbm74PLEGk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 23, + "OperationalUnitName": "Dr. Pean", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Pean" + }, + "EmployeeInfo": { + "Id": 62, + "DisplayName": "Jules Pean", + "EmployeeProfile": 63, + "Employee": 63, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a73f41564e0cc3720ffd597c238e2bcf.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gJwioREdFKg3qimVBJDuk~Reid24G1TbeBfwHUEmeM20pREAcqdrl~80kH2xGiSZQ5mrqoI~Ufq4B6qDwX6wiQ6Mk1e-Y4xeI4XrQLZTlZ9muO6-3xWfJ~DRKirB~DyGfDi9AXqMM7BbuDmw3UBzm1eTA20VjvTpVEbm74PLEGk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 63, + "Company": 2, + "FirstName": "Jules", + "LastName": "Pean", + "DisplayName": "Jules Pean", + "OtherName": null, + "Salutation": null, + "MainAddress": 211, + "PostalAddress": null, + "Contact": 272903, + "EmergencyAddress": 284, + "DateOfBirth": "1952-03-08T00:00:00-08:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1190, + "UserId": 62, + "JobAppId": null, + "Active": true, + "StartDate": "2019-08-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275988, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:25-07:00", + "Modified": "2022-07-06T11:04:00-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9314, + "Employee": 45, + "EmployeeHistory": 130453, + "EmployeeAgreement": 47, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290620, + "EndTime": 1664323200, + "Mealbreak": "2022-09-27T01:03:00-06:00", + "MealbreakSlots": { + "1664305500": "OUT", + "1664309280": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 14880, + "intEnd": 18660, + "intUnixStart": 1664305500, + "intUnixEnd": 1664309280, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 160, + "Roster": 21098, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2414, + "File": 16797, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 45, + "Created": "2022-09-27T08:57:49-06:00", + "Modified": "2022-09-27T18:04:02-06:00", + "OnCost": 160, + "StartTimeLocalized": "2022-09-27T08:57:00-06:00", + "EndTimeLocalized": "2022-09-27T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 45, + "DisplayName": "Jailene Lopez", + "EmployeeProfile": 45, + "Employee": 45, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f97ca5201b058a36c032450a7051ca39.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=TdzfMkUJhNecAttB2ZwvI3yL0GqemIWxDkWDj0aj7-C6lNsg5izpe7Z5yyjrtNh1vrOqWpTe9mtH7dS7aekXEjo6UwtUWCC7nVLy-gzHQk2y5ywGkXXrdsRDbNAZy05Z3gTSAjIK1tRfHXaonn~rBe~OXSVRziN483wiUH5ESs8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 45, + "DisplayName": "Jailene Lopez", + "EmployeeProfile": 45, + "Employee": 45, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f97ca5201b058a36c032450a7051ca39.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=TdzfMkUJhNecAttB2ZwvI3yL0GqemIWxDkWDj0aj7-C6lNsg5izpe7Z5yyjrtNh1vrOqWpTe9mtH7dS7aekXEjo6UwtUWCC7nVLy-gzHQk2y5ywGkXXrdsRDbNAZy05Z3gTSAjIK1tRfHXaonn~rBe~OXSVRziN483wiUH5ESs8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 45, + "Company": 6, + "FirstName": "Jailene", + "LastName": "Lopez", + "DisplayName": "Jailene Lopez", + "OtherName": null, + "Salutation": null, + "MainAddress": 190, + "PostalAddress": null, + "Contact": 666, + "EmergencyAddress": 284, + "DateOfBirth": "1997-05-31T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 959, + "UserId": 45, + "JobAppId": null, + "Active": true, + "StartDate": "2001-09-24T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 130453, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:21-07:00", + "Modified": "2022-04-28T11:07:03-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9315, + "Employee": 116, + "EmployeeHistory": 115972, + "EmployeeAgreement": 441, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290620, + "EndTime": 1664323440, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664308800": "OUT", + "1664312400": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18180, + "intEnd": 21780, + "intUnixStart": 1664308800, + "intUnixEnd": 1664312400, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.12, + "TotalTimeInv": 9, + "Cost": 64.96, + "Roster": 21287, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2399, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 1, + "Created": "2022-09-27T08:57:55-06:00", + "Modified": "2022-09-27T19:37:13-06:00", + "OnCost": 64.96, + "StartTimeLocalized": "2022-09-27T08:57:00-06:00", + "EndTimeLocalized": "2022-09-27T18:04:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 116, + "DisplayName": "Brenda De Leon", + "EmployeeProfile": 116, + "Employee": 116, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=B+L&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 116, + "Company": 7, + "FirstName": "Brenda", + "LastName": "De Leon", + "DisplayName": "Brenda De Leon", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 113094, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 116, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115972, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:17-06:00", + "Modified": "2022-04-25T18:05:12-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9316, + "Employee": 111, + "EmployeeHistory": 115976, + "EmployeeAgreement": 436, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290680, + "EndTime": 1664323200, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664308800": "OUT", + "1664312400": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18120, + "intEnd": 21720, + "intUnixStart": 1664308800, + "intUnixEnd": 1664312400, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.03, + "TotalTimeInv": 9, + "Cost": 64.24, + "Roster": 21265, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2409, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 111, + "Created": "2022-09-27T08:58:51-06:00", + "Modified": "2022-09-27T18:04:36-06:00", + "OnCost": 64.24, + "StartTimeLocalized": "2022-09-27T08:58:00-06:00", + "EndTimeLocalized": "2022-09-27T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 111, + "DisplayName": "Martha Centeno", + "EmployeeProfile": 111, + "Employee": 111, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=M+C&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 111, + "DisplayName": "Martha Centeno", + "EmployeeProfile": 111, + "Employee": 111, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=M+C&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 111, + "Company": 7, + "FirstName": "Martha", + "LastName": "Centeno", + "DisplayName": "Martha Centeno", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 113098, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": 0, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 111, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115976, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:15-06:00", + "Modified": "2022-04-25T18:11:10-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9317, + "Employee": 81, + "EmployeeHistory": 275970, + "EmployeeAgreement": 144, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290740, + "EndTime": 1664324700, + "Mealbreak": "2022-09-27T01:04:00-06:00", + "MealbreakSlots": { + "1664306820": "OUT", + "1664310660": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 16080, + "intEnd": 19920, + "intUnixStart": 1664306820, + "intUnixEnd": 1664310660, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.37, + "TotalTimeInv": 10, + "Cost": 117.18, + "Roster": 21213, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2419, + "File": 16806, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 81, + "Created": "2022-09-27T08:59:46-06:00", + "Modified": "2022-09-27T19:37:13-06:00", + "OnCost": 117.18, + "StartTimeLocalized": "2022-09-27T08:59:00-06:00", + "EndTimeLocalized": "2022-09-27T18:25:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 81, + "DisplayName": "David Gomez", + "EmployeeProfile": 81, + "Employee": 81, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_628106735184a54f7891b6db7dfe0b39.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=MjcbfVMvTqNoWBuIb~iVUM4wr~BJ8a3IyzEL07HVFHswfZrxfim-o40CueCGeGn~Z4R~ydbCnA3kDgFkcSe6CHhxpMTJcOPe8ci78dF7ckh6DRizk9LBUqPKFx3stO5l1bTFIePOKDIv7nEo97YtZeBqryt0liTvOiE~0i4ZXSk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 81, + "DisplayName": "David Gomez", + "EmployeeProfile": 81, + "Employee": 81, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_628106735184a54f7891b6db7dfe0b39.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=MjcbfVMvTqNoWBuIb~iVUM4wr~BJ8a3IyzEL07HVFHswfZrxfim-o40CueCGeGn~Z4R~ydbCnA3kDgFkcSe6CHhxpMTJcOPe8ci78dF7ckh6DRizk9LBUqPKFx3stO5l1bTFIePOKDIv7nEo97YtZeBqryt0liTvOiE~0i4ZXSk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 81, + "Company": 3, + "FirstName": "David", + "LastName": "Gomez", + "DisplayName": "David Gomez", + "OtherName": null, + "Salutation": null, + "MainAddress": 243, + "PostalAddress": null, + "Contact": 272919, + "EmergencyAddress": 278, + "DateOfBirth": "2001-02-12T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1165, + "UserId": 81, + "JobAppId": null, + "Active": true, + "StartDate": "2022-01-17T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275970, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:30-07:00", + "Modified": "2022-07-06T10:49:53-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9318, + "Employee": 115, + "EmployeeHistory": 115850, + "EmployeeAgreement": 440, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290800, + "EndTime": 1664323200, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664308800": "OUT", + "1664312400": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664308800, + "intUnixEnd": 1664312400, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 64, + "Roster": 21284, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2404, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 115, + "Created": "2022-09-27T09:00:05-06:00", + "Modified": "2022-09-27T18:04:36-06:00", + "OnCost": 64, + "StartTimeLocalized": "2022-09-27T09:00:00-06:00", + "EndTimeLocalized": "2022-09-27T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 115, + "DisplayName": "Alan Inube", + "EmployeeProfile": 115, + "Employee": 115, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+I&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 115, + "DisplayName": "Alan Inube", + "EmployeeProfile": 115, + "Employee": 115, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+I&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 115, + "Company": 7, + "FirstName": "Alan", + "LastName": "Inube", + "DisplayName": "Alan Inube", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 112973, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 115, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115850, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:16-06:00", + "Modified": "2022-04-25T17:43:43-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9319, + "Employee": 113, + "EmployeeHistory": 115851, + "EmployeeAgreement": 438, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290800, + "EndTime": 1664323200, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664308800": "OUT", + "1664312400": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664308800, + "intUnixEnd": 1664312400, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 64, + "Roster": 21281, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2406, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 113, + "Created": "2022-09-27T09:00:14-06:00", + "Modified": "2022-09-27T18:04:37-06:00", + "OnCost": 64, + "StartTimeLocalized": "2022-09-27T09:00:00-06:00", + "EndTimeLocalized": "2022-09-27T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 113, + "DisplayName": "Gabriela Gurrola", + "EmployeeProfile": 113, + "Employee": 113, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=G+G&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 113, + "DisplayName": "Gabriela Gurrola", + "EmployeeProfile": 113, + "Employee": 113, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=G+G&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 113, + "Company": 7, + "FirstName": "Gabriela", + "LastName": "Gurrola", + "DisplayName": "Gabriela Gurrola", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 112974, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 113, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115851, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:16-06:00", + "Modified": "2022-04-25T17:43:50-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9320, + "Employee": 126, + "EmployeeHistory": 223782, + "EmployeeAgreement": 469, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290800, + "EndTime": 1664312400, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664302500": "OUT", + "1664306100": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 11700, + "intEnd": 15300, + "intUnixStart": 1664302500, + "intUnixEnd": 1664306100, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 5, + "TotalTimeInv": 6, + "Cost": 70, + "Roster": 21308, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2407, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 126, + "Created": "2022-09-27T09:00:14-06:00", + "Modified": "2022-09-27T18:04:36-06:00", + "OnCost": 70, + "StartTimeLocalized": "2022-09-27T09:00:00-06:00", + "EndTimeLocalized": "2022-09-27T15:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 126, + "DisplayName": "Alexandra Benitez", + "EmployeeProfile": 126, + "Employee": 126, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+B&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 126, + "DisplayName": "Alexandra Benitez", + "EmployeeProfile": 126, + "Employee": 126, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+B&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 126, + "Company": 7, + "FirstName": "Alexandra", + "LastName": "Benitez", + "DisplayName": "Alexandra Benitez", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 167031, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 126, + "JobAppId": null, + "Active": true, + "StartDate": "2022-05-20T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 223782, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-05-20T09:38:22-06:00", + "Modified": "2022-06-06T11:37:01-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9321, + "Employee": 112, + "EmployeeHistory": 115854, + "EmployeeAgreement": 437, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290800, + "EndTime": 1664323200, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664308860": "OUT", + "1664312460": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18060, + "intEnd": 21660, + "intUnixStart": 1664308860, + "intUnixEnd": 1664312460, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 64, + "Roster": 21277, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2410, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 112, + "Created": "2022-09-27T09:00:15-06:00", + "Modified": "2022-09-27T18:04:37-06:00", + "OnCost": 64, + "StartTimeLocalized": "2022-09-27T09:00:00-06:00", + "EndTimeLocalized": "2022-09-27T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 112, + "DisplayName": "Carlos Espinosa", + "EmployeeProfile": 112, + "Employee": 112, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=C+E&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 112, + "DisplayName": "Carlos Espinosa", + "EmployeeProfile": 112, + "Employee": 112, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=C+E&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 112, + "Company": 7, + "FirstName": "Carlos", + "LastName": "Espinosa", + "DisplayName": "Carlos Espinosa", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 112977, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 112, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115854, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:15-06:00", + "Modified": "2022-04-25T17:45:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9322, + "Employee": 138, + "EmployeeHistory": 276090, + "EmployeeAgreement": 524, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290800, + "EndTime": 1664323200, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664308800": "OUT", + "1664312400": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664308800, + "intUnixEnd": 1664312400, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 0, + "Roster": 21416, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2411, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 138, + "Created": "2022-09-27T09:00:18-06:00", + "Modified": "2022-09-27T18:04:36-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-27T09:00:00-06:00", + "EndTimeLocalized": "2022-09-27T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 138, + "DisplayName": "Alejandra Hernandez", + "EmployeeProfile": 138, + "Employee": 138, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+H&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 138, + "DisplayName": "Alejandra Hernandez", + "EmployeeProfile": 138, + "Employee": 138, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+H&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 138, + "Company": 7, + "FirstName": "Alejandra", + "LastName": "Hernandez", + "DisplayName": "Alejandra Hernandez", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272947, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 138, + "JobAppId": null, + "Active": true, + "StartDate": "2022-08-22T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276090, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-08-22T15:07:51-06:00", + "Modified": "2022-08-22T18:11:07-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9323, + "Employee": 137, + "EmployeeHistory": 276086, + "EmployeeAgreement": 523, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290800, + "EndTime": 1664323200, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664308800": "OUT", + "1664312400": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664308800, + "intUnixEnd": 1664312400, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 0, + "Roster": 21321, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2412, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 137, + "Created": "2022-09-27T09:00:21-06:00", + "Modified": "2022-09-27T18:04:36-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-27T09:00:00-06:00", + "EndTimeLocalized": "2022-09-27T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 137, + "DisplayName": "Omar Castaneda", + "EmployeeProfile": 137, + "Employee": 137, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=O+C&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 137, + "DisplayName": "Omar Castaneda", + "EmployeeProfile": 137, + "Employee": 137, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=O+C&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 137, + "Company": 7, + "FirstName": "Omar", + "LastName": "Castaneda", + "DisplayName": "Omar Castaneda", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272944, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 137, + "JobAppId": null, + "Active": true, + "StartDate": "2022-08-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276086, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-08-19T12:18:45-06:00", + "Modified": "2022-08-19T12:20:31-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9324, + "Employee": 114, + "EmployeeHistory": 115912, + "EmployeeAgreement": 439, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290800, + "EndTime": 1664323200, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664308800": "OUT", + "1664312400": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664308800, + "intUnixEnd": 1664312400, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 64, + "Roster": 21279, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2405, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 114, + "Created": "2022-09-27T09:00:22-06:00", + "Modified": "2022-09-27T18:04:36-06:00", + "OnCost": 64, + "StartTimeLocalized": "2022-09-27T09:00:00-06:00", + "EndTimeLocalized": "2022-09-27T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 114, + "DisplayName": "Sergio Briceno", + "EmployeeProfile": 114, + "Employee": 114, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_c1f0e75d5d3d393e535475b8b1188183.jpg?Expires=1664548383&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L-Nhxp-d0An00S2ES~aeyaSOfX3M-7WRtm195DzBGTSSppJ0gloC-3hEfAPeTwjbaUIMPJwMY3PWYvfcK4VXrANb3r9FX6WTgQeFgrzbHxiJLYU7j6yFHmlOTLd8sNk5O9fESoaKvjoiVt9hirYa411~v8NXRhDwc6MoanS1FFw_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 114, + "DisplayName": "Sergio Briceno", + "EmployeeProfile": 114, + "Employee": 114, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_c1f0e75d5d3d393e535475b8b1188183.jpg?Expires=1664548383&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L-Nhxp-d0An00S2ES~aeyaSOfX3M-7WRtm195DzBGTSSppJ0gloC-3hEfAPeTwjbaUIMPJwMY3PWYvfcK4VXrANb3r9FX6WTgQeFgrzbHxiJLYU7j6yFHmlOTLd8sNk5O9fESoaKvjoiVt9hirYa411~v8NXRhDwc6MoanS1FFw_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 114, + "Company": 7, + "FirstName": "Sergio", + "LastName": "Briceno", + "DisplayName": "Sergio Briceno", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 112975, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 2009, + "UserId": 114, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115912, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:16-06:00", + "Modified": "2022-04-25T17:49:32-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9325, + "Employee": 142, + "EmployeeHistory": 276139, + "EmployeeAgreement": 542, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290800, + "EndTime": 1664323260, + "Mealbreak": "2022-09-27T01:07:00-06:00", + "MealbreakSlots": { + "1664308200": "OUT", + "1664312220": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17400, + "intEnd": 21420, + "intUnixStart": 1664308200, + "intUnixEnd": 1664312220, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.9, + "TotalTimeInv": 5, + "Cost": 0, + "Roster": 21847, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 34, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2401, + "File": 16798, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 142, + "Created": "2022-09-27T09:00:34-06:00", + "Modified": "2022-09-27T18:04:42-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-27T09:00:00-06:00", + "EndTimeLocalized": "2022-09-27T18:01:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 142, + "DisplayName": "Vanessa Magallanes", + "EmployeeProfile": 142, + "Employee": 142, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fa565141b7f588a7bbe6bb8e34e45f2e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=BtW8mTyd40wfcVorqMsOWuhSDBOqnyjlBD4hmOgHCDhD8yYBjH5cfGN~0h-PgZhECRyXtWrgf3bbMAZsCU-Pms~DsOSeDhMbwf3kOf-ta2H6Lkk3yCDhu3kOYA94Yds-k932qLTDy~mbXnM65LI435m2tEZ~m9jFEdWrZzZQXtI_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 142, + "DisplayName": "Vanessa Magallanes", + "EmployeeProfile": 142, + "Employee": 142, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fa565141b7f588a7bbe6bb8e34e45f2e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=BtW8mTyd40wfcVorqMsOWuhSDBOqnyjlBD4hmOgHCDhD8yYBjH5cfGN~0h-PgZhECRyXtWrgf3bbMAZsCU-Pms~DsOSeDhMbwf3kOf-ta2H6Lkk3yCDhu3kOYA94Yds-k932qLTDy~mbXnM65LI435m2tEZ~m9jFEdWrZzZQXtI_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 142, + "Company": 3, + "FirstName": "Vanessa", + "LastName": "Magallanes", + "DisplayName": "Vanessa Magallanes", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272968, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 16284, + "UserId": 142, + "JobAppId": null, + "Active": true, + "StartDate": "2022-09-21T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276139, + "CustomFieldData": null, + "Creator": 2, + "Created": "2022-09-21T17:48:15-06:00", + "Modified": "2022-09-23T16:33:22-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9326, + "Employee": 134, + "EmployeeHistory": 276016, + "EmployeeAgreement": 492, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290800, + "EndTime": 1664323200, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664308800": "OUT", + "1664312400": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664308800, + "intUnixEnd": 1664312400, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 0, + "Roster": 21320, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2408, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 134, + "Created": "2022-09-27T09:00:37-06:00", + "Modified": "2022-09-27T18:04:36-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-27T09:00:00-06:00", + "EndTimeLocalized": "2022-09-27T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 134, + "DisplayName": "Carlos Hernandez Gonzalez", + "EmployeeProfile": 134, + "Employee": 134, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=C+G&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 134, + "DisplayName": "Carlos Hernandez Gonzalez", + "EmployeeProfile": 134, + "Employee": 134, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=C+G&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 134, + "Company": 7, + "FirstName": "Carlos", + "LastName": "Hernandez Gonzalez", + "DisplayName": "Carlos Hernandez Gonzalez", + "OtherName": null, + "Salutation": null, + "MainAddress": 331, + "PostalAddress": null, + "Contact": 272930, + "EmergencyAddress": null, + "DateOfBirth": "1996-06-03T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 134, + "JobAppId": null, + "Active": true, + "StartDate": null, + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276016, + "CustomFieldData": null, + "Creator": 2, + "Created": "2022-07-06T11:30:29-06:00", + "Modified": "2022-07-06T11:36:45-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9327, + "Employee": 96, + "EmployeeHistory": 276048, + "EmployeeAgreement": 135, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290860, + "EndTime": 1664326920, + "Mealbreak": "2022-09-27T00:51:00-06:00", + "MealbreakSlots": { + "1664308800": "OUT", + "1664311860": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17940, + "intEnd": 21000, + "intUnixStart": 1664308800, + "intUnixEnd": 1664311860, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.17, + "TotalTimeInv": 9.98, + "Cost": 0, + "Roster": 21246, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 59, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2403, + "File": 16813, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 96, + "Created": "2022-09-27T09:01:41-06:00", + "Modified": "2022-09-27T19:37:12-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-27T09:01:00-06:00", + "EndTimeLocalized": "2022-09-27T19:02:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 96, + "DisplayName": "Clark Page", + "EmployeeProfile": 96, + "Employee": 96, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a19b6aeb9552ecba1e12d71958dee40d.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Mm5g23w8dnxp011tIu0lVcpSgiZY4amqNnHkVZ9cAQefVOtXE7nxXDKLPQ0y01R68V5mZgJFwanjUxn~Xp2ddBo1L2uetx2Ye5dkiODK8p5midqpCYcdLFMVdyOcUemLapoXloYdZMbr277HUlAK-jw7y6H1p4e-8PA1R~nDOik_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 59, + "OperationalUnitName": "Clark Page PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Clark Page PA-C" + }, + "EmployeeInfo": { + "Id": 96, + "DisplayName": "Clark Page", + "EmployeeProfile": 96, + "Employee": 96, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a19b6aeb9552ecba1e12d71958dee40d.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Mm5g23w8dnxp011tIu0lVcpSgiZY4amqNnHkVZ9cAQefVOtXE7nxXDKLPQ0y01R68V5mZgJFwanjUxn~Xp2ddBo1L2uetx2Ye5dkiODK8p5midqpCYcdLFMVdyOcUemLapoXloYdZMbr277HUlAK-jw7y6H1p4e-8PA1R~nDOik_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 96, + "Company": 3, + "FirstName": "Clark", + "LastName": "Page", + "DisplayName": "Clark Page", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 57651, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1103, + "UserId": 96, + "JobAppId": null, + "Active": true, + "StartDate": "2022-03-31T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276048, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-31T14:46:22-07:00", + "Modified": "2022-07-19T13:03:28-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9328, + "Employee": 140, + "EmployeeHistory": 276127, + "EmployeeAgreement": 533, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664290980, + "EndTime": 1664320200, + "Mealbreak": "2022-09-27T01:05:00-06:00", + "MealbreakSlots": { + "1664305500": "OUT", + "1664309400": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 14520, + "intEnd": 18420, + "intUnixStart": 1664305500, + "intUnixEnd": 1664309400, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.03, + "TotalTimeInv": 7.95, + "Cost": 0, + "Roster": 21462, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 34, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2413, + "File": 16781, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 140, + "Created": "2022-09-27T09:03:09-06:00", + "Modified": "2022-09-27T18:04:36-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-27T09:03:00-06:00", + "EndTimeLocalized": "2022-09-27T17:10:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 140, + "DisplayName": "Cesar Molina", + "EmployeeProfile": 140, + "Employee": 140, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_913978aa8ee3482d1d13127d8af9436a.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WkJKqdnooCQlf7JjIWiYVmbeWe0GtSp9-hnrGpTseW73DuRDlNnD5h0RpPB5XmmzuTIG3hspKcqpYGewcQM8c2ZWB26TWY6osNekrwoE7V0vaD4idmd6iJQNVNaVfv9zkqrbrp4HcyewYzKnkBGEZzqFl~N7afqE5RR8S5Glvok_", + "Pronouns": 1, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 140, + "DisplayName": "Cesar Molina", + "EmployeeProfile": 140, + "Employee": 140, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_913978aa8ee3482d1d13127d8af9436a.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WkJKqdnooCQlf7JjIWiYVmbeWe0GtSp9-hnrGpTseW73DuRDlNnD5h0RpPB5XmmzuTIG3hspKcqpYGewcQM8c2ZWB26TWY6osNekrwoE7V0vaD4idmd6iJQNVNaVfv9zkqrbrp4HcyewYzKnkBGEZzqFl~N7afqE5RR8S5Glvok_", + "Pronouns": 1, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 140, + "Company": 6, + "FirstName": "Cesar", + "LastName": "Molina", + "DisplayName": "Cesar Molina", + "OtherName": null, + "Salutation": null, + "MainAddress": 332, + "PostalAddress": null, + "Contact": 272961, + "EmergencyAddress": 333, + "DateOfBirth": "1989-11-05T00:00:00-07:00", + "Gender": 0, + "Pronouns": 1, + "CustomPronouns": "", + "Photo": 15038, + "UserId": 140, + "JobAppId": null, + "Active": true, + "StartDate": "2022-09-07T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276127, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-09-07T17:13:25-06:00", + "Modified": "2022-09-16T12:51:43-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9329, + "Employee": 71, + "EmployeeHistory": 275981, + "EmployeeAgreement": 74, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664291100, + "EndTime": 1664323440, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664308680": "OUT", + "1664312280": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17580, + "intEnd": 21180, + "intUnixStart": 1664308680, + "intUnixEnd": 1664312280, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.98, + "TotalTimeInv": 8.92, + "Cost": 111.72, + "Roster": 21191, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 23, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2394, + "File": 16803, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 71, + "Created": "2022-09-27T09:05:31-06:00", + "Modified": "2022-09-27T19:37:13-06:00", + "OnCost": 111.72, + "StartTimeLocalized": "2022-09-27T09:05:00-06:00", + "EndTimeLocalized": "2022-09-27T18:04:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 71, + "DisplayName": "Gabriela Grijalva", + "EmployeeProfile": 71, + "Employee": 71, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0b7f317a48756482cbfb25021a9465e0.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EbRpVEWQKjHj3Tpm-bNR8Xgq4M6NLwWPwBXQrbD~QwR8z6W8gw9qjdNkZdpV-TOyy20l082el2Z19foIRbkT~DDWf4niWcf022XpnsKfG1oaQ~yYXhHoN4niTenNU9nXtv8Qkh~gFRhSewmh6fcCLSugti5Vk34UPDB7~Umjmwk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 23, + "OperationalUnitName": "Dr. Pean", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Pean" + }, + "EmployeeInfo": { + "Id": 71, + "DisplayName": "Gabriela Grijalva", + "EmployeeProfile": 71, + "Employee": 71, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0b7f317a48756482cbfb25021a9465e0.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EbRpVEWQKjHj3Tpm-bNR8Xgq4M6NLwWPwBXQrbD~QwR8z6W8gw9qjdNkZdpV-TOyy20l082el2Z19foIRbkT~DDWf4niWcf022XpnsKfG1oaQ~yYXhHoN4niTenNU9nXtv8Qkh~gFRhSewmh6fcCLSugti5Vk34UPDB7~Umjmwk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 71, + "Company": 2, + "FirstName": "Gabriela", + "LastName": "Grijalva", + "DisplayName": "Gabriela Grijalva", + "OtherName": null, + "Salutation": null, + "MainAddress": 225, + "PostalAddress": null, + "Contact": 272911, + "EmergencyAddress": 267, + "DateOfBirth": "2000-06-27T00:00:00-06:00", + "Gender": 2, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 944, + "UserId": 71, + "JobAppId": null, + "Active": true, + "StartDate": "2020-09-24T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275981, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-07-06T10:57:07-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9330, + "Employee": 24, + "EmployeeHistory": 275982, + "EmployeeAgreement": 26, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664291220, + "EndTime": 1664322900, + "Mealbreak": "2022-09-27T01:07:00-06:00", + "MealbreakSlots": { + "1664305560": "OUT", + "1664309580": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 14340, + "intEnd": 18360, + "intUnixStart": 1664305560, + "intUnixEnd": 1664309580, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.68, + "TotalTimeInv": 8.38, + "Cost": 122.88, + "Roster": 21053, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2417, + "File": 16792, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 24, + "Created": "2022-09-27T09:07:34-06:00", + "Modified": "2022-09-27T18:04:02-06:00", + "OnCost": 122.88, + "StartTimeLocalized": "2022-09-27T09:07:00-06:00", + "EndTimeLocalized": "2022-09-27T17:55:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 24, + "DisplayName": "Gumara Mata", + "EmployeeProfile": 24, + "Employee": 24, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3979ef3d653677cb781b8e10e0855d35.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=CEiUJKGMTschoNegaZAqjoALpIF7gFZlyn1J9DBXnxLF3KunzT5g6FK~8Fhe-z1J-q9vEFP7WIvYRQipjKItueJQoeeIPAb1vZQ7A7onUexwCFqneJqOvJP9SyxvNI5ByfrirzNAXzW1CDLfJUubLSUkB4-VRpr4xGCfOZLYpw8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 24, + "DisplayName": "Gumara Mata", + "EmployeeProfile": 24, + "Employee": 24, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3979ef3d653677cb781b8e10e0855d35.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=CEiUJKGMTschoNegaZAqjoALpIF7gFZlyn1J9DBXnxLF3KunzT5g6FK~8Fhe-z1J-q9vEFP7WIvYRQipjKItueJQoeeIPAb1vZQ7A7onUexwCFqneJqOvJP9SyxvNI5ByfrirzNAXzW1CDLfJUubLSUkB4-VRpr4xGCfOZLYpw8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 24, + "Company": 6, + "FirstName": "Gumara", + "LastName": "Mata", + "DisplayName": "Gumara Mata", + "OtherName": null, + "Salutation": null, + "MainAddress": 168, + "PostalAddress": null, + "Contact": 272876, + "EmergencyAddress": 284, + "DateOfBirth": "1974-06-23T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 950, + "UserId": 24, + "JobAppId": null, + "Active": true, + "StartDate": "2001-09-24T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275982, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:17-07:00", + "Modified": "2022-07-06T10:57:25-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9331, + "Employee": 2, + "EmployeeHistory": 61410, + "EmployeeAgreement": 102, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664291220, + "EndTime": 1664328780, + "Mealbreak": "2022-09-27T01:04:00-06:00", + "MealbreakSlots": { + "1664306820": "OUT", + "1664310660": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15600, + "intEnd": 19440, + "intUnixStart": 1664306820, + "intUnixEnd": 1664310660, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.37, + "TotalTimeInv": 8.88, + "Cost": 234.25, + "Roster": 21034, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2402, + "File": 16815, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 2, + "Created": "2022-09-27T09:07:40-06:00", + "Modified": "2022-09-27T19:37:13-06:00", + "OnCost": 234.25, + "StartTimeLocalized": "2022-09-27T09:07:00-06:00", + "EndTimeLocalized": "2022-09-27T19:33:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 2, + "Company": 6, + "FirstName": "Daniel", + "LastName": "Renteria", + "DisplayName": "Daniel Renteria", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 13349, + "EmergencyAddress": 300, + "DateOfBirth": "1984-12-14T00:00:00-07:00", + "Gender": 1, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 970, + "UserId": 2, + "JobAppId": null, + "Active": true, + "StartDate": "2021-11-22T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 1, + "AllowAppraisal": true, + "HistoryId": 61410, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-24T16:08:14-07:00", + "Modified": "2022-04-15T13:25:50-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9332, + "Employee": 37, + "EmployeeHistory": 275966, + "EmployeeAgreement": 124, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664292060, + "EndTime": 1664323140, + "Mealbreak": "2022-09-27T01:00:00-06:00", + "MealbreakSlots": { + "1664308980": "OUT", + "1664312580": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 16920, + "intEnd": 20520, + "intUnixStart": 1664308980, + "intUnixEnd": 1664312580, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.63, + "TotalTimeInv": 4.65, + "Cost": 133.525, + "Roster": 21095, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 34, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2415, + "File": 16796, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 39, + "Created": "2022-09-27T09:21:29-06:00", + "Modified": "2022-09-27T19:35:06-06:00", + "OnCost": 133.525, + "StartTimeLocalized": "2022-09-27T09:21:00-06:00", + "EndTimeLocalized": "2022-09-27T17:59:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 39, + "DisplayName": "Benjamin Rico Jr.", + "EmployeeProfile": 37, + "Employee": 37, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8061de79aca156ef3e62fa53502a58c2.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EI~Xg9hMI0vRYMb2MWEVCBXACYGZ0iisoJb2RTLIDpdi-~BjHwzOjOpxHHzzRM74i2PQGzZHDBimDTOSo8AFAwRYh06vOrlHcK3sXdl0-Vu-C635FcLEPKX9fuUP0lVUSA1ddtt6ErQ6lRnniSx-bM39ZYT8QSNlg7tcc9LeTDY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 39, + "DisplayName": "Benjamin Rico Jr.", + "EmployeeProfile": 37, + "Employee": 37, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8061de79aca156ef3e62fa53502a58c2.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EI~Xg9hMI0vRYMb2MWEVCBXACYGZ0iisoJb2RTLIDpdi-~BjHwzOjOpxHHzzRM74i2PQGzZHDBimDTOSo8AFAwRYh06vOrlHcK3sXdl0-Vu-C635FcLEPKX9fuUP0lVUSA1ddtt6ErQ6lRnniSx-bM39ZYT8QSNlg7tcc9LeTDY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 37, + "Company": 3, + "FirstName": "Benjamin", + "LastName": "Rico Jr.", + "DisplayName": "Benjamin Rico Jr.", + "OtherName": null, + "Salutation": null, + "MainAddress": 183, + "PostalAddress": null, + "Contact": 272883, + "EmergencyAddress": 284, + "DateOfBirth": "1990-08-31T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1033, + "UserId": 39, + "JobAppId": null, + "Active": true, + "StartDate": "2015-03-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275966, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:20-07:00", + "Modified": "2022-07-06T10:46:58-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9333, + "Employee": 5, + "EmployeeHistory": 275977, + "EmployeeAgreement": 103, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664292180, + "EndTime": 1664328420, + "Mealbreak": "2022-09-27T01:01:00-06:00", + "MealbreakSlots": { + "1664305680": "OUT", + "1664309340": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 13500, + "intEnd": 17160, + "intUnixStart": 1664305680, + "intUnixEnd": 1664309340, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.05, + "TotalTimeInv": 8.62, + "Cost": 235.3, + "Roster": 21033, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2397, + "File": 16814, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 5, + "Created": "2022-09-27T09:23:22-06:00", + "Modified": "2022-09-27T19:37:13-06:00", + "OnCost": 235.3, + "StartTimeLocalized": "2022-09-27T09:23:00-06:00", + "EndTimeLocalized": "2022-09-27T19:27:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 5, + "DisplayName": "Emmanuel Castro", + "EmployeeProfile": 5, + "Employee": 5, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_48144f3189a12d8355476d40246496c0.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gEIHVmvJDcfYhEQdlwI8R0KdH~kUMyY4nW~4G7e5fqM1m5Mu7l3lDAYt7By5N~x3wXvTJV2xUI7vojcDpycwDgaTLAHmoffK6a8~zm~6DU4wwSg5RZjbf2kTuXMzsDTe8QFpqZTYHd6XRyjNcPKK4j00mPpZoaKArO6BNVkokL8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 5, + "DisplayName": "Emmanuel Castro", + "EmployeeProfile": 5, + "Employee": 5, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_48144f3189a12d8355476d40246496c0.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gEIHVmvJDcfYhEQdlwI8R0KdH~kUMyY4nW~4G7e5fqM1m5Mu7l3lDAYt7By5N~x3wXvTJV2xUI7vojcDpycwDgaTLAHmoffK6a8~zm~6DU4wwSg5RZjbf2kTuXMzsDTe8QFpqZTYHd6XRyjNcPKK4j00mPpZoaKArO6BNVkokL8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 5, + "Company": 6, + "FirstName": "Francisco", + "LastName": "Castro", + "DisplayName": "Emmanuel Castro", + "OtherName": null, + "Salutation": null, + "MainAddress": 164, + "PostalAddress": null, + "Contact": 272871, + "EmergencyAddress": 284, + "DateOfBirth": "1974-05-20T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 993, + "UserId": 5, + "JobAppId": null, + "Active": true, + "StartDate": "2013-05-02T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275977, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-24T16:08:15-07:00", + "Modified": "2022-07-06T10:55:33-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9334, + "Employee": 18, + "EmployeeHistory": 276038, + "EmployeeAgreement": 20, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664292300, + "EndTime": 1664328540, + "Mealbreak": "2022-09-27T01:03:00-06:00", + "MealbreakSlots": { + "1664305500": "OUT", + "1664309280": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 13200, + "intEnd": 16980, + "intUnixStart": 1664305500, + "intUnixEnd": 1664309280, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.02, + "TotalTimeInv": 8.58, + "Cost": 243.54, + "Roster": 21427, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2416, + "File": 16746, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 19, + "Created": "2022-09-27T09:25:07-06:00", + "Modified": "2022-09-27T19:37:12-06:00", + "OnCost": 243.54, + "StartTimeLocalized": "2022-09-27T09:25:00-06:00", + "EndTimeLocalized": "2022-09-27T19:29:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 19, + "DisplayName": "Hector Contreras", + "EmployeeProfile": 18, + "Employee": 18, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_14582f09774732be45869ad3659378cf.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cC18xjqhmTQEJOMLcxD20ahcNI2x85Aynkdehy3Oj32Ax0cDHcuufWsTloCh9pGGSDjlBWDkUzIPHG1FBPUnJuzcBHiFKesIrg5yisU~cupx9Yediy5BvFhc7z1CZjmaHVA6LNR~KWEuiw4y4-zrDH0Kl~2VUcEDTlJKI-XaglE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 19, + "DisplayName": "Hector Contreras", + "EmployeeProfile": 18, + "Employee": 18, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_14582f09774732be45869ad3659378cf.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cC18xjqhmTQEJOMLcxD20ahcNI2x85Aynkdehy3Oj32Ax0cDHcuufWsTloCh9pGGSDjlBWDkUzIPHG1FBPUnJuzcBHiFKesIrg5yisU~cupx9Yediy5BvFhc7z1CZjmaHVA6LNR~KWEuiw4y4-zrDH0Kl~2VUcEDTlJKI-XaglE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 18, + "Company": 3, + "FirstName": "Hector", + "LastName": "Contreras", + "DisplayName": "Hector Contreras", + "OtherName": null, + "Salutation": null, + "MainAddress": 161, + "PostalAddress": null, + "Contact": 272934, + "EmergencyAddress": 284, + "DateOfBirth": "1982-06-27T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1317, + "UserId": 19, + "JobAppId": null, + "Active": true, + "StartDate": "2010-09-16T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 1, + "AllowAppraisal": true, + "HistoryId": 276038, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:16-07:00", + "Modified": "2022-07-14T09:36:52-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9336, + "Employee": 141, + "EmployeeHistory": 276126, + "EmployeeAgreement": 536, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664298000, + "EndTime": 1664326920, + "Mealbreak": "2022-09-27T00:56:00-06:00", + "MealbreakSlots": { + "1664308860": "OUT", + "1664312220": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 10860, + "intEnd": 14220, + "intUnixStart": 1664308860, + "intUnixEnd": 1664312220, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.1, + "TotalTimeInv": 8, + "Cost": 0, + "Roster": 21429, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 59, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2427, + "File": 16812, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 141, + "Created": "2022-09-27T11:00:59-06:00", + "Modified": "2022-09-27T19:37:13-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-27T11:00:00-06:00", + "EndTimeLocalized": "2022-09-27T19:02:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 141, + "DisplayName": "Ashley Campos", + "EmployeeProfile": 141, + "Employee": 141, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e747cbb66ae581183452eb94c895cef6.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=bY8sUIdd46Kp7hwJcR~9xnoQ4Qyu965vGvmpczAZ0Przgd71bU89t1ZuLHFbun3KtTkWVzUZTMqnenZXdjjw55bx5kGCzIWNpD2LBWOG8~KA~JL6ClQZADZ3ZW8Lp7KcLD7-vbj0dDkAeygBDrBi1ds9ou2vl091o7mwV8bdgi0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 59, + "OperationalUnitName": "Clark Page PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Clark Page PA-C" + }, + "EmployeeInfo": { + "Id": 141, + "DisplayName": "Ashley Campos", + "EmployeeProfile": 141, + "Employee": 141, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e747cbb66ae581183452eb94c895cef6.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=bY8sUIdd46Kp7hwJcR~9xnoQ4Qyu965vGvmpczAZ0Przgd71bU89t1ZuLHFbun3KtTkWVzUZTMqnenZXdjjw55bx5kGCzIWNpD2LBWOG8~KA~JL6ClQZADZ3ZW8Lp7KcLD7-vbj0dDkAeygBDrBi1ds9ou2vl091o7mwV8bdgi0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 141, + "Company": 2, + "FirstName": "Ashley", + "LastName": "Campos", + "DisplayName": "Ashley Campos", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272963, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 15830, + "UserId": 141, + "JobAppId": null, + "Active": true, + "StartDate": "2022-09-06T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276126, + "CustomFieldData": null, + "Creator": 2, + "Created": "2022-09-16T10:19:34-06:00", + "Modified": "2022-09-16T10:54:15-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9337, + "Employee": 129, + "EmployeeHistory": 276075, + "EmployeeAgreement": 477, + "Date": "2022-09-27T00:00:00-06:00", + "StartTime": 1664312400, + "EndTime": 1664321220, + "Mealbreak": "2022-09-27T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664312400, + "intUnixEnd": 1664316000, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 2.45, + "TotalTimeInv": 2, + "Cost": 34.3, + "Roster": 21318, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 1, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 72, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2428, + "File": 16785, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 129, + "Created": "2022-09-27T15:00:29-06:00", + "Modified": "2022-09-27T18:04:36-06:00", + "OnCost": 34.3, + "StartTimeLocalized": "2022-09-27T15:00:00-06:00", + "EndTimeLocalized": "2022-09-27T17:27:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 129, + "DisplayName": "Maritza Lopez-Aguirre", + "EmployeeProfile": 129, + "Employee": 129, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_9df15740511a058e0a76afedbdaccb06.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WmoUVp4XuInmkLnVlh9JapYK4JF9J8AyXr1TCq869C2G~3r~arp7~kyIrL4iQ-VIqPBVIroDdyWMGL1YtPlN8AEyu6rhP5tBTrF7nphD1gGMBYQlNj773ElgFNaJ7DzXGeqwWusmkj~3YEUBiGhqjpTJlHig3JTg8DmYgVoTCeQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 72, + "OperationalUnitName": "Nadia Quintanilla PA-C", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Nadia Quintanilla PA-C" + }, + "EmployeeInfo": { + "Id": 129, + "DisplayName": "Maritza Lopez-Aguirre", + "EmployeeProfile": 129, + "Employee": 129, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_9df15740511a058e0a76afedbdaccb06.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WmoUVp4XuInmkLnVlh9JapYK4JF9J8AyXr1TCq869C2G~3r~arp7~kyIrL4iQ-VIqPBVIroDdyWMGL1YtPlN8AEyu6rhP5tBTrF7nphD1gGMBYQlNj773ElgFNaJ7DzXGeqwWusmkj~3YEUBiGhqjpTJlHig3JTg8DmYgVoTCeQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 129, + "Company": 2, + "FirstName": "Maritza", + "LastName": "Lopez-Aguirre", + "DisplayName": "Maritza Lopez-Aguirre", + "OtherName": null, + "Salutation": null, + "MainAddress": 323, + "PostalAddress": null, + "Contact": 234560, + "EmergencyAddress": 284, + "DateOfBirth": "2022-05-30T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 6574, + "UserId": 129, + "JobAppId": null, + "Active": true, + "StartDate": null, + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276075, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-06-08T14:21:06-06:00", + "Modified": "2022-08-17T12:56:16-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9340, + "Employee": 46, + "EmployeeHistory": 275993, + "EmployeeAgreement": 48, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664372160, + "EndTime": 1664404380, + "Mealbreak": "2022-09-28T00:41:00-06:00", + "MealbreakSlots": { + "1664387880": "OUT", + "1664390340": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15720, + "intEnd": 18180, + "intUnixStart": 1664387880, + "intUnixEnd": 1664390340, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.27, + "TotalTimeInv": 8, + "Cost": 111.645, + "Roster": 21107, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2357, + "File": 16905, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 47, + "Created": "2022-09-28T07:36:15-06:00", + "Modified": "2022-09-28T21:46:31-06:00", + "OnCost": 111.645, + "StartTimeLocalized": "2022-09-28T07:36:00-06:00", + "EndTimeLocalized": "2022-09-28T16:33:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 47, + "DisplayName": "Mayela Guereca", + "EmployeeProfile": 46, + "Employee": 46, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_aab7758d4f20d64e04849c4ba821103b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=YF4Jf5-97CcDd6k-4amyzDX3ixhlP2m5sM7OlfeBkt1Pezm-NUysosh6aySB-D0jl-YQtr4bzBTUSjpxUS6iLEoTH0KwN7FkHIo1GJRt5iU~x1uLnfmie2~8iW80lOs9tIM7UNT3K~9gQjeHlsyAaZXUesGJC71OHnnn8DBaQik_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 47, + "DisplayName": "Mayela Guereca", + "EmployeeProfile": 46, + "Employee": 46, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_aab7758d4f20d64e04849c4ba821103b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=YF4Jf5-97CcDd6k-4amyzDX3ixhlP2m5sM7OlfeBkt1Pezm-NUysosh6aySB-D0jl-YQtr4bzBTUSjpxUS6iLEoTH0KwN7FkHIo1GJRt5iU~x1uLnfmie2~8iW80lOs9tIM7UNT3K~9gQjeHlsyAaZXUesGJC71OHnnn8DBaQik_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 46, + "Company": 6, + "FirstName": "Hermenegilda", + "LastName": "Guereca", + "DisplayName": "Mayela Guereca", + "OtherName": null, + "Salutation": null, + "MainAddress": 191, + "PostalAddress": null, + "Contact": 272892, + "EmergencyAddress": 284, + "DateOfBirth": "1974-08-04T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 996, + "UserId": 47, + "JobAppId": null, + "Active": true, + "StartDate": "2021-09-13T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275993, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:22-07:00", + "Modified": "2022-07-06T11:07:12-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9341, + "Employee": 66, + "EmployeeHistory": 276031, + "EmployeeAgreement": 69, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664372160, + "EndTime": 1664397360, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 0, + "intUnixStart": 1664372160, + "intUnixEnd": 1664372160, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 7, + "TotalTimeInv": 5.25, + "Cost": 105, + "Roster": 21342, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2355, + "File": 16899, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 66, + "Created": "2022-09-28T07:36:27-06:00", + "Modified": "2022-09-28T14:42:59-06:00", + "OnCost": 105, + "StartTimeLocalized": "2022-09-28T07:36:00-06:00", + "EndTimeLocalized": "2022-09-28T14:36:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 66, + "DisplayName": "Susana Ramirez", + "EmployeeProfile": 66, + "Employee": 66, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f9cbcf12ef4912707ca2709b9797d241.jpg?Expires=1664545544&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Mv08rYSP12VwrHXRruztZBjPnslxIoOnXLpAXXAEZH9PlmzxczuSBuis6amSxatQLnan0awUO-jEQ8Re3bYEDStl2NXOjhNZbzNw5-xxrGe-h8zOgXff0O1dBgkjR8EvXULF19GYabSTID9JNxG3bs2HyOEKB6os9LdWNRyUd2I_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 66, + "DisplayName": "Susana Ramirez", + "EmployeeProfile": 66, + "Employee": 66, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f9cbcf12ef4912707ca2709b9797d241.jpg?Expires=1664545544&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Mv08rYSP12VwrHXRruztZBjPnslxIoOnXLpAXXAEZH9PlmzxczuSBuis6amSxatQLnan0awUO-jEQ8Re3bYEDStl2NXOjhNZbzNw5-xxrGe-h8zOgXff0O1dBgkjR8EvXULF19GYabSTID9JNxG3bs2HyOEKB6os9LdWNRyUd2I_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 66, + "Company": 4, + "FirstName": "Susana", + "LastName": "Ramirez", + "DisplayName": "Susana Ramirez", + "OtherName": null, + "Salutation": null, + "MainAddress": 216, + "PostalAddress": null, + "Contact": 272906, + "EmergencyAddress": 263, + "DateOfBirth": "1976-06-09T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1067, + "UserId": 66, + "JobAppId": null, + "Active": true, + "StartDate": "2020-08-10T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276031, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:26-07:00", + "Modified": "2022-07-11T12:11:35-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9342, + "Employee": 47, + "EmployeeHistory": 276009, + "EmployeeAgreement": 49, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664372160, + "EndTime": 1664404500, + "Mealbreak": "2022-09-28T00:30:00-06:00", + "MealbreakSlots": { + "1664391720": "OUT", + "1664393520": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 19560, + "intEnd": 21360, + "intUnixStart": 1664391720, + "intUnixEnd": 1664393520, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.48, + "TotalTimeInv": 8.5, + "Cost": 144.16, + "Roster": 21124, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2358, + "File": 16906, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 46, + "Created": "2022-09-28T07:36:34-06:00", + "Modified": "2022-09-28T21:46:30-06:00", + "OnCost": 144.16, + "StartTimeLocalized": "2022-09-28T07:36:00-06:00", + "EndTimeLocalized": "2022-09-28T16:35:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 46, + "DisplayName": "Victor Rodriguez", + "EmployeeProfile": 47, + "Employee": 47, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6ef336a6a9cd56b2d1bd1b234ae66de3.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UGXfleUvjHE6qvoPEVFQLGdGVqxhZXYacfcREflTAb5V42Mu7XadcuUaAFumltzbPDvFG3~w15EHcYohiSIp9uX-hegZEMjNcUd4Dbsw5NTFJoJWmSjzk6tldj-eh5gm6VR55z8lKfkyqH422DD4if5Ep102xiZvN67-4pAx19k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 46, + "DisplayName": "Victor Rodriguez", + "EmployeeProfile": 47, + "Employee": 47, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6ef336a6a9cd56b2d1bd1b234ae66de3.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UGXfleUvjHE6qvoPEVFQLGdGVqxhZXYacfcREflTAb5V42Mu7XadcuUaAFumltzbPDvFG3~w15EHcYohiSIp9uX-hegZEMjNcUd4Dbsw5NTFJoJWmSjzk6tldj-eh5gm6VR55z8lKfkyqH422DD4if5Ep102xiZvN67-4pAx19k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 47, + "Company": 6, + "FirstName": "Victor", + "LastName": "Rodriguez", + "DisplayName": "Victor Rodriguez", + "OtherName": null, + "Salutation": null, + "MainAddress": 191, + "PostalAddress": null, + "Contact": 272891, + "EmergencyAddress": 284, + "DateOfBirth": "1996-05-02T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1001, + "UserId": 46, + "JobAppId": null, + "Active": true, + "StartDate": "2021-03-24T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276009, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:22-07:00", + "Modified": "2022-07-06T11:20:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9343, + "Employee": 80, + "EmployeeHistory": 275995, + "EmployeeAgreement": 83, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664372220, + "EndTime": 1664408400, + "Mealbreak": "2022-09-28T01:01:00-06:00", + "MealbreakSlots": { + "1664388060": "OUT", + "1664391720": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15840, + "intEnd": 19500, + "intUnixStart": 1664388060, + "intUnixEnd": 1664391720, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.03, + "TotalTimeInv": 8.25, + "Cost": 126.42, + "Roster": 21225, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 33, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2370, + "File": 16913, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 80, + "Created": "2022-09-28T07:37:08-06:00", + "Modified": "2022-09-28T21:46:31-06:00", + "OnCost": 126.42, + "StartTimeLocalized": "2022-09-28T07:37:00-06:00", + "EndTimeLocalized": "2022-09-28T17:40:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 80, + "DisplayName": "Michelle Mireles", + "EmployeeProfile": 80, + "Employee": 80, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_58b0ad92f564a5ee12977eea5eb008c9.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hp-zipvv5NyrMnl8s9SQJe6RI7d-SwtlmLNWX84XZf-Y83zbAuptR8cV3UHkuJQDQ6rEqpagn2hVJyYGUV0jFEyKUTpxXMi5XsDTKW7Uj6Cp2vLVtv9-mdOmNOqgd3s1roK3OJra~1Atd~lntRligghnxL3fygpH-nCtlfGak~M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 33, + "OperationalUnitName": "Medical Assistants", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 80, + "DisplayName": "Michelle Mireles", + "EmployeeProfile": 80, + "Employee": 80, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_58b0ad92f564a5ee12977eea5eb008c9.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hp-zipvv5NyrMnl8s9SQJe6RI7d-SwtlmLNWX84XZf-Y83zbAuptR8cV3UHkuJQDQ6rEqpagn2hVJyYGUV0jFEyKUTpxXMi5XsDTKW7Uj6Cp2vLVtv9-mdOmNOqgd3s1roK3OJra~1Atd~lntRligghnxL3fygpH-nCtlfGak~M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 80, + "Company": 4, + "FirstName": "Michelle", + "LastName": "Mireles", + "DisplayName": "Michelle Mireles", + "OtherName": null, + "Salutation": null, + "MainAddress": 277, + "PostalAddress": null, + "Contact": 272918, + "EmergencyAddress": 284, + "DateOfBirth": "2000-09-10T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1035, + "UserId": 80, + "JobAppId": null, + "Active": true, + "StartDate": "2021-10-20T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275995, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:29-07:00", + "Modified": "2022-07-06T11:07:44-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9344, + "Employee": 30, + "EmployeeHistory": 170130, + "EmployeeAgreement": 32, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664372280, + "EndTime": 1664411280, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664391780": "OUT", + "1664395380": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 19500, + "intEnd": 23100, + "intUnixStart": 1664391780, + "intUnixEnd": 1664395380, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.83, + "TotalTimeInv": 6.25, + "Cost": 167.11, + "Roster": 21072, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2360, + "File": 16926, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 29, + "Created": "2022-09-28T07:38:30-06:00", + "Modified": "2022-09-28T21:46:30-06:00", + "OnCost": 167.11, + "StartTimeLocalized": "2022-09-28T07:38:00-06:00", + "EndTimeLocalized": "2022-09-28T18:28:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 29, + "DisplayName": "Aracely Tirrell", + "EmployeeProfile": 30, + "Employee": 30, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0d6425f581e9558209dd05be4e252239.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L9-lhv8DadL3tonHbygPqGiLf7bJAmakD7hzTwKXLJc3~GIZU6n16NldpwO6IqaxrQ61jRs9SH2sv0q1xRVN2sf7pv8rvyPxVEgPib~cuBzneMQ4FI5NBhKOIbx0ggCpukXtdUwwLgmjIGcOcdIqmZ8qCNbnre9QR63AEXdvgJU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 29, + "DisplayName": "Aracely Tirrell", + "EmployeeProfile": 30, + "Employee": 30, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0d6425f581e9558209dd05be4e252239.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L9-lhv8DadL3tonHbygPqGiLf7bJAmakD7hzTwKXLJc3~GIZU6n16NldpwO6IqaxrQ61jRs9SH2sv0q1xRVN2sf7pv8rvyPxVEgPib~cuBzneMQ4FI5NBhKOIbx0ggCpukXtdUwwLgmjIGcOcdIqmZ8qCNbnre9QR63AEXdvgJU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 30, + "Company": 6, + "FirstName": "Aracely", + "LastName": "Tirrell", + "DisplayName": "Aracely Tirrell", + "OtherName": null, + "Salutation": null, + "MainAddress": 176, + "PostalAddress": null, + "Contact": 167145, + "EmergencyAddress": 284, + "DateOfBirth": "1978-06-12T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 990, + "UserId": 29, + "JobAppId": null, + "Active": true, + "StartDate": null, + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 1, + "AllowAppraisal": true, + "HistoryId": 170130, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:18-07:00", + "Modified": "2022-05-23T08:00:28-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9345, + "Employee": 60, + "EmployeeHistory": 275996, + "EmployeeAgreement": 63, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664372640, + "EndTime": 1664393520, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 0, + "intUnixStart": 1664372640, + "intUnixEnd": 1664372640, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.8, + "TotalTimeInv": 6.25, + "Cost": 162.4, + "Roster": 21132, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 37, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2361, + "File": 16887, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 60, + "Created": "2022-09-28T07:44:14-06:00", + "Modified": "2022-09-28T14:12:16-06:00", + "OnCost": 162.4, + "StartTimeLocalized": "2022-09-28T07:44:00-06:00", + "EndTimeLocalized": "2022-09-28T13:32:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 60, + "DisplayName": "Michelle Woo", + "EmployeeProfile": 60, + "Employee": 60, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_962116eaa6ef3f7c69e80c5ba249e082.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=d-iCH-7s4qiRodf0w88ph7HZLa81OUuXwW6jVe41TXHTMZCfMsAnzchyJXNySONd2XzXZWDwrbSnUVABRspOzUFKYd59X-wJBDHURanzm03oHzU0qMwU7fwUkg77bbwVckCUz7-nzIl6ClPCCi~X0rLyc5a5s28KRIvqLJA0U2Q_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 37, + "OperationalUnitName": "Sono", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Sono" + }, + "EmployeeInfo": { + "Id": 60, + "DisplayName": "Michelle Woo", + "EmployeeProfile": 60, + "Employee": 60, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_962116eaa6ef3f7c69e80c5ba249e082.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=d-iCH-7s4qiRodf0w88ph7HZLa81OUuXwW6jVe41TXHTMZCfMsAnzchyJXNySONd2XzXZWDwrbSnUVABRspOzUFKYd59X-wJBDHURanzm03oHzU0qMwU7fwUkg77bbwVckCUz7-nzIl6ClPCCi~X0rLyc5a5s28KRIvqLJA0U2Q_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 60, + "Company": 3, + "FirstName": "Michelle", + "LastName": "Woo", + "DisplayName": "Michelle Woo", + "OtherName": null, + "Salutation": null, + "MainAddress": 207, + "PostalAddress": null, + "Contact": 272901, + "EmergencyAddress": 294, + "DateOfBirth": "1986-02-12T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1045, + "UserId": 60, + "JobAppId": null, + "Active": true, + "StartDate": "2019-05-13T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275996, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:25-07:00", + "Modified": "2022-07-06T11:07:59-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9346, + "Employee": 29, + "EmployeeHistory": 276050, + "EmployeeAgreement": 31, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664372640, + "EndTime": 1664408520, + "Mealbreak": "2022-09-28T01:12:00-06:00", + "MealbreakSlots": { + "1664393520": "OUT", + "1664397840": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 20880, + "intEnd": 25200, + "intUnixStart": 1664393520, + "intUnixEnd": 1664397840, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.77, + "TotalTimeInv": 9.25, + "Cost": 149.09, + "Roster": 21070, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 36, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2362, + "File": 16920, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 30, + "Created": "2022-09-28T07:44:24-06:00", + "Modified": "2022-09-28T21:46:31-06:00", + "OnCost": 149.09, + "StartTimeLocalized": "2022-09-28T07:44:00-06:00", + "EndTimeLocalized": "2022-09-28T17:42:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 30, + "DisplayName": "Silvia Salcido de Moreno", + "EmployeeProfile": 29, + "Employee": 29, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3f067188d2050db4e922a9904d14c196.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UcsrcSR8gqr2CtXJRC5u9r0w44WmO69SeBmOZzONvnRUN9soxtxeN4cWNYXLk7kptSLZsp2MH8CsIQb65O~b7Ccs2tkpU9aPsApMWxYLqAoewtSHOI3B3fDxRHXigUBKmy-SswnDqgI79qIjSvF0YlDps-ubZsEyLwnDrd9xq74_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 36, + "OperationalUnitName": "Medical Assistants", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 30, + "DisplayName": "Silvia Salcido de Moreno", + "EmployeeProfile": 29, + "Employee": 29, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3f067188d2050db4e922a9904d14c196.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UcsrcSR8gqr2CtXJRC5u9r0w44WmO69SeBmOZzONvnRUN9soxtxeN4cWNYXLk7kptSLZsp2MH8CsIQb65O~b7Ccs2tkpU9aPsApMWxYLqAoewtSHOI3B3fDxRHXigUBKmy-SswnDqgI79qIjSvF0YlDps-ubZsEyLwnDrd9xq74_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 29, + "Company": 3, + "FirstName": "Silvia", + "LastName": "Salcido de Moreno", + "DisplayName": "Silvia Salcido de Moreno", + "OtherName": null, + "Salutation": null, + "MainAddress": 175, + "PostalAddress": null, + "Contact": 272939, + "EmergencyAddress": 284, + "DateOfBirth": "1986-11-10T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1022, + "UserId": 30, + "JobAppId": null, + "Active": true, + "StartDate": "2013-09-23T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276050, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:18-07:00", + "Modified": "2022-07-22T08:51:06-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9338, + "Employee": 21, + "EmployeeHistory": 275991, + "EmployeeAgreement": 23, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664372700, + "EndTime": 1664401500, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [], + "TotalTime": 8, + "TotalTimeInv": 8, + "Cost": 0, + "Roster": null, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": null, + "IsInProgress": null, + "IsLeave": true, + "LeaveId": 346, + "LeaveRule": 2, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2368, + "File": null, + "CustomFieldData": null, + "RealTime": false, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": -2, + "Created": "2022-09-28T00:11:41-06:00", + "Modified": "2022-09-28T00:11:41-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T07:45:00-06:00", + "EndTimeLocalized": "2022-09-28T15:45:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": -1, + "DisplayName": "Deputy", + "Photo": "https://d2sebmzxyyulvv.cloudfront.net/deputy-avatar-30.png" + }, + "OperationalUnitInfo": null, + "EmployeeInfo": { + "Id": 21, + "DisplayName": "Maria Guillen", + "EmployeeProfile": 21, + "Employee": 21, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e3b5bec34009dbb7139833c1258194bf.jpg?Expires=1664555144&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=QZLu0svi5t00EF-oNgG~isJqr9noBslJNac-HcCFxP6dhJ5glS27ItJtD22GTdCeJBR76NBfHEkjtSVVfY6mRfsm7nTniReC6MUwPZcxtqbEGAa~TX2gJWJeHbovO-g68kMgioz~aFdXNGvAdcKYdUI62fskf7POfIP2xI3jMXU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 21, + "Company": 4, + "FirstName": "Maria", + "LastName": "Guillen", + "DisplayName": "Maria Guillen", + "OtherName": null, + "Salutation": null, + "MainAddress": 165, + "PostalAddress": null, + "Contact": 272875, + "EmergencyAddress": 284, + "DateOfBirth": "1979-03-23T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1091, + "UserId": 21, + "JobAppId": null, + "Active": true, + "StartDate": "2002-11-22T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275991, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:17-07:00", + "Modified": "2022-07-06T11:05:55-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9339, + "Employee": 45, + "EmployeeHistory": 130453, + "EmployeeAgreement": 47, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664372700, + "EndTime": 1664401500, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [], + "TotalTime": 8, + "TotalTimeInv": 8, + "Cost": 0, + "Roster": null, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": null, + "IsInProgress": null, + "IsLeave": true, + "LeaveId": 294, + "LeaveRule": 2, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2414, + "File": null, + "CustomFieldData": null, + "RealTime": false, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": -2, + "Created": "2022-09-28T00:11:41-06:00", + "Modified": "2022-09-28T00:11:42-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T07:45:00-06:00", + "EndTimeLocalized": "2022-09-28T15:45:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": -1, + "DisplayName": "Deputy", + "Photo": "https://d2sebmzxyyulvv.cloudfront.net/deputy-avatar-30.png" + }, + "OperationalUnitInfo": null, + "EmployeeInfo": { + "Id": 45, + "DisplayName": "Jailene Lopez", + "EmployeeProfile": 45, + "Employee": 45, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f97ca5201b058a36c032450a7051ca39.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=TdzfMkUJhNecAttB2ZwvI3yL0GqemIWxDkWDj0aj7-C6lNsg5izpe7Z5yyjrtNh1vrOqWpTe9mtH7dS7aekXEjo6UwtUWCC7nVLy-gzHQk2y5ywGkXXrdsRDbNAZy05Z3gTSAjIK1tRfHXaonn~rBe~OXSVRziN483wiUH5ESs8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 45, + "Company": 6, + "FirstName": "Jailene", + "LastName": "Lopez", + "DisplayName": "Jailene Lopez", + "OtherName": null, + "Salutation": null, + "MainAddress": 190, + "PostalAddress": null, + "Contact": 666, + "EmergencyAddress": 284, + "DateOfBirth": "1997-05-31T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 959, + "UserId": 45, + "JobAppId": null, + "Active": true, + "StartDate": "2001-09-24T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 130453, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:21-07:00", + "Modified": "2022-04-28T11:07:03-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9347, + "Employee": 132, + "EmployeeHistory": 276017, + "EmployeeAgreement": 490, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664372700, + "EndTime": 1664406060, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664388780": "OUT", + "1664392380": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 16080, + "intEnd": 19680, + "intUnixStart": 1664388780, + "intUnixEnd": 1664392380, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.27, + "TotalTimeInv": 9.25, + "Cost": 206.75, + "Roster": 21332, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 26, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2359, + "File": 16907, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 132, + "Created": "2022-09-28T07:45:22-06:00", + "Modified": "2022-09-28T17:26:22-06:00", + "OnCost": 206.75, + "StartTimeLocalized": "2022-09-28T07:45:00-06:00", + "EndTimeLocalized": "2022-09-28T17:01:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 132, + "DisplayName": "Jon", + "EmployeeProfile": 132, + "Employee": 132, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fd566c9266f17faafed72321559bb482.jpg?Expires=1664545771&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=ZvT4WL2UTLQq~hjnwDzKCIjP~rcjzy8nvT2Tf1FQh5kqXvaaR3y9JUPNUoAJMJkeDJVeqPIaw6VjooKrYcMn5FiWzva7-rCtAFyXvTlffzjyWsKQTFpH4z0p8MCuAlg7m0DUrMcNniShXq~eD3G2dyH6oWEwPdAt8egjx9fTjkA_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 26, + "OperationalUnitName": "Sono", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Sono" + }, + "EmployeeInfo": { + "Id": 132, + "DisplayName": "Jon", + "EmployeeProfile": 132, + "Employee": 132, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fd566c9266f17faafed72321559bb482.jpg?Expires=1664545771&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=ZvT4WL2UTLQq~hjnwDzKCIjP~rcjzy8nvT2Tf1FQh5kqXvaaR3y9JUPNUoAJMJkeDJVeqPIaw6VjooKrYcMn5FiWzva7-rCtAFyXvTlffzjyWsKQTFpH4z0p8MCuAlg7m0DUrMcNniShXq~eD3G2dyH6oWEwPdAt8egjx9fTjkA_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 132, + "Company": 2, + "FirstName": "Jonathan", + "LastName": "Ojeda", + "DisplayName": "Jon", + "OtherName": null, + "Salutation": null, + "MainAddress": 330, + "PostalAddress": null, + "Contact": 272928, + "EmergencyAddress": 328, + "DateOfBirth": "1982-01-06T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 8226, + "UserId": 132, + "JobAppId": null, + "Active": true, + "StartDate": "2022-06-13T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276017, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-06-23T15:14:56-06:00", + "Modified": "2022-07-06T11:36:58-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9348, + "Employee": 31, + "EmployeeHistory": 276023, + "EmployeeAgreement": 33, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664372820, + "EndTime": 1664414640, + "Mealbreak": "2022-09-28T01:12:00-06:00", + "MealbreakSlots": { + "1664392860": "OUT", + "1664397180": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 20040, + "intEnd": 24360, + "intUnixStart": 1664392860, + "intUnixEnd": 1664397180, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 10.42, + "TotalTimeInv": 11.22, + "Cost": 0, + "Roster": 21067, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2354, + "File": 16931, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 32, + "Created": "2022-09-28T07:47:00-06:00", + "Modified": "2022-09-28T21:46:31-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T07:47:00-06:00", + "EndTimeLocalized": "2022-09-28T19:24:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 32, + "DisplayName": "Freddie Valenzuela", + "EmployeeProfile": 31, + "Employee": 31, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7c2a899a81bcf132fcaf0134cfea8dfd.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=HvxHTCgpy6ba-LfIJ-A5XP5mHrKH3Ki7y8iqaGkwxAbsaV5QBvGPmcawaZ4kPj30kKQVvI3xJ2gk8txGhdncdcirtdlLXvLbTiU2~gb9MMxl0PHTDkQkfXG75RHugSzBYogXNAHfdm4aP4L6pbVPSbky9oXIUNCQq5esH3LalBk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 32, + "DisplayName": "Freddie Valenzuela", + "EmployeeProfile": 31, + "Employee": 31, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7c2a899a81bcf132fcaf0134cfea8dfd.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=HvxHTCgpy6ba-LfIJ-A5XP5mHrKH3Ki7y8iqaGkwxAbsaV5QBvGPmcawaZ4kPj30kKQVvI3xJ2gk8txGhdncdcirtdlLXvLbTiU2~gb9MMxl0PHTDkQkfXG75RHugSzBYogXNAHfdm4aP4L6pbVPSbky9oXIUNCQq5esH3LalBk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 31, + "Company": 2, + "FirstName": "Freddie", + "LastName": "Valenzuela", + "DisplayName": "Freddie Valenzuela", + "OtherName": null, + "Salutation": null, + "MainAddress": 177, + "PostalAddress": null, + "Contact": 272931, + "EmergencyAddress": 284, + "DateOfBirth": "1971-07-25T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 9531, + "UserId": 32, + "JobAppId": null, + "Active": true, + "StartDate": "2006-11-20T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276023, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:19-07:00", + "Modified": "2022-07-11T09:16:50-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9349, + "Employee": 74, + "EmployeeHistory": 275980, + "EmployeeAgreement": 141, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664372880, + "EndTime": 1664389260, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -180, + "intEnd": 3420, + "intUnixStart": 1664372700, + "intUnixEnd": 1664376300, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 4.55, + "TotalTimeInv": 4.2, + "Cost": 63.7, + "Roster": 21458, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 21, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2390, + "File": 16871, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 74, + "Created": "2022-09-28T07:48:03-06:00", + "Modified": "2022-09-28T14:12:16-06:00", + "OnCost": 63.7, + "StartTimeLocalized": "2022-09-28T07:48:00-06:00", + "EndTimeLocalized": "2022-09-28T12:21:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 74, + "DisplayName": "Gabriel Cuevas", + "EmployeeProfile": 74, + "Employee": 74, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_484f0cb4a4ee813fd8e8cb72473256db.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gpL2IPsSlGgn7~rak~dVlyUrJRO4CJo4piyS13ubJ9a9mlyFEzJubll2hZhAJLg7KOFM90PYoo~Nt4~-nid52m~cG~DK57J5b~8AqXh~726vvbTZ4Kl-CTOyK-n9AJbN2AGJBwSuZIfwlY~-0TRDoXlUhxDKpjg0K6mGFkKiR0g_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 21, + "OperationalUnitName": "Dr. Saenz", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Saenz" + }, + "EmployeeInfo": { + "Id": 74, + "DisplayName": "Gabriel Cuevas", + "EmployeeProfile": 74, + "Employee": 74, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_484f0cb4a4ee813fd8e8cb72473256db.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gpL2IPsSlGgn7~rak~dVlyUrJRO4CJo4piyS13ubJ9a9mlyFEzJubll2hZhAJLg7KOFM90PYoo~Nt4~-nid52m~cG~DK57J5b~8AqXh~726vvbTZ4Kl-CTOyK-n9AJbN2AGJBwSuZIfwlY~-0TRDoXlUhxDKpjg0K6mGFkKiR0g_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 74, + "Company": 4, + "FirstName": "Gabriel", + "LastName": "Cuevas", + "DisplayName": "Gabriel Cuevas", + "OtherName": null, + "Salutation": null, + "MainAddress": 231, + "PostalAddress": null, + "Contact": 272914, + "EmergencyAddress": 270, + "DateOfBirth": "2001-08-14T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1039, + "UserId": 74, + "JobAppId": null, + "Active": true, + "StartDate": "2021-05-04T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275980, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-07-06T10:56:48-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9350, + "Employee": 128, + "EmployeeHistory": 276020, + "EmployeeAgreement": 472, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373000, + "EndTime": 1664407200, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664390100": "OUT", + "1664393700": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17100, + "intEnd": 20700, + "intUnixStart": 1664390100, + "intUnixEnd": 1664393700, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.5, + "TotalTimeInv": 9, + "Cost": 0, + "Roster": 21307, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2356, + "File": 16911, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 128, + "Created": "2022-09-28T07:50:20-06:00", + "Modified": "2022-09-28T21:46:58-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T07:50:00-06:00", + "EndTimeLocalized": "2022-09-28T17:20:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 128, + "DisplayName": "Cynthia Dufour", + "EmployeeProfile": 128, + "Employee": 128, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a062de8916b1f73d00ffbb0d423b5fc9.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=e33negGuVbvRCqGLhUnmz5-e3C~L6OUMx8u1s-tg3l8Q09gGXu1hCEfxYyZB1e5xzlKYHmSAb0j36gxODXhZ8BWImlhg5GEzblkkzbSgXIE6Xanfbxnjz6grfquAgovfvJPkXOZ5lNo8Bi2i8uyfTgSvo6fSkhnGazdcWSORpuY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 128, + "DisplayName": "Cynthia Dufour", + "EmployeeProfile": 128, + "Employee": 128, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a062de8916b1f73d00ffbb0d423b5fc9.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=e33negGuVbvRCqGLhUnmz5-e3C~L6OUMx8u1s-tg3l8Q09gGXu1hCEfxYyZB1e5xzlKYHmSAb0j36gxODXhZ8BWImlhg5GEzblkkzbSgXIE6Xanfbxnjz6grfquAgovfvJPkXOZ5lNo8Bi2i8uyfTgSvo6fSkhnGazdcWSORpuY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 128, + "Company": 6, + "FirstName": "Cynthia", + "LastName": "Dufour", + "DisplayName": "Cynthia Dufour", + "OtherName": null, + "Salutation": null, + "MainAddress": 320, + "PostalAddress": null, + "Contact": 272925, + "EmergencyAddress": 321, + "DateOfBirth": "1982-09-10T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 6559, + "UserId": 128, + "JobAppId": null, + "Active": true, + "StartDate": "2022-05-31T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276020, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-06-07T10:00:23-06:00", + "Modified": "2022-07-07T09:17:48-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9351, + "Employee": 33, + "EmployeeHistory": 276032, + "EmployeeAgreement": 233, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373000, + "EndTime": 1664377920, + "Mealbreak": "2022-09-28T00:25:00-06:00", + "MealbreakSlots": { + "1664376420": "OUT", + "1664377920": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 3420, + "intEnd": 4920, + "intUnixStart": 1664376420, + "intUnixEnd": 1664377920, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 0.95, + "TotalTimeInv": 9.17, + "Cost": 16.625, + "Roster": 21343, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 33, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2429, + "File": 16860, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 33, + "Created": "2022-09-28T07:50:29-06:00", + "Modified": "2022-09-28T14:12:16-06:00", + "OnCost": 16.625, + "StartTimeLocalized": "2022-09-28T07:50:00-06:00", + "EndTimeLocalized": "2022-09-28T09:12:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 33, + "DisplayName": "Amelia Zuniga", + "EmployeeProfile": 33, + "Employee": 33, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_2e911edb39d56a316db767b82f9211e3.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EVK8YiMz2gVIKIFg0Vea7WkJX-3trkZeSpHexI9F84gODY5GcLXxIVNkRVEopxAoHHdI6oshPLM-8ec4ppqM7ClF0PM2ULb9umgOdaEc~i30mkOwqlSIk~X8dqmxWNB~LeMnhkYnT3XPqnAsYsCbthkE9r5M05d5AS0ZYRziXn8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 33, + "OperationalUnitName": "Medical Assistants", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 33, + "DisplayName": "Amelia Zuniga", + "EmployeeProfile": 33, + "Employee": 33, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_2e911edb39d56a316db767b82f9211e3.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EVK8YiMz2gVIKIFg0Vea7WkJX-3trkZeSpHexI9F84gODY5GcLXxIVNkRVEopxAoHHdI6oshPLM-8ec4ppqM7ClF0PM2ULb9umgOdaEc~i30mkOwqlSIk~X8dqmxWNB~LeMnhkYnT3XPqnAsYsCbthkE9r5M05d5AS0ZYRziXn8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 33, + "Company": 2, + "FirstName": "Amelia", + "LastName": "Zuniga", + "DisplayName": "Amelia Zuniga", + "OtherName": null, + "Salutation": null, + "MainAddress": 179, + "PostalAddress": null, + "Contact": 272880, + "EmergencyAddress": 284, + "DateOfBirth": "1979-10-14T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 934, + "UserId": 33, + "JobAppId": null, + "Active": true, + "StartDate": "2013-09-30T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276032, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:19-07:00", + "Modified": "2022-07-11T12:14:07-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9352, + "Employee": 86, + "EmployeeHistory": 276021, + "EmployeeAgreement": 89, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373060, + "EndTime": 1664402400, + "Mealbreak": "2022-09-28T00:54:00-06:00", + "MealbreakSlots": { + "1664388540": "OUT", + "1664391780": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15480, + "intEnd": 18720, + "intUnixStart": 1664388540, + "intUnixEnd": 1664391780, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.25, + "TotalTimeInv": 9.15, + "Cost": 101.5, + "Roster": 21228, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 36, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2367, + "File": 16904, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 86, + "Created": "2022-09-28T07:51:08-06:00", + "Modified": "2022-09-28T21:46:30-06:00", + "OnCost": 101.5, + "StartTimeLocalized": "2022-09-28T07:51:00-06:00", + "EndTimeLocalized": "2022-09-28T16:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 86, + "DisplayName": "Aldo Avalos", + "EmployeeProfile": 86, + "Employee": 86, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3eb3267981c5efb334c2afbffd04cfbc.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cZItaLHsgvlP1gxq7BtwMpBgfIi98fE2uOcdTzI27hyNqOjwpxSyHEjABqf~cgFVyYn17CQQ-O5-5T3ePiZHT9deei6n7U9n7J4S~XmOiB0pTYDlq6zZQv--ijgyM-yVEnKPzAEWU1zruW0sm3-TdUfzVMTvSf7j0jqKPvunnpo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 36, + "OperationalUnitName": "Medical Assistants", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 86, + "DisplayName": "Aldo Avalos", + "EmployeeProfile": 86, + "Employee": 86, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3eb3267981c5efb334c2afbffd04cfbc.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cZItaLHsgvlP1gxq7BtwMpBgfIi98fE2uOcdTzI27hyNqOjwpxSyHEjABqf~cgFVyYn17CQQ-O5-5T3ePiZHT9deei6n7U9n7J4S~XmOiB0pTYDlq6zZQv--ijgyM-yVEnKPzAEWU1zruW0sm3-TdUfzVMTvSf7j0jqKPvunnpo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 86, + "Company": 3, + "FirstName": "Aldo", + "LastName": "Avalos", + "DisplayName": "Aldo Avalos", + "OtherName": null, + "Salutation": null, + "MainAddress": 251, + "PostalAddress": null, + "Contact": 272923, + "EmergencyAddress": 284, + "DateOfBirth": "1993-08-11T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1072, + "UserId": 86, + "JobAppId": null, + "Active": true, + "StartDate": "2022-03-23T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276021, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:31-07:00", + "Modified": "2022-07-07T09:21:06-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9353, + "Employee": 73, + "EmployeeHistory": 276007, + "EmployeeAgreement": 76, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373120, + "EndTime": 1664407980, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664395200": "OUT", + "1664398800": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 22080, + "intEnd": 25680, + "intUnixStart": 1664395200, + "intUnixEnd": 1664398800, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.68, + "TotalTimeInv": 9, + "Cost": 0, + "Roster": 21189, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 57, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2379, + "File": 16912, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 73, + "Created": "2022-09-28T07:52:19-06:00", + "Modified": "2022-09-28T21:46:32-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T07:52:00-06:00", + "EndTimeLocalized": "2022-09-28T17:33:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 73, + "DisplayName": "Tyler Roberts", + "EmployeeProfile": 73, + "Employee": 73, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8a97a499511e44a423c5d63c874dc913.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hfpyin5jkIDZs~nLmN907v9I70A8RJZKGvkJkgs-V0eGdDch0wYk~BWRQZ7KgIBkfBDp3PJxvbcSf3iTuN8FVIvlus3YwrBOBKY~GHtetPR90GTW-YUQjSJLtjsjMX7jvCkvxbtOLat5rhoK0GXNthMLgrPSGiIWtOV4UgaG0ck_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 57, + "OperationalUnitName": "Tyler Roberts PA-C", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Tyler Roberts PA-C" + }, + "EmployeeInfo": { + "Id": 73, + "DisplayName": "Tyler Roberts", + "EmployeeProfile": 73, + "Employee": 73, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8a97a499511e44a423c5d63c874dc913.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hfpyin5jkIDZs~nLmN907v9I70A8RJZKGvkJkgs-V0eGdDch0wYk~BWRQZ7KgIBkfBDp3PJxvbcSf3iTuN8FVIvlus3YwrBOBKY~GHtetPR90GTW-YUQjSJLtjsjMX7jvCkvxbtOLat5rhoK0GXNthMLgrPSGiIWtOV4UgaG0ck_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 73, + "Company": 4, + "FirstName": "Tyler", + "LastName": "Roberts", + "DisplayName": "Tyler Roberts", + "OtherName": null, + "Salutation": null, + "MainAddress": 229, + "PostalAddress": null, + "Contact": 272913, + "EmergencyAddress": 269, + "DateOfBirth": "1995-08-28T00:00:00-07:00", + "Gender": 1, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 974, + "UserId": 73, + "JobAppId": null, + "Active": true, + "StartDate": "2020-11-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276007, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-07-06T11:19:56-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9354, + "Employee": 89, + "EmployeeHistory": 130525, + "EmployeeAgreement": 109, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373360, + "EndTime": 1664410020, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664391840": "OUT", + "1664395440": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18480, + "intEnd": 22080, + "intUnixStart": 1664391840, + "intUnixEnd": 1664395440, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.18, + "TotalTimeInv": 9, + "Cost": 137.7, + "Roster": 21241, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2366, + "File": 16921, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 89, + "Created": "2022-09-28T07:56:00-06:00", + "Modified": "2022-09-28T21:46:31-06:00", + "OnCost": 137.7, + "StartTimeLocalized": "2022-09-28T07:56:00-06:00", + "EndTimeLocalized": "2022-09-28T18:07:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 89, + "DisplayName": "Mona Lisa Hernandez", + "EmployeeProfile": 89, + "Employee": 89, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6bcaee5d709787a53a63d172427feb7e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=VHQMOdIhIB2LES8dS85N2IUjsWSmZ9AOU7Kix0bjetxMA4scwzBwg521nKljpJL7qidyl1DBTL~sSj66vp9VyoFCi3MAWiGFO98C-ADgywplGDuEv8C8MuQPcFdU4uVF-E1KEDhF7rh3Nm~uIg2sT9FB8LtdWoJYDQ~RwMtZV5U_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 89, + "DisplayName": "Mona Lisa Hernandez", + "EmployeeProfile": 89, + "Employee": 89, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6bcaee5d709787a53a63d172427feb7e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=VHQMOdIhIB2LES8dS85N2IUjsWSmZ9AOU7Kix0bjetxMA4scwzBwg521nKljpJL7qidyl1DBTL~sSj66vp9VyoFCi3MAWiGFO98C-ADgywplGDuEv8C8MuQPcFdU4uVF-E1KEDhF7rh3Nm~uIg2sT9FB8LtdWoJYDQ~RwMtZV5U_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 89, + "Company": 6, + "FirstName": "Mona Lisa", + "LastName": "Hernandez", + "DisplayName": "Mona Lisa Hernandez", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 51786, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 984, + "UserId": 89, + "JobAppId": null, + "Active": true, + "StartDate": "2022-03-29T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 130525, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-29T15:06:08-07:00", + "Modified": "2022-04-28T11:15:36-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9355, + "Employee": 28, + "EmployeeHistory": 275975, + "EmployeeAgreement": 30, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373360, + "EndTime": 1664406300, + "Mealbreak": "2022-09-28T01:01:00-06:00", + "MealbreakSlots": { + "1664392080": "OUT", + "1664395740": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18720, + "intEnd": 22380, + "intUnixStart": 1664392080, + "intUnixEnd": 1664395740, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.13, + "TotalTimeInv": 9, + "Cost": 284.55, + "Roster": 21066, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2375, + "File": 16908, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 27, + "Created": "2022-09-28T07:56:08-06:00", + "Modified": "2022-09-28T17:26:22-06:00", + "OnCost": 284.55, + "StartTimeLocalized": "2022-09-28T07:56:00-06:00", + "EndTimeLocalized": "2022-09-28T17:05:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 27, + "DisplayName": "Elizabeth Rico", + "EmployeeProfile": 28, + "Employee": 28, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_09a0688488492c4dd40985c9a0d14b62.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=hO-O2oxJR3UP3g9lnWGLVcP4mKq8fK5qtyinwczi0NBgC-3NU9ALhD~P~USGiiFoowagGPfAmogOYAvAYqr9zDFNwx1qmfmk1rq0fg8aokWmhVcLDpRtMrsh~Lw~4HBz5FHMaAhq2gB0vhN2HHPHQq61eglpotwT8iUAmblmgbw_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 27, + "DisplayName": "Elizabeth Rico", + "EmployeeProfile": 28, + "Employee": 28, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_09a0688488492c4dd40985c9a0d14b62.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=hO-O2oxJR3UP3g9lnWGLVcP4mKq8fK5qtyinwczi0NBgC-3NU9ALhD~P~USGiiFoowagGPfAmogOYAvAYqr9zDFNwx1qmfmk1rq0fg8aokWmhVcLDpRtMrsh~Lw~4HBz5FHMaAhq2gB0vhN2HHPHQq61eglpotwT8iUAmblmgbw_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 28, + "Company": 6, + "FirstName": "Elizabeth", + "LastName": "Rico", + "DisplayName": "Elizabeth Rico", + "OtherName": null, + "Salutation": null, + "MainAddress": 174, + "PostalAddress": null, + "Contact": 272878, + "EmergencyAddress": 284, + "DateOfBirth": "1985-10-27T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 977, + "UserId": 27, + "JobAppId": null, + "Active": true, + "StartDate": "2010-06-03T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275975, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:18-07:00", + "Modified": "2022-07-06T10:54:42-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9356, + "Employee": 72, + "EmployeeHistory": 276129, + "EmployeeAgreement": 75, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373420, + "EndTime": 1664408400, + "Mealbreak": "2022-09-28T00:53:00-06:00", + "MealbreakSlots": { + "1664396460": "OUT", + "1664399640": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 23040, + "intEnd": 26220, + "intUnixStart": 1664396460, + "intUnixEnd": 1664399640, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.83, + "TotalTimeInv": 9.05, + "Cost": 123.62, + "Roster": 21196, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 57, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2372, + "File": 16914, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 72, + "Created": "2022-09-28T07:57:02-06:00", + "Modified": "2022-09-28T21:46:32-06:00", + "OnCost": 123.62, + "StartTimeLocalized": "2022-09-28T07:57:00-06:00", + "EndTimeLocalized": "2022-09-28T17:40:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 72, + "DisplayName": "Samm Viveros", + "EmployeeProfile": 72, + "Employee": 72, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_74a08a03a3c5e8d3bf5727f4cba4151f.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=KSdcgzaaINE~tib0mSFZT-s4x0KOmCcSH3k1JDGe2RAMhTVrbOyjaq-s11mhLZ7XPAUfmDS2fvVgYVGkAaWk7gtp8jjVtO~Aj~oF78-ylIXeVHXjF3hw1SfU9UhC0np1rp3i4wiuJQuMPjGg6ytVcCiWLDoabeN5akC9L1fFY0Y_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 57, + "OperationalUnitName": "Tyler Roberts PA-C", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Tyler Roberts PA-C" + }, + "EmployeeInfo": { + "Id": 72, + "DisplayName": "Samm Viveros", + "EmployeeProfile": 72, + "Employee": 72, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_74a08a03a3c5e8d3bf5727f4cba4151f.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=KSdcgzaaINE~tib0mSFZT-s4x0KOmCcSH3k1JDGe2RAMhTVrbOyjaq-s11mhLZ7XPAUfmDS2fvVgYVGkAaWk7gtp8jjVtO~Aj~oF78-ylIXeVHXjF3hw1SfU9UhC0np1rp3i4wiuJQuMPjGg6ytVcCiWLDoabeN5akC9L1fFY0Y_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 72, + "Company": 4, + "FirstName": "Samantha", + "LastName": "Viveros", + "DisplayName": "Samm Viveros", + "OtherName": null, + "Salutation": null, + "MainAddress": 227, + "PostalAddress": null, + "Contact": 272912, + "EmergencyAddress": 268, + "DateOfBirth": "1996-04-15T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 972, + "UserId": 72, + "JobAppId": null, + "Active": true, + "StartDate": "2020-10-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276129, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-09-20T09:38:11-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9357, + "Employee": 82, + "EmployeeHistory": 276110, + "EmployeeAgreement": 322, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373480, + "EndTime": 1664391780, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 0, + "intUnixStart": 1664373480, + "intUnixEnd": 1664373480, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.08, + "TotalTimeInv": 6, + "Cost": 71.12, + "Roster": 21227, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2369, + "File": 16880, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 82, + "Created": "2022-09-28T07:58:27-06:00", + "Modified": "2022-09-28T14:12:16-06:00", + "OnCost": 71.12, + "StartTimeLocalized": "2022-09-28T07:58:00-06:00", + "EndTimeLocalized": "2022-09-28T13:03:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 82, + "DisplayName": "Valerie Torres", + "EmployeeProfile": 82, + "Employee": 82, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_882d771b3ed9418b8c0bb25151643136.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=HNxAI-PEVEeMkKjfEl5bsDwHytjIlz9R6cQls1d1erg2KLtlgWEZOfxDmlNF4DgZJkyU0kHhuM5U1AXqXkrWedQ6-UI2lYqquLh-k0bKHF4jjvAbjXE06eNaazvb4i7g~Koxd9-j-8W5VxUPtWRnWhld4QCbK6yE5DEQ~t~NHzo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 82, + "DisplayName": "Valerie Torres", + "EmployeeProfile": 82, + "Employee": 82, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_882d771b3ed9418b8c0bb25151643136.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=HNxAI-PEVEeMkKjfEl5bsDwHytjIlz9R6cQls1d1erg2KLtlgWEZOfxDmlNF4DgZJkyU0kHhuM5U1AXqXkrWedQ6-UI2lYqquLh-k0bKHF4jjvAbjXE06eNaazvb4i7g~Koxd9-j-8W5VxUPtWRnWhld4QCbK6yE5DEQ~t~NHzo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 82, + "Company": 6, + "FirstName": "Valerie", + "LastName": "Torres", + "DisplayName": "Valerie Torres", + "OtherName": null, + "Salutation": null, + "MainAddress": 245, + "PostalAddress": null, + "Contact": 272956, + "EmergencyAddress": 284, + "DateOfBirth": "1992-09-15T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 15036, + "UserId": 82, + "JobAppId": null, + "Active": true, + "StartDate": "2022-02-21T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276110, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:30-07:00", + "Modified": "2022-09-07T20:54:54-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9358, + "Employee": 139, + "EmployeeHistory": 276118, + "EmployeeAgreement": 530, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373480, + "EndTime": 1664408460, + "Mealbreak": "2022-09-28T01:09:00-06:00", + "MealbreakSlots": { + "1664396460": "OUT", + "1664400600": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 22980, + "intEnd": 27120, + "intUnixStart": 1664396460, + "intUnixEnd": 1664400600, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.57, + "TotalTimeInv": 9.03, + "Cost": 0, + "Roster": 21045, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 57, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2430, + "File": 16915, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 139, + "Created": "2022-09-28T07:58:50-06:00", + "Modified": "2022-09-28T21:46:58-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T07:58:00-06:00", + "EndTimeLocalized": "2022-09-28T17:41:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 139, + "DisplayName": "Paola Barragan", + "EmployeeProfile": 139, + "Employee": 139, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7f1a5469c2369939f8eb74849e2d0c11.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EYQO83NQZO7dGa~faIpXzdeHA4v3sdVWpfo2PcQVUzvy2hl6CYB9k24fUslPe4H4rkc~WI4jtrPRPEudsSafynZIfOVRjh1taSz-hqL4bX3WYk~~ACwB6fLV1yyJvVHSlBl33~gufvtnrZN5QgERbn88VWGSpSM-h6E7C94gKys_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 57, + "OperationalUnitName": "Tyler Roberts PA-C", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Tyler Roberts PA-C" + }, + "EmployeeInfo": { + "Id": 139, + "DisplayName": "Paola Barragan", + "EmployeeProfile": 139, + "Employee": 139, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7f1a5469c2369939f8eb74849e2d0c11.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EYQO83NQZO7dGa~faIpXzdeHA4v3sdVWpfo2PcQVUzvy2hl6CYB9k24fUslPe4H4rkc~WI4jtrPRPEudsSafynZIfOVRjh1taSz-hqL4bX3WYk~~ACwB6fLV1yyJvVHSlBl33~gufvtnrZN5QgERbn88VWGSpSM-h6E7C94gKys_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 139, + "Company": 6, + "FirstName": "Paola", + "LastName": "Barragan", + "DisplayName": "Paola Barragan", + "OtherName": null, + "Salutation": null, + "MainAddress": 322, + "PostalAddress": null, + "Contact": 272953, + "EmergencyAddress": 284, + "DateOfBirth": "2000-07-19T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 14658, + "UserId": 139, + "JobAppId": null, + "Active": true, + "StartDate": null, + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276118, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-09-01T09:50:31-06:00", + "Modified": "2022-09-14T11:22:12-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9359, + "Employee": 102, + "EmployeeHistory": 275684, + "EmployeeAgreement": 414, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373540, + "EndTime": 1664394180, + "Mealbreak": "2022-09-28T00:01:00-06:00", + "MealbreakSlots": { + "1664394120": "OUT", + "1664394180": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 20580, + "intEnd": 20640, + "intUnixStart": 1664394120, + "intUnixEnd": 1664394180, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 5.72, + "TotalTimeInv": 9, + "Cost": 0, + "Roster": 21263, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 65, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2380, + "File": 16890, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 102, + "Created": "2022-09-28T07:59:27-06:00", + "Modified": "2022-09-28T14:29:45-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T07:59:00-06:00", + "EndTimeLocalized": "2022-09-28T13:43:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 102, + "DisplayName": "Justine Franco", + "EmployeeProfile": 102, + "Employee": 102, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6ffd09c47f45d603be0685af846b9b3f.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gxi-qlNQ1rYSHrQy5yWfNmHd~6bk1JyeQRirQNbGjiaXx5a-g019V62flgh9hcLTu6D3~SVMYcZh69qlNrJxL5~BhsMhRBDcldyqVMYiniI3wizIMJJpls1NF~mCTp3ghtFS-GhyuM0tqGHnPSfKM7YMJMvRiifqN3Vx8Jg1CBs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 65, + "OperationalUnitName": "Justine Franco NP", + "Company": 5, + "CompanyName": "Montana", + "LabelWithCompany": "[MON] Justine Franco NP" + }, + "EmployeeInfo": { + "Id": 102, + "DisplayName": "Justine Franco", + "EmployeeProfile": 102, + "Employee": 102, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6ffd09c47f45d603be0685af846b9b3f.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gxi-qlNQ1rYSHrQy5yWfNmHd~6bk1JyeQRirQNbGjiaXx5a-g019V62flgh9hcLTu6D3~SVMYcZh69qlNrJxL5~BhsMhRBDcldyqVMYiniI3wizIMJJpls1NF~mCTp3ghtFS-GhyuM0tqGHnPSfKM7YMJMvRiifqN3Vx8Jg1CBs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 102, + "Company": 3, + "FirstName": "Justine", + "LastName": "Franco", + "DisplayName": "Justine Franco", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272655, + "EmergencyAddress": 284, + "DateOfBirth": "1992-02-04T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 8793, + "UserId": 102, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-11T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275684, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-11T12:54:41-06:00", + "Modified": "2022-06-30T22:42:25-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9360, + "Employee": 77, + "EmployeeHistory": 275987, + "EmployeeAgreement": 111, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373600, + "EndTime": 1664400360, + "Mealbreak": "2022-09-28T01:02:00-06:00", + "MealbreakSlots": { + "1664395020": "OUT", + "1664398740": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 21420, + "intEnd": 25140, + "intUnixStart": 1664395020, + "intUnixEnd": 1664398740, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 6.4, + "TotalTimeInv": 9, + "Cost": 102.4, + "Roster": 21204, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2422, + "File": 16901, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 77, + "Created": "2022-09-28T08:00:38-06:00", + "Modified": "2022-09-28T15:55:02-06:00", + "OnCost": 102.4, + "StartTimeLocalized": "2022-09-28T08:00:00-06:00", + "EndTimeLocalized": "2022-09-28T15:26:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 77, + "DisplayName": "Jazmin Hernandez", + "EmployeeProfile": 77, + "Employee": 77, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a23cb02ace17d5ef811fa933b3120d27.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WOkdY5KzpCghTpqEzV6Q4OxzWKa5vKV7OoXYhPMwJvsq4rudREpRfkCfn3SsKpg0zpBBV3UVB68Hu09Ksi6L4cHrhbniM4I-tQt6pjHspvvoYCusVGTuQJClpXL9i4sax-lsois8uDNTcH5qQWSrWVoOmAxuwfabkepzuUQ6l00_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 77, + "DisplayName": "Jazmin Hernandez", + "EmployeeProfile": 77, + "Employee": 77, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a23cb02ace17d5ef811fa933b3120d27.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WOkdY5KzpCghTpqEzV6Q4OxzWKa5vKV7OoXYhPMwJvsq4rudREpRfkCfn3SsKpg0zpBBV3UVB68Hu09Ksi6L4cHrhbniM4I-tQt6pjHspvvoYCusVGTuQJClpXL9i4sax-lsois8uDNTcH5qQWSrWVoOmAxuwfabkepzuUQ6l00_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 77, + "Company": 5, + "FirstName": "Jazmin", + "LastName": "Hernandez", + "DisplayName": "Jazmin Hernandez", + "OtherName": null, + "Salutation": null, + "MainAddress": 273, + "PostalAddress": null, + "Contact": 272916, + "EmergencyAddress": 274, + "DateOfBirth": "1996-02-08T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1507, + "UserId": 77, + "JobAppId": null, + "Active": true, + "StartDate": "2021-09-13T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275987, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:29-07:00", + "Modified": "2022-07-06T11:03:30-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9361, + "Employee": 67, + "EmployeeHistory": 275976, + "EmployeeAgreement": 70, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373660, + "EndTime": 1664410200, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664391840": "OUT", + "1664395440": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18180, + "intEnd": 21780, + "intUnixStart": 1664391840, + "intUnixEnd": 1664395440, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.15, + "TotalTimeInv": 8.98, + "Cost": 155.55, + "Roster": 21170, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2377, + "File": 16922, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 67, + "Created": "2022-09-28T08:01:18-06:00", + "Modified": "2022-09-28T21:46:32-06:00", + "OnCost": 155.55, + "StartTimeLocalized": "2022-09-28T08:01:00-06:00", + "EndTimeLocalized": "2022-09-28T18:10:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 67, + "DisplayName": "Emma Porras", + "EmployeeProfile": 67, + "Employee": 67, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fb8eea4d196b457699d13f8727516a03.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=BtfXVKYh8mdrITmQa5DiAJpOSnrEExPBZHUUx1V8JJkSPeaa6U1DQirPPPDaY9fasNyeuGOZXztgPIRXANO7ZIjAVByasFMBDwaU~kXIRQ1SpiGYRH-70hCH6PFRuwLO~jsg-rv6iwiHtsG-3yneBv3o9-HkmJzkAgY97Y5k6Ow_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 67, + "DisplayName": "Emma Porras", + "EmployeeProfile": 67, + "Employee": 67, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fb8eea4d196b457699d13f8727516a03.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=BtfXVKYh8mdrITmQa5DiAJpOSnrEExPBZHUUx1V8JJkSPeaa6U1DQirPPPDaY9fasNyeuGOZXztgPIRXANO7ZIjAVByasFMBDwaU~kXIRQ1SpiGYRH-70hCH6PFRuwLO~jsg-rv6iwiHtsG-3yneBv3o9-HkmJzkAgY97Y5k6Ow_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 67, + "Company": 6, + "FirstName": "Emma", + "LastName": "Porras", + "DisplayName": "Emma Porras", + "OtherName": null, + "Salutation": null, + "MainAddress": 218, + "PostalAddress": null, + "Contact": 272907, + "EmergencyAddress": 264, + "DateOfBirth": "1981-10-11T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 958, + "UserId": 67, + "JobAppId": null, + "Active": true, + "StartDate": "2022-02-08T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275976, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-07-06T10:55:06-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9362, + "Employee": 69, + "EmployeeHistory": 276128, + "EmployeeAgreement": 72, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373780, + "EndTime": 1664390700, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -180, + "intEnd": -180, + "intUnixStart": 1664373600, + "intUnixEnd": 1664373600, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 4.7, + "TotalTimeInv": 3.95, + "Cost": 0, + "Roster": 21175, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 21, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2351, + "File": 16875, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 69, + "Created": "2022-09-28T08:03:09-06:00", + "Modified": "2022-09-28T14:12:16-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T08:03:00-06:00", + "EndTimeLocalized": "2022-09-28T12:45:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 69, + "DisplayName": "Humberto Saenz Chavez", + "EmployeeProfile": 69, + "Employee": 69, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e1e503c48d0b7357937408753dc18eb5.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WJRWQesDAJCoeihtG3wVUEJi1PaNhpUSyg7vy9i6n6Cc0iHy9L9e7xAHTag1R2en73xk6bXikPTTOUVAFwkrikSb9UVgSS2MgGiBgGAZufceXx81pn~CR41BjUIDYHCP8c3z2AQ9lIoQmN6Tgw4eZgOPbpkrWvub6Y9GId63YPI_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 21, + "OperationalUnitName": "Dr. Saenz", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Saenz" + }, + "EmployeeInfo": { + "Id": 69, + "DisplayName": "Humberto Saenz Chavez", + "EmployeeProfile": 69, + "Employee": 69, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e1e503c48d0b7357937408753dc18eb5.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WJRWQesDAJCoeihtG3wVUEJi1PaNhpUSyg7vy9i6n6Cc0iHy9L9e7xAHTag1R2en73xk6bXikPTTOUVAFwkrikSb9UVgSS2MgGiBgGAZufceXx81pn~CR41BjUIDYHCP8c3z2AQ9lIoQmN6Tgw4eZgOPbpkrWvub6Y9GId63YPI_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 69, + "Company": 2, + "FirstName": "Humberto", + "LastName": "Saenz Chavez", + "DisplayName": "Humberto Saenz Chavez", + "OtherName": null, + "Salutation": null, + "MainAddress": 222, + "PostalAddress": null, + "Contact": 272964, + "EmergencyAddress": 284, + "DateOfBirth": "1985-07-11T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1229, + "UserId": 69, + "JobAppId": null, + "Active": true, + "StartDate": "2020-07-20T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276128, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-09-18T17:40:41-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9363, + "Employee": 44, + "EmployeeHistory": 276003, + "EmployeeAgreement": 331, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373780, + "EndTime": 1664401980, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -1080, + "intEnd": 2520, + "intUnixStart": 1664372700, + "intUnixEnd": 1664376300, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 7.83, + "TotalTimeInv": 8.95, + "Cost": 164.43, + "Roster": 22272, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 28, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2364, + "File": 16903, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 44, + "Created": "2022-09-28T08:03:12-06:00", + "Modified": "2022-09-28T15:55:02-06:00", + "OnCost": 164.43, + "StartTimeLocalized": "2022-09-28T08:03:00-06:00", + "EndTimeLocalized": "2022-09-28T15:53:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 44, + "DisplayName": "Sergio Armendariz", + "EmployeeProfile": 44, + "Employee": 44, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_dbc48ce256a1ea33d79d941183bd70c1.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Dewnzh5JoxabPwisBVYbOYybmCsJQ7ALzAqoMRLE1~KSP0w8X0PlSZ07jo1Tz-PA4KMwvbB7i26hVNvJouNHAgtGiuu1k8u4XYvnd4uVQHsaW0tT0hFNFkqoI2RoXfocdwbDBX1qPsOwZadj1cO0zz-EP8vHTVEgCu8yo4oD-rQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 28, + "OperationalUnitName": "Medical Assistants", + "Company": 5, + "CompanyName": "Montana", + "LabelWithCompany": "[MON] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 44, + "DisplayName": "Sergio Armendariz", + "EmployeeProfile": 44, + "Employee": 44, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_dbc48ce256a1ea33d79d941183bd70c1.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Dewnzh5JoxabPwisBVYbOYybmCsJQ7ALzAqoMRLE1~KSP0w8X0PlSZ07jo1Tz-PA4KMwvbB7i26hVNvJouNHAgtGiuu1k8u4XYvnd4uVQHsaW0tT0hFNFkqoI2RoXfocdwbDBX1qPsOwZadj1cO0zz-EP8vHTVEgCu8yo4oD-rQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 44, + "Company": 2, + "FirstName": "Sergio", + "LastName": "Armendariz", + "DisplayName": "Sergio Armendariz", + "OtherName": null, + "Salutation": null, + "MainAddress": 189, + "PostalAddress": null, + "Contact": 272890, + "EmergencyAddress": 284, + "DateOfBirth": "1995-01-15T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1011, + "UserId": 44, + "JobAppId": null, + "Active": true, + "StartDate": "2015-12-07T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276003, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:21-07:00", + "Modified": "2022-07-06T11:18:45-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9364, + "Employee": 22, + "EmployeeHistory": 276010, + "EmployeeAgreement": 24, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373840, + "EndTime": 1664400900, + "Mealbreak": "2022-09-28T00:34:00-06:00", + "MealbreakSlots": { + "1664390220": "OUT", + "1664392260": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 16380, + "intEnd": 18420, + "intUnixStart": 1664390220, + "intUnixEnd": 1664392260, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 6.95, + "TotalTimeInv": 6.93, + "Cost": 104.25, + "Roster": 21049, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2384, + "File": 16902, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 22, + "Created": "2022-09-28T08:04:35-06:00", + "Modified": "2022-09-28T15:55:02-06:00", + "OnCost": 104.25, + "StartTimeLocalized": "2022-09-28T08:04:00-06:00", + "EndTimeLocalized": "2022-09-28T15:35:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 22, + "DisplayName": "Viridiana Gomez", + "EmployeeProfile": 22, + "Employee": 22, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e925be21f3ce5526e949aee744bc391c.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=W1OCaCQwLucZAS20QlTYfrC0HbdIHBl5o1rfJrq9MugxcwYzZdK8Hkm-sJM19iEFTokz5Xx9c8oI7xnkbAi3snyFD9YRXB8Wbk-lS3o0ZSPwFAELbaW1YiOTYcIKcMR5rr9siVA4aj9ZB4GT2b2Pjmx0nh0aF-epsOMvdeH~KzA_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 22, + "DisplayName": "Viridiana Gomez", + "EmployeeProfile": 22, + "Employee": 22, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e925be21f3ce5526e949aee744bc391c.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=W1OCaCQwLucZAS20QlTYfrC0HbdIHBl5o1rfJrq9MugxcwYzZdK8Hkm-sJM19iEFTokz5Xx9c8oI7xnkbAi3snyFD9YRXB8Wbk-lS3o0ZSPwFAELbaW1YiOTYcIKcMR5rr9siVA4aj9ZB4GT2b2Pjmx0nh0aF-epsOMvdeH~KzA_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 22, + "Company": 6, + "FirstName": "Viridiana", + "LastName": "Gomez", + "DisplayName": "Viridiana Gomez", + "OtherName": null, + "Salutation": null, + "MainAddress": 166, + "PostalAddress": null, + "Contact": 272874, + "EmergencyAddress": null, + "DateOfBirth": "1983-09-15T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1003, + "UserId": 22, + "JobAppId": null, + "Active": true, + "StartDate": "2005-07-11T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276010, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:17-07:00", + "Modified": "2022-07-06T11:20:52-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9365, + "Employee": 51, + "EmployeeHistory": 276033, + "EmployeeAgreement": 198, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373840, + "EndTime": 1664391900, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [], + "TotalTime": 5.02, + "TotalTimeInv": 8.93, + "Cost": 77.81, + "Roster": 21131, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 65, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2378, + "File": 16841, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 51, + "Created": "2022-09-28T08:04:43-06:00", + "Modified": "2022-09-28T19:09:52-06:00", + "OnCost": 77.81, + "StartTimeLocalized": "2022-09-28T08:04:00-06:00", + "EndTimeLocalized": "2022-09-28T13:05:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 51, + "DisplayName": "Elizabeth Arreola", + "EmployeeProfile": 51, + "Employee": 51, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a0c25db5d291f2c1bf1b3a0453209155.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WuEMSi0aNK3ifgyhxac8KpYAlmlY-SKs1B3HezyATcLxjfrnf7jXvESIKjZJKJLv7ltTeQYcYIN4j7Tvgrg-Ru2eaP3WeEMsxo0FeHozg9ieBQ3fnAWjjVKh-y2S4Rc~HBrTZlgGd9G4X6nkx-zE6LBgtBfP6Nbt-Qxig-I5rY0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 65, + "OperationalUnitName": "Justine Franco NP", + "Company": 5, + "CompanyName": "Montana", + "LabelWithCompany": "[MON] Justine Franco NP" + }, + "EmployeeInfo": { + "Id": 51, + "DisplayName": "Elizabeth Arreola", + "EmployeeProfile": 51, + "Employee": 51, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a0c25db5d291f2c1bf1b3a0453209155.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WuEMSi0aNK3ifgyhxac8KpYAlmlY-SKs1B3HezyATcLxjfrnf7jXvESIKjZJKJLv7ltTeQYcYIN4j7Tvgrg-Ru2eaP3WeEMsxo0FeHozg9ieBQ3fnAWjjVKh-y2S4Rc~HBrTZlgGd9G4X6nkx-zE6LBgtBfP6Nbt-Qxig-I5rY0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 51, + "Company": 2, + "FirstName": "Elizabeth", + "LastName": "Arreola", + "DisplayName": "Elizabeth Arreola", + "OtherName": null, + "Salutation": null, + "MainAddress": 197, + "PostalAddress": null, + "Contact": 272897, + "EmergencyAddress": 284, + "DateOfBirth": "1985-08-06T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1858, + "UserId": 51, + "JobAppId": null, + "Active": true, + "StartDate": "2018-04-23T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276033, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:23-07:00", + "Modified": "2022-07-11T12:25:40-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9366, + "Employee": 61, + "EmployeeHistory": 275972, + "EmployeeAgreement": 242, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664373960, + "EndTime": 1664395440, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -360, + "intEnd": -360, + "intUnixStart": 1664373600, + "intUnixEnd": 1664373600, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.97, + "TotalTimeInv": 5.9, + "Cost": 155.22, + "Roster": 21149, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 32, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2381, + "File": 16894, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 61, + "Created": "2022-09-28T08:06:45-06:00", + "Modified": "2022-09-28T14:11:30-06:00", + "OnCost": 155.22, + "StartTimeLocalized": "2022-09-28T08:06:00-06:00", + "EndTimeLocalized": "2022-09-28T14:04:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 61, + "DisplayName": "Desirae Martin", + "EmployeeProfile": 61, + "Employee": 61, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f9c57d8a4b409ad8dbe9ebff056c28bc.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WUGv4hHKNH8mp5JmDb0rleqiLSSs5kXrcYvtgumjjFG7wjHIVJeGItP5JEmhN5uFGELFowx9f--z2sRrlRRMj0k3quFrhuH7SuuWn8-l8Zl02OQyPXVDieJTKej-P7CtKUBcm-uXgRdwG5AuMoSa7wVkw8MPUurpIBZx6FvJMtE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 32, + "OperationalUnitName": "Sono", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Sono" + }, + "EmployeeInfo": { + "Id": 61, + "DisplayName": "Desirae Martin", + "EmployeeProfile": 61, + "Employee": 61, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f9c57d8a4b409ad8dbe9ebff056c28bc.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WUGv4hHKNH8mp5JmDb0rleqiLSSs5kXrcYvtgumjjFG7wjHIVJeGItP5JEmhN5uFGELFowx9f--z2sRrlRRMj0k3quFrhuH7SuuWn8-l8Zl02OQyPXVDieJTKej-P7CtKUBcm-uXgRdwG5AuMoSa7wVkw8MPUurpIBZx6FvJMtE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 61, + "Company": 5, + "FirstName": "Desirae", + "LastName": "Martin", + "DisplayName": "Desirae Martin", + "OtherName": null, + "Salutation": null, + "MainAddress": 208, + "PostalAddress": null, + "Contact": 272902, + "EmergencyAddress": 260, + "DateOfBirth": "1984-07-05T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 937, + "UserId": 61, + "JobAppId": null, + "Active": true, + "StartDate": "2019-05-28T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275972, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:25-07:00", + "Modified": "2022-07-06T10:53:31-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9367, + "Employee": 54, + "EmployeeHistory": 275301, + "EmployeeAgreement": 56, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664374080, + "EndTime": 1664413560, + "Mealbreak": "2022-09-28T01:02:00-06:00", + "MealbreakSlots": { + "1664392260": "OUT", + "1664395980": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18180, + "intEnd": 21900, + "intUnixStart": 1664392260, + "intUnixEnd": 1664395980, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.93, + "TotalTimeInv": 9.87, + "Cost": 228.39, + "Roster": 21135, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2382, + "File": 16929, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 54, + "Created": "2022-09-28T08:08:33-06:00", + "Modified": "2022-09-28T21:46:30-06:00", + "OnCost": 228.39, + "StartTimeLocalized": "2022-09-28T08:08:00-06:00", + "EndTimeLocalized": "2022-09-28T19:06:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 54, + "DisplayName": "Lyanne Lesso", + "EmployeeProfile": 54, + "Employee": 54, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_39d0ccc171382460cd77f920151d420e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=d2-i~NWb1NBolskITRaERgrqxhBRTTLMKG~L5PuWDNvEdZkztBwzqCacLE-avQkHxGTEINKClOQ6-z2wlDttPsWSQDf3wpo5uzOgyobynJvGZ~pA7hBuQpe2R-QFwcMB2oitqxJXiUuHPD3VcnTKFQvCtQsAJw8OLvqVwjo0Xuo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 54, + "DisplayName": "Lyanne Lesso", + "EmployeeProfile": 54, + "Employee": 54, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_39d0ccc171382460cd77f920151d420e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=d2-i~NWb1NBolskITRaERgrqxhBRTTLMKG~L5PuWDNvEdZkztBwzqCacLE-avQkHxGTEINKClOQ6-z2wlDttPsWSQDf3wpo5uzOgyobynJvGZ~pA7hBuQpe2R-QFwcMB2oitqxJXiUuHPD3VcnTKFQvCtQsAJw8OLvqVwjo0Xuo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 54, + "Company": 6, + "FirstName": "Lyanne", + "LastName": "Lesso", + "DisplayName": "Lyanne Lesso", + "OtherName": null, + "Salutation": null, + "MainAddress": 200, + "PostalAddress": null, + "Contact": 155243, + "EmergencyAddress": 284, + "DateOfBirth": "1991-04-01T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1048, + "UserId": 54, + "JobAppId": null, + "Active": true, + "StartDate": "2020-09-21T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275301, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:23-07:00", + "Modified": "2022-06-20T18:04:57-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9368, + "Employee": 59, + "EmployeeHistory": 276087, + "EmployeeAgreement": 62, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664374320, + "EndTime": 1664395980, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [], + "TotalTime": 6.02, + "TotalTimeInv": 5.8, + "Cost": 171.57, + "Roster": 21138, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 131072, + "OperationalUnit": 26, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2385, + "File": 16844, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 59, + "Created": "2022-09-28T08:12:41-06:00", + "Modified": "2022-09-28T14:29:46-06:00", + "OnCost": 171.57, + "StartTimeLocalized": "2022-09-28T08:12:00-06:00", + "EndTimeLocalized": "2022-09-28T14:13:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 59, + "DisplayName": "Esperanza Robledo", + "EmployeeProfile": 59, + "Employee": 59, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f1facd44e26dc49f636aa66f029dfb72.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=FSELOBnr~C4YwY2XfOEcL9S47MKYZ5lagrdAzrN3~MqkzKt7RiPVy5kvugg8IDnQL7UibHuhyDbIJHGBTxgKh3Qvj5pQXJyCjVNB1dIbygmlxbSqvhE6HnjjQ498KGnOi9JmbSi86mcDCf2m~pR8TYVRRtVv7L2MVw0RjkcUjO8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 26, + "OperationalUnitName": "Sono", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Sono" + }, + "EmployeeInfo": { + "Id": 59, + "DisplayName": "Esperanza Robledo", + "EmployeeProfile": 59, + "Employee": 59, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f1facd44e26dc49f636aa66f029dfb72.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=FSELOBnr~C4YwY2XfOEcL9S47MKYZ5lagrdAzrN3~MqkzKt7RiPVy5kvugg8IDnQL7UibHuhyDbIJHGBTxgKh3Qvj5pQXJyCjVNB1dIbygmlxbSqvhE6HnjjQ498KGnOi9JmbSi86mcDCf2m~pR8TYVRRtVv7L2MVw0RjkcUjO8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 59, + "Company": 2, + "FirstName": "Esperanza", + "LastName": "Robledo", + "DisplayName": "Esperanza Robledo", + "OtherName": null, + "Salutation": null, + "MainAddress": 206, + "PostalAddress": null, + "Contact": 272945, + "EmergencyAddress": null, + "DateOfBirth": "1987-08-02T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 938, + "UserId": 59, + "JobAppId": null, + "Active": true, + "StartDate": "2019-03-06T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276087, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:25-07:00", + "Modified": "2022-08-19T18:56:16-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9369, + "Employee": 140, + "EmployeeHistory": 276127, + "EmployeeAgreement": 531, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664374320, + "EndTime": 1664406720, + "Mealbreak": "2022-09-28T01:12:00-06:00", + "MealbreakSlots": { + "1664391720": "OUT", + "1664396040": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17400, + "intEnd": 21720, + "intUnixStart": 1664391720, + "intUnixEnd": 1664396040, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.8, + "TotalTimeInv": 8.8, + "Cost": 0, + "Roster": 22261, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2431, + "File": 16909, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 140, + "Created": "2022-09-28T08:12:42-06:00", + "Modified": "2022-09-28T17:26:22-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T08:12:00-06:00", + "EndTimeLocalized": "2022-09-28T17:12:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 140, + "DisplayName": "Cesar Molina", + "EmployeeProfile": 140, + "Employee": 140, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_913978aa8ee3482d1d13127d8af9436a.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WkJKqdnooCQlf7JjIWiYVmbeWe0GtSp9-hnrGpTseW73DuRDlNnD5h0RpPB5XmmzuTIG3hspKcqpYGewcQM8c2ZWB26TWY6osNekrwoE7V0vaD4idmd6iJQNVNaVfv9zkqrbrp4HcyewYzKnkBGEZzqFl~N7afqE5RR8S5Glvok_", + "Pronouns": 1, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 140, + "DisplayName": "Cesar Molina", + "EmployeeProfile": 140, + "Employee": 140, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_913978aa8ee3482d1d13127d8af9436a.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WkJKqdnooCQlf7JjIWiYVmbeWe0GtSp9-hnrGpTseW73DuRDlNnD5h0RpPB5XmmzuTIG3hspKcqpYGewcQM8c2ZWB26TWY6osNekrwoE7V0vaD4idmd6iJQNVNaVfv9zkqrbrp4HcyewYzKnkBGEZzqFl~N7afqE5RR8S5Glvok_", + "Pronouns": 1, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 140, + "Company": 6, + "FirstName": "Cesar", + "LastName": "Molina", + "DisplayName": "Cesar Molina", + "OtherName": null, + "Salutation": null, + "MainAddress": 332, + "PostalAddress": null, + "Contact": 272961, + "EmergencyAddress": 333, + "DateOfBirth": "1989-11-05T00:00:00-07:00", + "Gender": 0, + "Pronouns": 1, + "CustomPronouns": "", + "Photo": 15038, + "UserId": 140, + "JobAppId": null, + "Active": true, + "StartDate": "2022-09-07T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276127, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-09-07T17:13:25-06:00", + "Modified": "2022-09-16T12:51:43-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9370, + "Employee": 50, + "EmployeeHistory": 275971, + "EmployeeAgreement": 52, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664374440, + "EndTime": 1664410800, + "Mealbreak": "2022-09-28T01:02:00-06:00", + "MealbreakSlots": { + "1664392620": "OUT", + "1664396340": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18180, + "intEnd": 21900, + "intUnixStart": 1664392620, + "intUnixEnd": 1664396340, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.07, + "TotalTimeInv": 7.77, + "Cost": 131.515, + "Roster": 21120, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2387, + "File": 16923, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 50, + "Created": "2022-09-28T08:14:09-06:00", + "Modified": "2022-09-28T21:46:31-06:00", + "OnCost": 131.515, + "StartTimeLocalized": "2022-09-28T08:14:00-06:00", + "EndTimeLocalized": "2022-09-28T18:20:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 50, + "DisplayName": "Denise Renteria", + "EmployeeProfile": 50, + "Employee": 50, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7f8f9f6564688dcd70f48e7a4d52acfd.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gShOlNo2PM5xOUXuejZ1gHH9txIU5SEbDlsbr3axId6RzVLc8jMhGeoPo-W0vhCFsMgk~q5MtEYQYGsizGPy3vImCdfITpdG8fuaTahG51G78Jx0EbuWZq~GOdtHL~8M7kbl~c0TKP7FPrhj4LY2Nm27cPpk~XC91o7WzUM-O6M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 50, + "DisplayName": "Denise Renteria", + "EmployeeProfile": 50, + "Employee": 50, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7f8f9f6564688dcd70f48e7a4d52acfd.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gShOlNo2PM5xOUXuejZ1gHH9txIU5SEbDlsbr3axId6RzVLc8jMhGeoPo-W0vhCFsMgk~q5MtEYQYGsizGPy3vImCdfITpdG8fuaTahG51G78Jx0EbuWZq~GOdtHL~8M7kbl~c0TKP7FPrhj4LY2Nm27cPpk~XC91o7WzUM-O6M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 50, + "Company": 6, + "FirstName": "Denise", + "LastName": "Renteria", + "DisplayName": "Denise Renteria", + "OtherName": null, + "Salutation": null, + "MainAddress": 195, + "PostalAddress": null, + "Contact": 272896, + "EmergencyAddress": 259, + "DateOfBirth": "1992-12-08T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 967, + "UserId": 50, + "JobAppId": null, + "Active": true, + "StartDate": "2022-01-14T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275971, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:23-07:00", + "Modified": "2022-07-06T10:53:11-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9371, + "Employee": 64, + "EmployeeHistory": 276049, + "EmployeeAgreement": 67, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664374860, + "EndTime": 1664391480, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -2160, + "intEnd": -2160, + "intUnixStart": 1664372700, + "intUnixEnd": 1664372700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 4.62, + "TotalTimeInv": 3.65, + "Cost": 73.92, + "Roster": 21162, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 21, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2386, + "File": 16876, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 64, + "Created": "2022-09-28T08:21:23-06:00", + "Modified": "2022-09-28T14:12:16-06:00", + "OnCost": 73.92, + "StartTimeLocalized": "2022-09-28T08:21:00-06:00", + "EndTimeLocalized": "2022-09-28T12:58:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 64, + "DisplayName": "Alicia Rangel", + "EmployeeProfile": 64, + "Employee": 64, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3d92b57090833b853d28e284d6852c46.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NS0aA5gxD8rkeZ4naiyd0-VpLevPqaOgwIkOFY9nEThlILFXLKn~tTeFTyggcJZgLaoaJqvHWtEqiLTmMZhGAC8ygNNgUtSbXw9OpSyFNqZ5vurpNtWwnW8OoMeQSDkt8l1rVl7xP8BJ2n~-q6CuqeC-bj899wsx3N-MFwLlIyQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 21, + "OperationalUnitName": "Dr. Saenz", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Saenz" + }, + "EmployeeInfo": { + "Id": 64, + "DisplayName": "Alicia Rangel", + "EmployeeProfile": 64, + "Employee": 64, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3d92b57090833b853d28e284d6852c46.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NS0aA5gxD8rkeZ4naiyd0-VpLevPqaOgwIkOFY9nEThlILFXLKn~tTeFTyggcJZgLaoaJqvHWtEqiLTmMZhGAC8ygNNgUtSbXw9OpSyFNqZ5vurpNtWwnW8OoMeQSDkt8l1rVl7xP8BJ2n~-q6CuqeC-bj899wsx3N-MFwLlIyQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 64, + "Company": 2, + "FirstName": "Alicia", + "LastName": "Rangel", + "DisplayName": "Alicia Rangel", + "OtherName": null, + "Salutation": null, + "MainAddress": 212, + "PostalAddress": null, + "Contact": 272904, + "EmergencyAddress": 261, + "DateOfBirth": "1993-07-27T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1331, + "UserId": 64, + "JobAppId": null, + "Active": true, + "StartDate": "2019-09-27T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276049, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:26-07:00", + "Modified": "2022-07-19T17:37:10-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9372, + "Employee": 36, + "EmployeeHistory": 275969, + "EmployeeAgreement": 38, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664375040, + "EndTime": 1664411100, + "Mealbreak": "2022-09-28T00:34:00-06:00", + "MealbreakSlots": { + "1664390220": "OUT", + "1664392260": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 15180, + "intEnd": 17220, + "intUnixStart": 1664390220, + "intUnixEnd": 1664392260, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.45, + "TotalTimeInv": 7.6, + "Cost": 141.75, + "Roster": 21099, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2388, + "File": 16924, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 36, + "Created": "2022-09-28T08:24:34-06:00", + "Modified": "2022-09-28T21:46:32-06:00", + "OnCost": 141.75, + "StartTimeLocalized": "2022-09-28T08:24:00-06:00", + "EndTimeLocalized": "2022-09-28T18:25:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 36, + "DisplayName": "Daisy Alcala", + "EmployeeProfile": 36, + "Employee": 36, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_d697cda0a688532ffbcdb39044b0097c.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gzHOysNM3eoVLNpRxr63O0oPN91DjpY2lgGVNnByteILN8hO6-nnK4nfrhhxLQI1AX0IhFQ~AC64Jvir39HE6Kyfk9dt2p0Eqn2UPtDNrPs9y3RyEv0ahNMcE4HiPhpIHd4VoJ2gBMcCVZzdZgsaYSSTPxjvzkK5hX4ZC7PEdYE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 36, + "DisplayName": "Daisy Alcala", + "EmployeeProfile": 36, + "Employee": 36, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_d697cda0a688532ffbcdb39044b0097c.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gzHOysNM3eoVLNpRxr63O0oPN91DjpY2lgGVNnByteILN8hO6-nnK4nfrhhxLQI1AX0IhFQ~AC64Jvir39HE6Kyfk9dt2p0Eqn2UPtDNrPs9y3RyEv0ahNMcE4HiPhpIHd4VoJ2gBMcCVZzdZgsaYSSTPxjvzkK5hX4ZC7PEdYE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 36, + "Company": 6, + "FirstName": "Daisy", + "LastName": "Alcala", + "DisplayName": "Daisy Alcala", + "OtherName": null, + "Salutation": null, + "MainAddress": 182, + "PostalAddress": null, + "Contact": 272884, + "EmergencyAddress": 284, + "DateOfBirth": "1995-09-10T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 949, + "UserId": 36, + "JobAppId": null, + "Active": true, + "StartDate": "2015-03-02T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275969, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:20-07:00", + "Modified": "2022-07-06T10:48:08-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9373, + "Employee": 135, + "EmployeeHistory": 276099, + "EmployeeAgreement": 512, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664375700, + "EndTime": 1664396460, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 0, + "intUnixStart": 1664375700, + "intUnixEnd": 1664375700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.77, + "TotalTimeInv": 5.25, + "Cost": 80.78, + "Roster": 21335, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 23, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2389, + "File": 16897, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 135, + "Created": "2022-09-28T08:35:04-06:00", + "Modified": "2022-09-28T14:29:46-06:00", + "OnCost": 80.78, + "StartTimeLocalized": "2022-09-28T08:35:00-06:00", + "EndTimeLocalized": "2022-09-28T14:21:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 135, + "DisplayName": "Marissa Soto-Valerio", + "EmployeeProfile": 135, + "Employee": 135, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_94560170a6a83cf1408a9e5e5068262e.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Cbw5hGMmYNTodn0SgrSSbDEWXJsJQ8NcV4R6esuf48aWPVFOyf9Ckjm48MZ~q9~FCgAmOOPbTWvcreai8GumOSy8CP~-KtO5WKL-fRoHvLU5HHFSu2gxxjAHsq4mm~iuvxpodjqd4Gn0Zs3LB3r2N~lY9kxuXcSNRkMZ3ySBIc8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 23, + "OperationalUnitName": "Dr. Pean", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Pean" + }, + "EmployeeInfo": { + "Id": 135, + "DisplayName": "Marissa Soto-Valerio", + "EmployeeProfile": 135, + "Employee": 135, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_94560170a6a83cf1408a9e5e5068262e.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Cbw5hGMmYNTodn0SgrSSbDEWXJsJQ8NcV4R6esuf48aWPVFOyf9Ckjm48MZ~q9~FCgAmOOPbTWvcreai8GumOSy8CP~-KtO5WKL-fRoHvLU5HHFSu2gxxjAHsq4mm~iuvxpodjqd4Gn0Zs3LB3r2N~lY9kxuXcSNRkMZ3ySBIc8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 135, + "Company": 3, + "FirstName": "Marissa", + "LastName": "Soto-Valerio", + "DisplayName": "Marissa Soto-Valerio", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272938, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 10369, + "UserId": 135, + "JobAppId": null, + "Active": true, + "StartDate": "2022-07-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276099, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-07-19T09:22:30-06:00", + "Modified": "2022-08-31T19:39:45-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9374, + "Employee": 93, + "EmployeeHistory": 130466, + "EmployeeAgreement": 126, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664376300, + "EndTime": 1664417160, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664395200": "OUT", + "1664398800": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18900, + "intEnd": 22500, + "intUnixStart": 1664395200, + "intUnixEnd": 1664398800, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 10.35, + "TotalTimeInv": 3.25, + "Cost": 144.9, + "Roster": 21248, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 59, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2424, + "File": 16892, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 93, + "Created": "2022-09-28T08:45:35-06:00", + "Modified": "2022-09-28T21:45:05-06:00", + "OnCost": 144.9, + "StartTimeLocalized": "2022-09-28T08:45:00-06:00", + "EndTimeLocalized": "2022-09-28T20:06:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 93, + "DisplayName": "Misty Perez", + "EmployeeProfile": 93, + "Employee": 93, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_053d5fbe49865a3562ae72163fc94574.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UtJYG4Q1srblmypp8UCcyZyU4SeRM49hl7Qhq95mXwCWCLKWmMEMgoaz4G~3pmUl9U3BapJDV96wXgCG~oY71eVq29AoBB0voF0PrSAcvyGitXEvgUHyyvifHwnOKOTTarR-sWjCht5VmBnEzIjVjeVDz3TotmKabWJK3oIDi~M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 59, + "OperationalUnitName": "Clark Page PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Clark Page PA-C" + }, + "EmployeeInfo": { + "Id": 93, + "DisplayName": "Misty Perez", + "EmployeeProfile": 93, + "Employee": 93, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_053d5fbe49865a3562ae72163fc94574.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UtJYG4Q1srblmypp8UCcyZyU4SeRM49hl7Qhq95mXwCWCLKWmMEMgoaz4G~3pmUl9U3BapJDV96wXgCG~oY71eVq29AoBB0voF0PrSAcvyGitXEvgUHyyvifHwnOKOTTarR-sWjCht5VmBnEzIjVjeVDz3TotmKabWJK3oIDi~M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 93, + "Company": 3, + "FirstName": "Misty", + "LastName": "Perez", + "DisplayName": "Misty Perez", + "OtherName": null, + "Salutation": null, + "MainAddress": 292, + "PostalAddress": null, + "Contact": 57473, + "EmergencyAddress": 284, + "DateOfBirth": "1992-11-08T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1093, + "UserId": 93, + "JobAppId": null, + "Active": true, + "StartDate": "2015-03-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 130466, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-30T15:36:46-07:00", + "Modified": "2022-04-28T11:14:31-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9375, + "Employee": 78, + "EmployeeHistory": 130449, + "EmployeeAgreement": 300, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664376660, + "EndTime": 1664408520, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664395260": "OUT", + "1664398860": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18600, + "intEnd": 22200, + "intUnixStart": 1664395260, + "intUnixEnd": 1664398860, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.85, + "TotalTimeInv": 8.15, + "Cost": 117.75, + "Roster": 21226, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 34, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2392, + "File": 16916, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 78, + "Created": "2022-09-28T08:51:48-06:00", + "Modified": "2022-09-28T21:46:30-06:00", + "OnCost": 117.75, + "StartTimeLocalized": "2022-09-28T08:51:00-06:00", + "EndTimeLocalized": "2022-09-28T17:42:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 78, + "DisplayName": "Hector Franco", + "EmployeeProfile": 78, + "Employee": 78, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0c697a35aaafa3a175cd0ef4c3463996.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NmHVh9Xoif4ePcexxj1rMJ0fcunV6eCn-UMLC4nMp7Wi5IoLveL-PJOEq8dg1n-7OpTl8efqKlJWwOC9N-L5NSteLrwNVer9QaRhW0xsI5xhyDXWYorFTrEjkAaHvYcbsppoYwt~SQFthgAzWr4mlNabDSuj~rGc9nYuDj0MLtQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 78, + "DisplayName": "Hector Franco", + "EmployeeProfile": 78, + "Employee": 78, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0c697a35aaafa3a175cd0ef4c3463996.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NmHVh9Xoif4ePcexxj1rMJ0fcunV6eCn-UMLC4nMp7Wi5IoLveL-PJOEq8dg1n-7OpTl8efqKlJWwOC9N-L5NSteLrwNVer9QaRhW0xsI5xhyDXWYorFTrEjkAaHvYcbsppoYwt~SQFthgAzWr4mlNabDSuj~rGc9nYuDj0MLtQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 78, + "Company": 2, + "FirstName": "Hector", + "LastName": "Franco", + "DisplayName": "Hector Franco", + "OtherName": null, + "Salutation": null, + "MainAddress": 275, + "PostalAddress": null, + "Contact": 16572, + "EmergencyAddress": 276, + "DateOfBirth": "1999-05-21T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 945, + "UserId": 78, + "JobAppId": null, + "Active": true, + "StartDate": "2021-10-11T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 130449, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:29-07:00", + "Modified": "2022-04-28T11:01:18-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9376, + "Employee": 92, + "EmployeeHistory": 276074, + "EmployeeAgreement": 293, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664376840, + "EndTime": 1664408520, + "Mealbreak": "2022-09-28T00:42:00-06:00", + "MealbreakSlots": { + "1664396820": "OUT", + "1664399340": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 19980, + "intEnd": 22500, + "intUnixStart": 1664396820, + "intUnixEnd": 1664399340, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.1, + "TotalTimeInv": 8.1, + "Cost": 113.4, + "Roster": 21235, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 34, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2432, + "File": 16917, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 92, + "Created": "2022-09-28T08:54:48-06:00", + "Modified": "2022-09-28T21:46:43-06:00", + "OnCost": 113.4, + "StartTimeLocalized": "2022-09-28T08:54:00-06:00", + "EndTimeLocalized": "2022-09-28T17:42:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 92, + "DisplayName": "Lesley Ortiz", + "EmployeeProfile": 92, + "Employee": 92, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_da29dc55d7af984cbe88a019ba67854d.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=g1ZmEDsVkl8Va7V4QdQd31ynirzIw1zFFq~af8Pe2r73XbEHZjiVzAgstNXsKipX1TsdUtcDBg7KOU3oQ3paIf3dSIiQubl3Wlu3Knjz8hwXJleEQBXRalHowdCBiC5v-hUliKCFHKPfwpbGJCFbmCrQAsRviJVl-GPVZnoMulU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 92, + "DisplayName": "Lesley Ortiz", + "EmployeeProfile": 92, + "Employee": 92, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_da29dc55d7af984cbe88a019ba67854d.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=g1ZmEDsVkl8Va7V4QdQd31ynirzIw1zFFq~af8Pe2r73XbEHZjiVzAgstNXsKipX1TsdUtcDBg7KOU3oQ3paIf3dSIiQubl3Wlu3Knjz8hwXJleEQBXRalHowdCBiC5v-hUliKCFHKPfwpbGJCFbmCrQAsRviJVl-GPVZnoMulU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 92, + "Company": 5, + "FirstName": "Lesley", + "LastName": "Ortiz", + "DisplayName": "Lesley Ortiz", + "OtherName": null, + "Salutation": null, + "MainAddress": 291, + "PostalAddress": null, + "Contact": 75336, + "EmergencyAddress": 284, + "DateOfBirth": "1996-11-09T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1225, + "UserId": 92, + "JobAppId": null, + "Active": true, + "StartDate": "2022-02-21T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276074, + "CustomFieldData": null, + "Creator": 29, + "Created": "2022-03-30T15:25:13-07:00", + "Modified": "2022-08-17T12:47:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 29, + "DisplayName": "Aracely Tirrell", + "EmployeeProfile": 30, + "Employee": 30, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0d6425f581e9558209dd05be4e252239.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L9-lhv8DadL3tonHbygPqGiLf7bJAmakD7hzTwKXLJc3~GIZU6n16NldpwO6IqaxrQ61jRs9SH2sv0q1xRVN2sf7pv8rvyPxVEgPib~cuBzneMQ4FI5NBhKOIbx0ggCpukXtdUwwLgmjIGcOcdIqmZ8qCNbnre9QR63AEXdvgJU_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9377, + "Employee": 117, + "EmployeeHistory": 276141, + "EmployeeAgreement": 442, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664376900, + "EndTime": 1664409660, + "Mealbreak": "2022-09-28T01:02:00-06:00", + "MealbreakSlots": { + "1664395200": "OUT", + "1664398920": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18300, + "intEnd": 22020, + "intUnixStart": 1664395200, + "intUnixEnd": 1664398920, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.07, + "TotalTimeInv": 9, + "Cost": 80.7, + "Roster": 21293, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2398, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 117, + "Created": "2022-09-28T08:55:10-06:00", + "Modified": "2022-09-28T21:46:44-06:00", + "OnCost": 80.7, + "StartTimeLocalized": "2022-09-28T08:55:00-06:00", + "EndTimeLocalized": "2022-09-28T18:01:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 117, + "DisplayName": "Ilya Davalos", + "EmployeeProfile": 117, + "Employee": 117, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=I+D&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 117, + "DisplayName": "Ilya Davalos", + "EmployeeProfile": 117, + "Employee": 117, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=I+D&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 117, + "Company": 7, + "FirstName": "Ilya", + "LastName": "Davalos", + "DisplayName": "Ilya Davalos", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 113093, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 117, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276141, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:17-06:00", + "Modified": "2022-09-27T08:46:16-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9378, + "Employee": 118, + "EmployeeHistory": 115913, + "EmployeeAgreement": 443, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377020, + "EndTime": 1664409480, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664395020": "OUT", + "1664398620": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664395020, + "intUnixEnd": 1664398620, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.02, + "TotalTimeInv": 9, + "Cost": 64.16, + "Roster": 21310, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2400, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 118, + "Created": "2022-09-28T08:57:10-06:00", + "Modified": "2022-09-28T21:46:43-06:00", + "OnCost": 64.16, + "StartTimeLocalized": "2022-09-28T08:57:00-06:00", + "EndTimeLocalized": "2022-09-28T17:58:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 118, + "DisplayName": "Silvia Ledon", + "EmployeeProfile": 118, + "Employee": 118, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=S+L&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 118, + "DisplayName": "Silvia Ledon", + "EmployeeProfile": 118, + "Employee": 118, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=S+L&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 118, + "Company": 7, + "FirstName": "Silvia", + "LastName": "Ledon", + "DisplayName": "Silvia Ledon", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 113035, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 118, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115913, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:18-06:00", + "Modified": "2022-04-25T17:50:56-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9379, + "Employee": 63, + "EmployeeHistory": 275988, + "EmployeeAgreement": 65, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377020, + "EndTime": 1664395440, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 0, + "intUnixStart": 1664377020, + "intUnixEnd": 1664377020, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.12, + "TotalTimeInv": 5, + "Cost": 0, + "Roster": 21150, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 23, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2393, + "File": 16895, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": 62, + "Created": "2022-09-28T08:57:12-06:00", + "Modified": "2022-09-28T14:11:30-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T08:57:00-06:00", + "EndTimeLocalized": "2022-09-28T14:04:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 62, + "DisplayName": "Jules Pean", + "EmployeeProfile": 63, + "Employee": 63, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a73f41564e0cc3720ffd597c238e2bcf.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gJwioREdFKg3qimVBJDuk~Reid24G1TbeBfwHUEmeM20pREAcqdrl~80kH2xGiSZQ5mrqoI~Ufq4B6qDwX6wiQ6Mk1e-Y4xeI4XrQLZTlZ9muO6-3xWfJ~DRKirB~DyGfDi9AXqMM7BbuDmw3UBzm1eTA20VjvTpVEbm74PLEGk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 23, + "OperationalUnitName": "Dr. Pean", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Pean" + }, + "EmployeeInfo": { + "Id": 62, + "DisplayName": "Jules Pean", + "EmployeeProfile": 63, + "Employee": 63, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a73f41564e0cc3720ffd597c238e2bcf.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gJwioREdFKg3qimVBJDuk~Reid24G1TbeBfwHUEmeM20pREAcqdrl~80kH2xGiSZQ5mrqoI~Ufq4B6qDwX6wiQ6Mk1e-Y4xeI4XrQLZTlZ9muO6-3xWfJ~DRKirB~DyGfDi9AXqMM7BbuDmw3UBzm1eTA20VjvTpVEbm74PLEGk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 63, + "Company": 2, + "FirstName": "Jules", + "LastName": "Pean", + "DisplayName": "Jules Pean", + "OtherName": null, + "Salutation": null, + "MainAddress": 211, + "PostalAddress": null, + "Contact": 272903, + "EmergencyAddress": 284, + "DateOfBirth": "1952-03-08T00:00:00-08:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1190, + "UserId": 62, + "JobAppId": null, + "Active": true, + "StartDate": "2019-08-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275988, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:25-07:00", + "Modified": "2022-07-06T11:04:00-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9380, + "Employee": 142, + "EmployeeHistory": 276139, + "EmployeeAgreement": 542, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377080, + "EndTime": 1664407140, + "Mealbreak": "2022-09-28T00:58:00-06:00", + "MealbreakSlots": { + "1664394960": "OUT", + "1664398440": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17880, + "intEnd": 21360, + "intUnixStart": 1664394960, + "intUnixEnd": 1664398440, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.38, + "TotalTimeInv": 8, + "Cost": 0, + "Roster": 21846, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 34, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2401, + "File": 16910, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 142, + "Created": "2022-09-28T08:58:04-06:00", + "Modified": "2022-09-28T21:46:58-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T08:58:00-06:00", + "EndTimeLocalized": "2022-09-28T17:19:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 142, + "DisplayName": "Vanessa Magallanes", + "EmployeeProfile": 142, + "Employee": 142, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fa565141b7f588a7bbe6bb8e34e45f2e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=BtW8mTyd40wfcVorqMsOWuhSDBOqnyjlBD4hmOgHCDhD8yYBjH5cfGN~0h-PgZhECRyXtWrgf3bbMAZsCU-Pms~DsOSeDhMbwf3kOf-ta2H6Lkk3yCDhu3kOYA94Yds-k932qLTDy~mbXnM65LI435m2tEZ~m9jFEdWrZzZQXtI_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 142, + "DisplayName": "Vanessa Magallanes", + "EmployeeProfile": 142, + "Employee": 142, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fa565141b7f588a7bbe6bb8e34e45f2e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=BtW8mTyd40wfcVorqMsOWuhSDBOqnyjlBD4hmOgHCDhD8yYBjH5cfGN~0h-PgZhECRyXtWrgf3bbMAZsCU-Pms~DsOSeDhMbwf3kOf-ta2H6Lkk3yCDhu3kOYA94Yds-k932qLTDy~mbXnM65LI435m2tEZ~m9jFEdWrZzZQXtI_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 142, + "Company": 3, + "FirstName": "Vanessa", + "LastName": "Magallanes", + "DisplayName": "Vanessa Magallanes", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272968, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 16284, + "UserId": 142, + "JobAppId": null, + "Active": true, + "StartDate": "2022-09-21T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276139, + "CustomFieldData": null, + "Creator": 2, + "Created": "2022-09-21T17:48:15-06:00", + "Modified": "2022-09-23T16:33:22-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9381, + "Employee": 96, + "EmployeeHistory": 276048, + "EmployeeAgreement": 135, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377080, + "EndTime": 1664393520, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 0, + "intUnixStart": 1664377080, + "intUnixEnd": 1664377080, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 4.57, + "TotalTimeInv": 3, + "Cost": 0, + "Roster": 21249, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 59, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2403, + "File": 16889, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 96, + "Created": "2022-09-28T08:58:43-06:00", + "Modified": "2022-09-28T14:12:16-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T08:58:00-06:00", + "EndTimeLocalized": "2022-09-28T13:32:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 96, + "DisplayName": "Clark Page", + "EmployeeProfile": 96, + "Employee": 96, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a19b6aeb9552ecba1e12d71958dee40d.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Mm5g23w8dnxp011tIu0lVcpSgiZY4amqNnHkVZ9cAQefVOtXE7nxXDKLPQ0y01R68V5mZgJFwanjUxn~Xp2ddBo1L2uetx2Ye5dkiODK8p5midqpCYcdLFMVdyOcUemLapoXloYdZMbr277HUlAK-jw7y6H1p4e-8PA1R~nDOik_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 59, + "OperationalUnitName": "Clark Page PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Clark Page PA-C" + }, + "EmployeeInfo": { + "Id": 96, + "DisplayName": "Clark Page", + "EmployeeProfile": 96, + "Employee": 96, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a19b6aeb9552ecba1e12d71958dee40d.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Mm5g23w8dnxp011tIu0lVcpSgiZY4amqNnHkVZ9cAQefVOtXE7nxXDKLPQ0y01R68V5mZgJFwanjUxn~Xp2ddBo1L2uetx2Ye5dkiODK8p5midqpCYcdLFMVdyOcUemLapoXloYdZMbr277HUlAK-jw7y6H1p4e-8PA1R~nDOik_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 96, + "Company": 3, + "FirstName": "Clark", + "LastName": "Page", + "DisplayName": "Clark Page", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 57651, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1103, + "UserId": 96, + "JobAppId": null, + "Active": true, + "StartDate": "2022-03-31T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276048, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-31T14:46:22-07:00", + "Modified": "2022-07-19T13:03:28-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9382, + "Employee": 71, + "EmployeeHistory": 275981, + "EmployeeAgreement": 74, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377080, + "EndTime": 1664396460, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -780, + "intEnd": -780, + "intUnixStart": 1664376300, + "intUnixEnd": 1664376300, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.38, + "TotalTimeInv": 5.03, + "Cost": 75.32, + "Roster": 21198, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 23, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2394, + "File": 16896, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 71, + "Created": "2022-09-28T08:58:52-06:00", + "Modified": "2022-09-28T14:29:46-06:00", + "OnCost": 75.32, + "StartTimeLocalized": "2022-09-28T08:58:00-06:00", + "EndTimeLocalized": "2022-09-28T14:21:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 71, + "DisplayName": "Gabriela Grijalva", + "EmployeeProfile": 71, + "Employee": 71, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0b7f317a48756482cbfb25021a9465e0.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EbRpVEWQKjHj3Tpm-bNR8Xgq4M6NLwWPwBXQrbD~QwR8z6W8gw9qjdNkZdpV-TOyy20l082el2Z19foIRbkT~DDWf4niWcf022XpnsKfG1oaQ~yYXhHoN4niTenNU9nXtv8Qkh~gFRhSewmh6fcCLSugti5Vk34UPDB7~Umjmwk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 23, + "OperationalUnitName": "Dr. Pean", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Pean" + }, + "EmployeeInfo": { + "Id": 71, + "DisplayName": "Gabriela Grijalva", + "EmployeeProfile": 71, + "Employee": 71, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0b7f317a48756482cbfb25021a9465e0.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EbRpVEWQKjHj3Tpm-bNR8Xgq4M6NLwWPwBXQrbD~QwR8z6W8gw9qjdNkZdpV-TOyy20l082el2Z19foIRbkT~DDWf4niWcf022XpnsKfG1oaQ~yYXhHoN4niTenNU9nXtv8Qkh~gFRhSewmh6fcCLSugti5Vk34UPDB7~Umjmwk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 71, + "Company": 2, + "FirstName": "Gabriela", + "LastName": "Grijalva", + "DisplayName": "Gabriela Grijalva", + "OtherName": null, + "Salutation": null, + "MainAddress": 225, + "PostalAddress": null, + "Contact": 272911, + "EmergencyAddress": 267, + "DateOfBirth": "2000-06-27T00:00:00-06:00", + "Gender": 2, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 944, + "UserId": 71, + "JobAppId": null, + "Active": true, + "StartDate": "2020-09-24T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275981, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-07-06T10:57:07-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9383, + "Employee": 113, + "EmployeeHistory": 115851, + "EmployeeAgreement": 438, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377140, + "EndTime": 1664409600, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664395200": "OUT", + "1664398800": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18060, + "intEnd": 21660, + "intUnixStart": 1664395200, + "intUnixEnd": 1664398800, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.02, + "TotalTimeInv": 9, + "Cost": 64.16, + "Roster": 21288, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2406, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 113, + "Created": "2022-09-28T08:59:04-06:00", + "Modified": "2022-09-28T21:46:43-06:00", + "OnCost": 64.16, + "StartTimeLocalized": "2022-09-28T08:59:00-06:00", + "EndTimeLocalized": "2022-09-28T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 113, + "DisplayName": "Gabriela Gurrola", + "EmployeeProfile": 113, + "Employee": 113, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=G+G&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 113, + "DisplayName": "Gabriela Gurrola", + "EmployeeProfile": 113, + "Employee": 113, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=G+G&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 113, + "Company": 7, + "FirstName": "Gabriela", + "LastName": "Gurrola", + "DisplayName": "Gabriela Gurrola", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 112974, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 113, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115851, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:16-06:00", + "Modified": "2022-04-25T17:43:50-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9384, + "Employee": 112, + "EmployeeHistory": 115854, + "EmployeeAgreement": 437, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377140, + "EndTime": 1664409600, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664395200": "OUT", + "1664398800": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18060, + "intEnd": 21660, + "intUnixStart": 1664395200, + "intUnixEnd": 1664398800, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.02, + "TotalTimeInv": 9, + "Cost": 64.16, + "Roster": 21283, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2410, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 112, + "Created": "2022-09-28T08:59:15-06:00", + "Modified": "2022-09-28T21:46:44-06:00", + "OnCost": 64.16, + "StartTimeLocalized": "2022-09-28T08:59:00-06:00", + "EndTimeLocalized": "2022-09-28T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 112, + "DisplayName": "Carlos Espinosa", + "EmployeeProfile": 112, + "Employee": 112, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=C+E&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 112, + "DisplayName": "Carlos Espinosa", + "EmployeeProfile": 112, + "Employee": 112, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=C+E&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 112, + "Company": 7, + "FirstName": "Carlos", + "LastName": "Espinosa", + "DisplayName": "Carlos Espinosa", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 112977, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 112, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115854, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:15-06:00", + "Modified": "2022-04-25T17:45:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9385, + "Employee": 115, + "EmployeeHistory": 115850, + "EmployeeAgreement": 440, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377200, + "EndTime": 1664409600, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664395200": "OUT", + "1664398800": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664395200, + "intUnixEnd": 1664398800, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 64, + "Roster": 21291, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2404, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 115, + "Created": "2022-09-28T09:00:05-06:00", + "Modified": "2022-09-28T21:46:44-06:00", + "OnCost": 64, + "StartTimeLocalized": "2022-09-28T09:00:00-06:00", + "EndTimeLocalized": "2022-09-28T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 115, + "DisplayName": "Alan Inube", + "EmployeeProfile": 115, + "Employee": 115, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+I&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 115, + "DisplayName": "Alan Inube", + "EmployeeProfile": 115, + "Employee": 115, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+I&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 115, + "Company": 7, + "FirstName": "Alan", + "LastName": "Inube", + "DisplayName": "Alan Inube", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 112973, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 115, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115850, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:16-06:00", + "Modified": "2022-04-25T17:43:43-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9386, + "Employee": 126, + "EmployeeHistory": 223782, + "EmployeeAgreement": 469, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377200, + "EndTime": 1664398800, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664388540": "OUT", + "1664392140": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 11340, + "intEnd": 14940, + "intUnixStart": 1664388540, + "intUnixEnd": 1664392140, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 5, + "TotalTimeInv": 6, + "Cost": 70, + "Roster": 21315, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2407, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 126, + "Created": "2022-09-28T09:00:08-06:00", + "Modified": "2022-09-28T15:55:02-06:00", + "OnCost": 70, + "StartTimeLocalized": "2022-09-28T09:00:00-06:00", + "EndTimeLocalized": "2022-09-28T15:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 126, + "DisplayName": "Alexandra Benitez", + "EmployeeProfile": 126, + "Employee": 126, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+B&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 126, + "DisplayName": "Alexandra Benitez", + "EmployeeProfile": 126, + "Employee": 126, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+B&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 126, + "Company": 7, + "FirstName": "Alexandra", + "LastName": "Benitez", + "DisplayName": "Alexandra Benitez", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 167031, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 126, + "JobAppId": null, + "Active": true, + "StartDate": "2022-05-20T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 223782, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-05-20T09:38:22-06:00", + "Modified": "2022-06-06T11:37:01-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9387, + "Employee": 116, + "EmployeeHistory": 115972, + "EmployeeAgreement": 441, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377200, + "EndTime": 1664410140, + "Mealbreak": "2022-09-28T01:04:00-06:00", + "MealbreakSlots": { + "1664395200": "OUT", + "1664399040": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21840, + "intUnixStart": 1664395200, + "intUnixEnd": 1664399040, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.08, + "TotalTimeInv": 9, + "Cost": 64.64, + "Roster": 21292, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2399, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 116, + "Created": "2022-09-28T09:00:09-06:00", + "Modified": "2022-09-28T21:46:44-06:00", + "OnCost": 64.64, + "StartTimeLocalized": "2022-09-28T09:00:00-06:00", + "EndTimeLocalized": "2022-09-28T18:09:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 116, + "DisplayName": "Brenda De Leon", + "EmployeeProfile": 116, + "Employee": 116, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=B+L&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 116, + "DisplayName": "Brenda De Leon", + "EmployeeProfile": 116, + "Employee": 116, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=B+L&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 116, + "Company": 7, + "FirstName": "Brenda", + "LastName": "De Leon", + "DisplayName": "Brenda De Leon", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 113094, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 116, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115972, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:17-06:00", + "Modified": "2022-04-25T18:05:12-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9388, + "Employee": 137, + "EmployeeHistory": 276086, + "EmployeeAgreement": 523, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377200, + "EndTime": 1664409600, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664395140": "OUT", + "1664398740": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17940, + "intEnd": 21540, + "intUnixStart": 1664395140, + "intUnixEnd": 1664398740, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 0, + "Roster": 21325, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2412, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 137, + "Created": "2022-09-28T09:00:14-06:00", + "Modified": "2022-09-28T19:10:54-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T09:00:00-06:00", + "EndTimeLocalized": "2022-09-28T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 137, + "DisplayName": "Omar Castaneda", + "EmployeeProfile": 137, + "Employee": 137, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=O+C&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 137, + "DisplayName": "Omar Castaneda", + "EmployeeProfile": 137, + "Employee": 137, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=O+C&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 137, + "Company": 7, + "FirstName": "Omar", + "LastName": "Castaneda", + "DisplayName": "Omar Castaneda", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272944, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 137, + "JobAppId": null, + "Active": true, + "StartDate": "2022-08-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276086, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-08-19T12:18:45-06:00", + "Modified": "2022-08-19T12:20:31-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9389, + "Employee": 111, + "EmployeeHistory": 115976, + "EmployeeAgreement": 436, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377200, + "EndTime": 1664409600, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664395200": "OUT", + "1664398800": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664395200, + "intUnixEnd": 1664398800, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 64, + "Roster": 21269, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2409, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 111, + "Created": "2022-09-28T09:00:20-06:00", + "Modified": "2022-09-28T21:46:43-06:00", + "OnCost": 64, + "StartTimeLocalized": "2022-09-28T09:00:00-06:00", + "EndTimeLocalized": "2022-09-28T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 111, + "DisplayName": "Martha Centeno", + "EmployeeProfile": 111, + "Employee": 111, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=M+C&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 111, + "DisplayName": "Martha Centeno", + "EmployeeProfile": 111, + "Employee": 111, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=M+C&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 111, + "Company": 7, + "FirstName": "Martha", + "LastName": "Centeno", + "DisplayName": "Martha Centeno", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 113098, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": 0, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 111, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115976, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:15-06:00", + "Modified": "2022-04-25T18:11:10-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9390, + "Employee": 114, + "EmployeeHistory": 115912, + "EmployeeAgreement": 439, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377200, + "EndTime": 1664409600, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664395200": "OUT", + "1664398800": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 18000, + "intEnd": 21600, + "intUnixStart": 1664395200, + "intUnixEnd": 1664398800, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 9, + "Cost": 64, + "Roster": 21285, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2405, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 114, + "Created": "2022-09-28T09:00:24-06:00", + "Modified": "2022-09-28T21:46:43-06:00", + "OnCost": 64, + "StartTimeLocalized": "2022-09-28T09:00:00-06:00", + "EndTimeLocalized": "2022-09-28T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 114, + "DisplayName": "Sergio Briceno", + "EmployeeProfile": 114, + "Employee": 114, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_c1f0e75d5d3d393e535475b8b1188183.jpg?Expires=1664548383&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L-Nhxp-d0An00S2ES~aeyaSOfX3M-7WRtm195DzBGTSSppJ0gloC-3hEfAPeTwjbaUIMPJwMY3PWYvfcK4VXrANb3r9FX6WTgQeFgrzbHxiJLYU7j6yFHmlOTLd8sNk5O9fESoaKvjoiVt9hirYa411~v8NXRhDwc6MoanS1FFw_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 114, + "DisplayName": "Sergio Briceno", + "EmployeeProfile": 114, + "Employee": 114, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_c1f0e75d5d3d393e535475b8b1188183.jpg?Expires=1664548383&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L-Nhxp-d0An00S2ES~aeyaSOfX3M-7WRtm195DzBGTSSppJ0gloC-3hEfAPeTwjbaUIMPJwMY3PWYvfcK4VXrANb3r9FX6WTgQeFgrzbHxiJLYU7j6yFHmlOTLd8sNk5O9fESoaKvjoiVt9hirYa411~v8NXRhDwc6MoanS1FFw_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 114, + "Company": 7, + "FirstName": "Sergio", + "LastName": "Briceno", + "DisplayName": "Sergio Briceno", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 112975, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 2009, + "UserId": 114, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115912, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:16-06:00", + "Modified": "2022-04-25T17:49:32-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9391, + "Employee": 98, + "EmployeeHistory": 245298, + "EmployeeAgreement": 167, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377260, + "EndTime": 1664417160, + "Mealbreak": "2022-09-28T00:56:00-06:00", + "MealbreakSlots": { + "1664396880": "OUT", + "1664400240": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 19620, + "intEnd": 22980, + "intUnixStart": 1664396880, + "intUnixEnd": 1664400240, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 10.15, + "TotalTimeInv": 8.98, + "Cost": 142.1, + "Roster": 21043, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 59, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2395, + "File": 16933, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 98, + "Created": "2022-09-28T09:01:12-06:00", + "Modified": "2022-09-28T21:44:33-06:00", + "OnCost": 142.1, + "StartTimeLocalized": "2022-09-28T09:01:00-06:00", + "EndTimeLocalized": "2022-09-28T20:06:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 98, + "DisplayName": "Esther Lujan", + "EmployeeProfile": 98, + "Employee": 98, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a11cbc0dc41039db298bfa15665ea864.jpg?Expires=1664546435&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=b8xj83hOY3IQIuUH91upA8u9kApr1JOYkDbh4AT~7hvfo5uLJCKo~aF8haP2TJLIdZLTslXnBYIkZNIyWlpSb5w4sBvZ-x0EzgyMo8Ri5uXqFLE0TK9CEnXMzg-de4uIftU2fFsdGCwZuivk1RPLNL4~3k2g4bN-PNoc~gJpi~4_", + "Pronouns": 2, + "CustomPronouns": null + }, + "OperationalUnitInfo": { + "Id": 59, + "OperationalUnitName": "Clark Page PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Clark Page PA-C" + }, + "EmployeeInfo": { + "Id": 98, + "DisplayName": "Esther Lujan", + "EmployeeProfile": 98, + "Employee": 98, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a11cbc0dc41039db298bfa15665ea864.jpg?Expires=1664546435&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=b8xj83hOY3IQIuUH91upA8u9kApr1JOYkDbh4AT~7hvfo5uLJCKo~aF8haP2TJLIdZLTslXnBYIkZNIyWlpSb5w4sBvZ-x0EzgyMo8Ri5uXqFLE0TK9CEnXMzg-de4uIftU2fFsdGCwZuivk1RPLNL4~3k2g4bN-PNoc~gJpi~4_", + "Pronouns": 2, + "CustomPronouns": null + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 98, + "Company": 5, + "FirstName": "Esther", + "LastName": "Lujan", + "DisplayName": "Esther Lujan", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 242283, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": 2, + "Pronouns": 2, + "CustomPronouns": null, + "Photo": 1068, + "UserId": 98, + "JobAppId": null, + "Active": true, + "StartDate": "2022-03-31T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 245298, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-31T16:25:29-07:00", + "Modified": "2022-06-10T22:00:18-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9392, + "Employee": 65, + "EmployeeHistory": 275964, + "EmployeeAgreement": 68, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377260, + "EndTime": 1664397360, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -60, + "intEnd": -60, + "intUnixStart": 1664377200, + "intUnixEnd": 1664377200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.58, + "TotalTimeInv": 4.98, + "Cost": 100.44, + "Roster": 21166, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 26, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2396, + "File": 16858, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 65, + "Created": "2022-09-28T09:01:45-06:00", + "Modified": "2022-09-28T18:04:23-06:00", + "OnCost": 100.44, + "StartTimeLocalized": "2022-09-28T09:01:00-06:00", + "EndTimeLocalized": "2022-09-28T14:36:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 65, + "DisplayName": "Amador Belmontes Martinez", + "EmployeeProfile": 65, + "Employee": 65, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0fb803e0ecc50c61a88686d810cc303f.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=N3kRmlvr-4naE225X0nBvETl36Oj77urHExq~GJh5gVzYKPtr8aqNAOE8o-8MN7doCZC-bdOnJ4LoXXFX-2y60eX1iHAA~10fMebzwyod-Vs-Us-ush5HV~trwicZGaSrfGv1M~5k4sH-6VCD1kClLkWI0sKL4yrj-YzoQo7lqc_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 26, + "OperationalUnitName": "Sono", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Sono" + }, + "EmployeeInfo": { + "Id": 65, + "DisplayName": "Amador Belmontes Martinez", + "EmployeeProfile": 65, + "Employee": 65, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0fb803e0ecc50c61a88686d810cc303f.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=N3kRmlvr-4naE225X0nBvETl36Oj77urHExq~GJh5gVzYKPtr8aqNAOE8o-8MN7doCZC-bdOnJ4LoXXFX-2y60eX1iHAA~10fMebzwyod-Vs-Us-ush5HV~trwicZGaSrfGv1M~5k4sH-6VCD1kClLkWI0sKL4yrj-YzoQo7lqc_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 65, + "Company": 2, + "FirstName": "Amador", + "LastName": "Belmontes Martinez", + "DisplayName": "Amador Belmontes Martinez", + "OtherName": null, + "Salutation": null, + "MainAddress": 214, + "PostalAddress": null, + "Contact": 272905, + "EmergencyAddress": 262, + "DateOfBirth": "1969-02-08T00:00:00-08:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1130, + "UserId": 65, + "JobAppId": null, + "Active": true, + "StartDate": "2019-12-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275964, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:26-07:00", + "Modified": "2022-07-06T10:45:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9393, + "Employee": 134, + "EmployeeHistory": 276016, + "EmployeeAgreement": 492, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377320, + "EndTime": 1664409720, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664395260": "OUT", + "1664398860": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17940, + "intEnd": 21540, + "intUnixStart": 1664395260, + "intUnixEnd": 1664398860, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 0, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8, + "TotalTimeInv": 8.97, + "Cost": 0, + "Roster": 21324, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2408, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 134, + "Created": "2022-09-28T09:02:02-06:00", + "Modified": "2022-09-28T21:46:58-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T09:02:00-06:00", + "EndTimeLocalized": "2022-09-28T18:02:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 134, + "DisplayName": "Carlos Hernandez Gonzalez", + "EmployeeProfile": 134, + "Employee": 134, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=C+G&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 134, + "DisplayName": "Carlos Hernandez Gonzalez", + "EmployeeProfile": 134, + "Employee": 134, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=C+G&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 134, + "Company": 7, + "FirstName": "Carlos", + "LastName": "Hernandez Gonzalez", + "DisplayName": "Carlos Hernandez Gonzalez", + "OtherName": null, + "Salutation": null, + "MainAddress": 331, + "PostalAddress": null, + "Contact": 272930, + "EmergencyAddress": null, + "DateOfBirth": "1996-06-03T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 134, + "JobAppId": null, + "Active": true, + "StartDate": null, + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276016, + "CustomFieldData": null, + "Creator": 2, + "Created": "2022-07-06T11:30:29-06:00", + "Modified": "2022-07-06T11:36:45-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9394, + "Employee": 76, + "EmployeeHistory": 276034, + "EmployeeAgreement": 489, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664377440, + "EndTime": 1664387700, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -240, + "intEnd": 3360, + "intUnixStart": 1664377200, + "intUnixEnd": 1664380800, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 2.85, + "TotalTimeInv": 2.92, + "Cost": 0, + "Roster": 21202, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2433, + "File": 16867, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 76, + "Created": "2022-09-28T09:04:05-06:00", + "Modified": "2022-09-28T21:46:31-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T09:04:00-06:00", + "EndTimeLocalized": "2022-09-28T11:55:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 76, + "DisplayName": "Nadia Quintanilla", + "EmployeeProfile": 76, + "Employee": 76, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_40124f0029a54143cf7b7620fda4496b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=LlQK-YBhVSOrIOxpPNF4B27UNupfTVXRTKcy~YbcQrzc-kTwvDpU5ileLFajQyLlj1bAN2kCIcbD8sVldqDnx9mjDD1MxAwltdV0uI3SkEcs-9VzPEmK-TZW1hLQOG4PY1Xswuqt-DDrePJ0kjS~06NEN0H1drbNxZ7doie9Jdg_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 76, + "DisplayName": "Nadia Quintanilla", + "EmployeeProfile": 76, + "Employee": 76, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_40124f0029a54143cf7b7620fda4496b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=LlQK-YBhVSOrIOxpPNF4B27UNupfTVXRTKcy~YbcQrzc-kTwvDpU5ileLFajQyLlj1bAN2kCIcbD8sVldqDnx9mjDD1MxAwltdV0uI3SkEcs-9VzPEmK-TZW1hLQOG4PY1Xswuqt-DDrePJ0kjS~06NEN0H1drbNxZ7doie9Jdg_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 76, + "Company": 5, + "FirstName": "Nadia", + "LastName": "Quintanilla", + "DisplayName": "Nadia Quintanilla", + "OtherName": null, + "Salutation": null, + "MainAddress": 235, + "PostalAddress": null, + "Contact": 272915, + "EmergencyAddress": 271, + "DateOfBirth": "1990-11-22T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1016, + "UserId": 76, + "JobAppId": null, + "Active": true, + "StartDate": "2021-07-26T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276034, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-07-11T16:04:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9395, + "Employee": 5, + "EmployeeHistory": 275977, + "EmployeeAgreement": 103, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664378160, + "EndTime": 1664412660, + "Mealbreak": "2022-09-28T01:03:00-06:00", + "MealbreakSlots": { + "1664392020": "OUT", + "1664395800": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 13860, + "intEnd": 17640, + "intUnixStart": 1664392020, + "intUnixEnd": 1664395800, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 8.53, + "TotalTimeInv": 8.73, + "Cost": 221.78, + "Roster": 21036, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2397, + "File": 16928, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 5, + "Created": "2022-09-28T09:16:31-06:00", + "Modified": "2022-09-28T21:46:31-06:00", + "OnCost": 221.78, + "StartTimeLocalized": "2022-09-28T09:16:00-06:00", + "EndTimeLocalized": "2022-09-28T18:51:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 5, + "DisplayName": "Emmanuel Castro", + "EmployeeProfile": 5, + "Employee": 5, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_48144f3189a12d8355476d40246496c0.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gEIHVmvJDcfYhEQdlwI8R0KdH~kUMyY4nW~4G7e5fqM1m5Mu7l3lDAYt7By5N~x3wXvTJV2xUI7vojcDpycwDgaTLAHmoffK6a8~zm~6DU4wwSg5RZjbf2kTuXMzsDTe8QFpqZTYHd6XRyjNcPKK4j00mPpZoaKArO6BNVkokL8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 5, + "DisplayName": "Emmanuel Castro", + "EmployeeProfile": 5, + "Employee": 5, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_48144f3189a12d8355476d40246496c0.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gEIHVmvJDcfYhEQdlwI8R0KdH~kUMyY4nW~4G7e5fqM1m5Mu7l3lDAYt7By5N~x3wXvTJV2xUI7vojcDpycwDgaTLAHmoffK6a8~zm~6DU4wwSg5RZjbf2kTuXMzsDTe8QFpqZTYHd6XRyjNcPKK4j00mPpZoaKArO6BNVkokL8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 5, + "Company": 6, + "FirstName": "Francisco", + "LastName": "Castro", + "DisplayName": "Emmanuel Castro", + "OtherName": null, + "Salutation": null, + "MainAddress": 164, + "PostalAddress": null, + "Contact": 272871, + "EmergencyAddress": 284, + "DateOfBirth": "1974-05-20T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 993, + "UserId": 5, + "JobAppId": null, + "Active": true, + "StartDate": "2013-05-02T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275977, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-24T16:08:15-07:00", + "Modified": "2022-07-06T10:55:33-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9396, + "Employee": 24, + "EmployeeHistory": 275982, + "EmployeeAgreement": 26, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664378220, + "EndTime": 1664408520, + "Mealbreak": "2022-09-28T01:00:00-06:00", + "MealbreakSlots": { + "1664395380": "OUT", + "1664398980": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 17160, + "intEnd": 20760, + "intUnixStart": 1664395380, + "intUnixEnd": 1664398980, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.42, + "TotalTimeInv": 8.22, + "Cost": 118.72, + "Roster": 21062, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2417, + "File": 16918, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 24, + "Created": "2022-09-28T09:17:51-06:00", + "Modified": "2022-09-28T21:46:31-06:00", + "OnCost": 118.72, + "StartTimeLocalized": "2022-09-28T09:17:00-06:00", + "EndTimeLocalized": "2022-09-28T17:42:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 24, + "DisplayName": "Gumara Mata", + "EmployeeProfile": 24, + "Employee": 24, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3979ef3d653677cb781b8e10e0855d35.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=CEiUJKGMTschoNegaZAqjoALpIF7gFZlyn1J9DBXnxLF3KunzT5g6FK~8Fhe-z1J-q9vEFP7WIvYRQipjKItueJQoeeIPAb1vZQ7A7onUexwCFqneJqOvJP9SyxvNI5ByfrirzNAXzW1CDLfJUubLSUkB4-VRpr4xGCfOZLYpw8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 24, + "DisplayName": "Gumara Mata", + "EmployeeProfile": 24, + "Employee": 24, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3979ef3d653677cb781b8e10e0855d35.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=CEiUJKGMTschoNegaZAqjoALpIF7gFZlyn1J9DBXnxLF3KunzT5g6FK~8Fhe-z1J-q9vEFP7WIvYRQipjKItueJQoeeIPAb1vZQ7A7onUexwCFqneJqOvJP9SyxvNI5ByfrirzNAXzW1CDLfJUubLSUkB4-VRpr4xGCfOZLYpw8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 24, + "Company": 6, + "FirstName": "Gumara", + "LastName": "Mata", + "DisplayName": "Gumara Mata", + "OtherName": null, + "Salutation": null, + "MainAddress": 168, + "PostalAddress": null, + "Contact": 272876, + "EmergencyAddress": 284, + "DateOfBirth": "1974-06-23T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 950, + "UserId": 24, + "JobAppId": null, + "Active": true, + "StartDate": "2001-09-24T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275982, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:17-07:00", + "Modified": "2022-07-06T10:57:25-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9397, + "Employee": 37, + "EmployeeHistory": 275966, + "EmployeeAgreement": 124, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664378700, + "EndTime": 1664408520, + "Mealbreak": "2022-09-28T01:28:00-06:00", + "MealbreakSlots": { + "1664393520": "OUT", + "1664398800": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 14820, + "intEnd": 20100, + "intUnixStart": 1664393520, + "intUnixEnd": 1664398800, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 6.82, + "TotalTimeInv": 7.58, + "Cost": 119.35, + "Roster": 21100, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 34, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2415, + "File": 16919, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 39, + "Created": "2022-09-28T09:25:51-06:00", + "Modified": "2022-09-28T21:46:32-06:00", + "OnCost": 119.35, + "StartTimeLocalized": "2022-09-28T09:25:00-06:00", + "EndTimeLocalized": "2022-09-28T17:42:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 39, + "DisplayName": "Benjamin Rico Jr.", + "EmployeeProfile": 37, + "Employee": 37, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8061de79aca156ef3e62fa53502a58c2.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EI~Xg9hMI0vRYMb2MWEVCBXACYGZ0iisoJb2RTLIDpdi-~BjHwzOjOpxHHzzRM74i2PQGzZHDBimDTOSo8AFAwRYh06vOrlHcK3sXdl0-Vu-C635FcLEPKX9fuUP0lVUSA1ddtt6ErQ6lRnniSx-bM39ZYT8QSNlg7tcc9LeTDY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 39, + "DisplayName": "Benjamin Rico Jr.", + "EmployeeProfile": 37, + "Employee": 37, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8061de79aca156ef3e62fa53502a58c2.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EI~Xg9hMI0vRYMb2MWEVCBXACYGZ0iisoJb2RTLIDpdi-~BjHwzOjOpxHHzzRM74i2PQGzZHDBimDTOSo8AFAwRYh06vOrlHcK3sXdl0-Vu-C635FcLEPKX9fuUP0lVUSA1ddtt6ErQ6lRnniSx-bM39ZYT8QSNlg7tcc9LeTDY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 37, + "Company": 3, + "FirstName": "Benjamin", + "LastName": "Rico Jr.", + "DisplayName": "Benjamin Rico Jr.", + "OtherName": null, + "Salutation": null, + "MainAddress": 183, + "PostalAddress": null, + "Contact": 272883, + "EmergencyAddress": 284, + "DateOfBirth": "1990-08-31T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1033, + "UserId": 39, + "JobAppId": null, + "Active": true, + "StartDate": "2015-03-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275966, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:20-07:00", + "Modified": "2022-07-06T10:46:58-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9398, + "Employee": 18, + "EmployeeHistory": 276038, + "EmployeeAgreement": 20, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664379120, + "EndTime": 1664411220, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -1920, + "intEnd": 1680, + "intUnixStart": 1664377200, + "intUnixEnd": 1664380800, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 8.92, + "TotalTimeInv": 8.47, + "Cost": 240.84, + "Roster": 21032, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 65536, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2416, + "File": 16925, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 19, + "Created": "2022-09-28T09:32:52-06:00", + "Modified": "2022-09-28T21:46:32-06:00", + "OnCost": 240.84, + "StartTimeLocalized": "2022-09-28T09:32:00-06:00", + "EndTimeLocalized": "2022-09-28T18:27:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 19, + "DisplayName": "Hector Contreras", + "EmployeeProfile": 18, + "Employee": 18, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_14582f09774732be45869ad3659378cf.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cC18xjqhmTQEJOMLcxD20ahcNI2x85Aynkdehy3Oj32Ax0cDHcuufWsTloCh9pGGSDjlBWDkUzIPHG1FBPUnJuzcBHiFKesIrg5yisU~cupx9Yediy5BvFhc7z1CZjmaHVA6LNR~KWEuiw4y4-zrDH0Kl~2VUcEDTlJKI-XaglE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 19, + "DisplayName": "Hector Contreras", + "EmployeeProfile": 18, + "Employee": 18, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_14582f09774732be45869ad3659378cf.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cC18xjqhmTQEJOMLcxD20ahcNI2x85Aynkdehy3Oj32Ax0cDHcuufWsTloCh9pGGSDjlBWDkUzIPHG1FBPUnJuzcBHiFKesIrg5yisU~cupx9Yediy5BvFhc7z1CZjmaHVA6LNR~KWEuiw4y4-zrDH0Kl~2VUcEDTlJKI-XaglE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 18, + "Company": 3, + "FirstName": "Hector", + "LastName": "Contreras", + "DisplayName": "Hector Contreras", + "OtherName": null, + "Salutation": null, + "MainAddress": 161, + "PostalAddress": null, + "Contact": 272934, + "EmergencyAddress": 284, + "DateOfBirth": "1982-06-27T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1317, + "UserId": 19, + "JobAppId": null, + "Active": true, + "StartDate": "2010-09-16T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 1, + "AllowAppraisal": true, + "HistoryId": 276038, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:16-07:00", + "Modified": "2022-07-14T09:36:52-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9399, + "Employee": 2, + "EmployeeHistory": 61410, + "EmployeeAgreement": 102, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664379300, + "EndTime": 1664415780, + "Mealbreak": "2022-09-28T01:03:00-06:00", + "MealbreakSlots": { + "1664395440": "OUT", + "1664399220": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 16140, + "intEnd": 19920, + "intUnixStart": 1664395440, + "intUnixEnd": 1664399220, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 9.08, + "TotalTimeInv": 8.42, + "Cost": 227, + "Roster": 21371, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2402, + "File": 16932, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 2, + "Created": "2022-09-28T09:35:08-06:00", + "Modified": "2022-09-28T21:46:30-06:00", + "OnCost": 227, + "StartTimeLocalized": "2022-09-28T09:35:00-06:00", + "EndTimeLocalized": "2022-09-28T19:43:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 2, + "Company": 6, + "FirstName": "Daniel", + "LastName": "Renteria", + "DisplayName": "Daniel Renteria", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 13349, + "EmergencyAddress": 300, + "DateOfBirth": "1984-12-14T00:00:00-07:00", + "Gender": 1, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 970, + "UserId": 2, + "JobAppId": null, + "Active": true, + "StartDate": "2021-11-22T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 1, + "AllowAppraisal": true, + "HistoryId": 61410, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-24T16:08:14-07:00", + "Modified": "2022-04-15T13:25:50-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9400, + "Employee": 141, + "EmployeeHistory": 276126, + "EmployeeAgreement": 536, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664384520, + "EndTime": 1664414100, + "Mealbreak": "2022-09-28T00:52:00-06:00", + "MealbreakSlots": { + "1664395800": "OUT", + "1664398920": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 11280, + "intEnd": 14400, + "intUnixStart": 1664395800, + "intUnixEnd": 1664398920, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 7.35, + "TotalTimeInv": 0.97, + "Cost": 0, + "Roster": 21430, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 59, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2427, + "File": 16866, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 141, + "Created": "2022-09-28T11:02:00-06:00", + "Modified": "2022-09-28T19:38:34-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T11:02:00-06:00", + "EndTimeLocalized": "2022-09-28T19:15:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 141, + "DisplayName": "Ashley Campos", + "EmployeeProfile": 141, + "Employee": 141, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e747cbb66ae581183452eb94c895cef6.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=bY8sUIdd46Kp7hwJcR~9xnoQ4Qyu965vGvmpczAZ0Przgd71bU89t1ZuLHFbun3KtTkWVzUZTMqnenZXdjjw55bx5kGCzIWNpD2LBWOG8~KA~JL6ClQZADZ3ZW8Lp7KcLD7-vbj0dDkAeygBDrBi1ds9ou2vl091o7mwV8bdgi0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 59, + "OperationalUnitName": "Clark Page PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Clark Page PA-C" + }, + "EmployeeInfo": { + "Id": 141, + "DisplayName": "Ashley Campos", + "EmployeeProfile": 141, + "Employee": 141, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e747cbb66ae581183452eb94c895cef6.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=bY8sUIdd46Kp7hwJcR~9xnoQ4Qyu965vGvmpczAZ0Przgd71bU89t1ZuLHFbun3KtTkWVzUZTMqnenZXdjjw55bx5kGCzIWNpD2LBWOG8~KA~JL6ClQZADZ3ZW8Lp7KcLD7-vbj0dDkAeygBDrBi1ds9ou2vl091o7mwV8bdgi0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 141, + "Company": 2, + "FirstName": "Ashley", + "LastName": "Campos", + "DisplayName": "Ashley Campos", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272963, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 15830, + "UserId": 141, + "JobAppId": null, + "Active": true, + "StartDate": "2022-09-06T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276126, + "CustomFieldData": null, + "Creator": 2, + "Created": "2022-09-16T10:19:34-06:00", + "Modified": "2022-09-16T10:54:15-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9401, + "Employee": 76, + "EmployeeHistory": 276034, + "EmployeeAgreement": 79, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664387700, + "EndTime": 1664414580, + "Mealbreak": "2022-09-28T01:02:00-06:00", + "MealbreakSlots": { + "1664396340": "OUT", + "1664400060": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 8640, + "intEnd": 12360, + "intUnixStart": 1664396340, + "intUnixEnd": 1664400060, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 6.43, + "TotalTimeInv": 7, + "Cost": 0, + "Roster": 21433, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 47, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2371, + "File": 16930, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 76, + "Created": "2022-09-28T11:55:57-06:00", + "Modified": "2022-09-28T21:46:31-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-28T11:55:00-06:00", + "EndTimeLocalized": "2022-09-28T19:23:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 76, + "DisplayName": "Nadia Quintanilla", + "EmployeeProfile": 76, + "Employee": 76, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_40124f0029a54143cf7b7620fda4496b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=LlQK-YBhVSOrIOxpPNF4B27UNupfTVXRTKcy~YbcQrzc-kTwvDpU5ileLFajQyLlj1bAN2kCIcbD8sVldqDnx9mjDD1MxAwltdV0uI3SkEcs-9VzPEmK-TZW1hLQOG4PY1Xswuqt-DDrePJ0kjS~06NEN0H1drbNxZ7doie9Jdg_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 47, + "OperationalUnitName": "Nadia Quintanilla PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Nadia Quintanilla PA-C" + }, + "EmployeeInfo": { + "Id": 76, + "DisplayName": "Nadia Quintanilla", + "EmployeeProfile": 76, + "Employee": 76, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_40124f0029a54143cf7b7620fda4496b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=LlQK-YBhVSOrIOxpPNF4B27UNupfTVXRTKcy~YbcQrzc-kTwvDpU5ileLFajQyLlj1bAN2kCIcbD8sVldqDnx9mjDD1MxAwltdV0uI3SkEcs-9VzPEmK-TZW1hLQOG4PY1Xswuqt-DDrePJ0kjS~06NEN0H1drbNxZ7doie9Jdg_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 76, + "Company": 5, + "FirstName": "Nadia", + "LastName": "Quintanilla", + "DisplayName": "Nadia Quintanilla", + "OtherName": null, + "Salutation": null, + "MainAddress": 235, + "PostalAddress": null, + "Contact": 272915, + "EmergencyAddress": 271, + "DateOfBirth": "1990-11-22T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1016, + "UserId": 76, + "JobAppId": null, + "Active": true, + "StartDate": "2021-07-26T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276034, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-07-11T16:04:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9402, + "Employee": 81, + "EmployeeHistory": 275970, + "EmployeeAgreement": 144, + "Date": "2022-09-28T00:00:00-06:00", + "StartTime": 1664391480, + "EndTime": 1664411700, + "Mealbreak": "2022-09-28T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 0, + "intUnixStart": 1664391480, + "intUnixEnd": 1664391480, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.62, + "TotalTimeInv": 6, + "Cost": 78.68, + "Roster": 21220, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": 2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": false, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2419, + "File": 16927, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": true, + "Creator": 81, + "Created": "2022-09-28T12:58:36-06:00", + "Modified": "2022-09-28T21:46:30-06:00", + "OnCost": 78.68, + "StartTimeLocalized": "2022-09-28T12:58:00-06:00", + "EndTimeLocalized": "2022-09-28T18:35:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 81, + "DisplayName": "David Gomez", + "EmployeeProfile": 81, + "Employee": 81, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_628106735184a54f7891b6db7dfe0b39.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=MjcbfVMvTqNoWBuIb~iVUM4wr~BJ8a3IyzEL07HVFHswfZrxfim-o40CueCGeGn~Z4R~ydbCnA3kDgFkcSe6CHhxpMTJcOPe8ci78dF7ckh6DRizk9LBUqPKFx3stO5l1bTFIePOKDIv7nEo97YtZeBqryt0liTvOiE~0i4ZXSk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 81, + "DisplayName": "David Gomez", + "EmployeeProfile": 81, + "Employee": 81, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_628106735184a54f7891b6db7dfe0b39.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=MjcbfVMvTqNoWBuIb~iVUM4wr~BJ8a3IyzEL07HVFHswfZrxfim-o40CueCGeGn~Z4R~ydbCnA3kDgFkcSe6CHhxpMTJcOPe8ci78dF7ckh6DRizk9LBUqPKFx3stO5l1bTFIePOKDIv7nEo97YtZeBqryt0liTvOiE~0i4ZXSk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 81, + "Company": 3, + "FirstName": "David", + "LastName": "Gomez", + "DisplayName": "David Gomez", + "OtherName": null, + "Salutation": null, + "MainAddress": 243, + "PostalAddress": null, + "Contact": 272919, + "EmergencyAddress": 278, + "DateOfBirth": "2001-02-12T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1165, + "UserId": 81, + "JobAppId": null, + "Active": true, + "StartDate": "2022-01-17T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275970, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:30-07:00", + "Modified": "2022-07-06T10:49:53-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9407, + "Employee": 136, + "EmployeeHistory": 276142, + "EmployeeAgreement": 516, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664452800, + "EndTime": 1664456400, + "Mealbreak": "2022-09-29T00:19:00-06:00", + "MealbreakSlots": { + "1664453160": "OUT", + "1664453820": "IN" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 360, + "intEnd": 1500, + "intUnixStart": 1664453160, + "intUnixEnd": 1664454300, + "mixedActivity": { + "intState": 2, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Finished" + }], + "TotalTime": 0.68, + "TotalTimeInv": 1, + "Cost": null, + "Roster": null, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2435, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 2, + "Created": "2022-09-29T05:48:07-06:00", + "Modified": "2022-09-29T06:27:32-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T06:00:00-06:00", + "EndTimeLocalized": "2022-09-29T07:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 136, + "DisplayName": "Bugs Bunny", + "EmployeeProfile": 136, + "Employee": 136, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=B+B&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 136, + "Company": 6, + "FirstName": "Bugs", + "LastName": "Bunny", + "DisplayName": "Bugs Bunny", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272965, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 136, + "JobAppId": null, + "Active": true, + "StartDate": "2022-08-12T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276142, + "CustomFieldData": null, + "Creator": 2, + "Created": "2022-08-12T21:36:04-06:00", + "Modified": "2022-09-29T05:47:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9408, + "Employee": 31, + "EmployeeHistory": 276023, + "EmployeeAgreement": 33, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664458500, + "EndTime": 1664499000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664458500, + "intUnixEnd": 1664462100, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 11.25, + "TotalTimeInv": 11.25, + "Cost": null, + "Roster": 21074, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2354, + "File": 16934, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 32, + "Created": "2022-09-29T07:35:28-06:00", + "Modified": "2022-09-29T07:35:29-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:35:00-06:00", + "EndTimeLocalized": "2022-09-29T18:50:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 32, + "DisplayName": "Freddie Valenzuela", + "EmployeeProfile": 31, + "Employee": 31, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7c2a899a81bcf132fcaf0134cfea8dfd.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=HvxHTCgpy6ba-LfIJ-A5XP5mHrKH3Ki7y8iqaGkwxAbsaV5QBvGPmcawaZ4kPj30kKQVvI3xJ2gk8txGhdncdcirtdlLXvLbTiU2~gb9MMxl0PHTDkQkfXG75RHugSzBYogXNAHfdm4aP4L6pbVPSbky9oXIUNCQq5esH3LalBk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 32, + "DisplayName": "Freddie Valenzuela", + "EmployeeProfile": 31, + "Employee": 31, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7c2a899a81bcf132fcaf0134cfea8dfd.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=HvxHTCgpy6ba-LfIJ-A5XP5mHrKH3Ki7y8iqaGkwxAbsaV5QBvGPmcawaZ4kPj30kKQVvI3xJ2gk8txGhdncdcirtdlLXvLbTiU2~gb9MMxl0PHTDkQkfXG75RHugSzBYogXNAHfdm4aP4L6pbVPSbky9oXIUNCQq5esH3LalBk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 31, + "Company": 2, + "FirstName": "Freddie", + "LastName": "Valenzuela", + "DisplayName": "Freddie Valenzuela", + "OtherName": null, + "Salutation": null, + "MainAddress": 177, + "PostalAddress": null, + "Contact": 272931, + "EmergencyAddress": 284, + "DateOfBirth": "1971-07-25T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 9531, + "UserId": 32, + "JobAppId": null, + "Active": true, + "StartDate": "2006-11-20T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276023, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:19-07:00", + "Modified": "2022-07-11T09:16:50-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9409, + "Employee": 66, + "EmployeeHistory": 276031, + "EmployeeAgreement": 69, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664458560, + "EndTime": 1664491860, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664458560, + "intUnixEnd": 1664462160, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9.25, + "TotalTimeInv": 9.25, + "Cost": null, + "Roster": 21168, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2355, + "File": 16935, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 66, + "Created": "2022-09-29T07:36:32-06:00", + "Modified": "2022-09-29T07:36:34-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:36:00-06:00", + "EndTimeLocalized": "2022-09-29T16:51:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 66, + "DisplayName": "Susana Ramirez", + "EmployeeProfile": 66, + "Employee": 66, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f9cbcf12ef4912707ca2709b9797d241.jpg?Expires=1664545544&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Mv08rYSP12VwrHXRruztZBjPnslxIoOnXLpAXXAEZH9PlmzxczuSBuis6amSxatQLnan0awUO-jEQ8Re3bYEDStl2NXOjhNZbzNw5-xxrGe-h8zOgXff0O1dBgkjR8EvXULF19GYabSTID9JNxG3bs2HyOEKB6os9LdWNRyUd2I_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 66, + "DisplayName": "Susana Ramirez", + "EmployeeProfile": 66, + "Employee": 66, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f9cbcf12ef4912707ca2709b9797d241.jpg?Expires=1664545544&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Mv08rYSP12VwrHXRruztZBjPnslxIoOnXLpAXXAEZH9PlmzxczuSBuis6amSxatQLnan0awUO-jEQ8Re3bYEDStl2NXOjhNZbzNw5-xxrGe-h8zOgXff0O1dBgkjR8EvXULF19GYabSTID9JNxG3bs2HyOEKB6os9LdWNRyUd2I_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 66, + "Company": 4, + "FirstName": "Susana", + "LastName": "Ramirez", + "DisplayName": "Susana Ramirez", + "OtherName": null, + "Salutation": null, + "MainAddress": 216, + "PostalAddress": null, + "Contact": 272906, + "EmergencyAddress": 263, + "DateOfBirth": "1976-06-09T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1067, + "UserId": 66, + "JobAppId": null, + "Active": true, + "StartDate": "2020-08-10T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276031, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:26-07:00", + "Modified": "2022-07-11T12:11:35-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9410, + "Employee": 46, + "EmployeeHistory": 275993, + "EmployeeAgreement": 48, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664458560, + "EndTime": 1664487360, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 1440, + "intEnd": 3240, + "intUnixStart": 1664460000, + "intUnixEnd": 1664461800, + "mixedActivity": { + "intState": 0, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Not Start" + }], + "TotalTime": 8, + "TotalTimeInv": 8, + "Cost": null, + "Roster": 21112, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2357, + "File": 16936, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 47, + "Created": "2022-09-29T07:36:50-06:00", + "Modified": "2022-09-29T07:36:51-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:36:00-06:00", + "EndTimeLocalized": "2022-09-29T15:36:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 47, + "DisplayName": "Mayela Guereca", + "EmployeeProfile": 46, + "Employee": 46, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_aab7758d4f20d64e04849c4ba821103b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=YF4Jf5-97CcDd6k-4amyzDX3ixhlP2m5sM7OlfeBkt1Pezm-NUysosh6aySB-D0jl-YQtr4bzBTUSjpxUS6iLEoTH0KwN7FkHIo1GJRt5iU~x1uLnfmie2~8iW80lOs9tIM7UNT3K~9gQjeHlsyAaZXUesGJC71OHnnn8DBaQik_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 47, + "DisplayName": "Mayela Guereca", + "EmployeeProfile": 46, + "Employee": 46, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_aab7758d4f20d64e04849c4ba821103b.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=YF4Jf5-97CcDd6k-4amyzDX3ixhlP2m5sM7OlfeBkt1Pezm-NUysosh6aySB-D0jl-YQtr4bzBTUSjpxUS6iLEoTH0KwN7FkHIo1GJRt5iU~x1uLnfmie2~8iW80lOs9tIM7UNT3K~9gQjeHlsyAaZXUesGJC71OHnnn8DBaQik_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 46, + "Company": 6, + "FirstName": "Hermenegilda", + "LastName": "Guereca", + "DisplayName": "Mayela Guereca", + "OtherName": null, + "Salutation": null, + "MainAddress": 191, + "PostalAddress": null, + "Contact": 272892, + "EmergencyAddress": 284, + "DateOfBirth": "1974-08-04T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 996, + "UserId": 47, + "JobAppId": null, + "Active": true, + "StartDate": "2021-09-13T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275993, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:22-07:00", + "Modified": "2022-07-06T11:07:12-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9411, + "Employee": 47, + "EmployeeHistory": 276009, + "EmployeeAgreement": 49, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664458620, + "EndTime": 1664489220, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 1380, + "intEnd": 3180, + "intUnixStart": 1664460000, + "intUnixEnd": 1664461800, + "mixedActivity": { + "intState": 0, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Not Start" + }], + "TotalTime": 8.5, + "TotalTimeInv": 8.5, + "Cost": null, + "Roster": 21129, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2358, + "File": 16937, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 46, + "Created": "2022-09-29T07:37:03-06:00", + "Modified": "2022-09-29T07:37:04-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:37:00-06:00", + "EndTimeLocalized": "2022-09-29T16:07:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 46, + "DisplayName": "Victor Rodriguez", + "EmployeeProfile": 47, + "Employee": 47, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6ef336a6a9cd56b2d1bd1b234ae66de3.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UGXfleUvjHE6qvoPEVFQLGdGVqxhZXYacfcREflTAb5V42Mu7XadcuUaAFumltzbPDvFG3~w15EHcYohiSIp9uX-hegZEMjNcUd4Dbsw5NTFJoJWmSjzk6tldj-eh5gm6VR55z8lKfkyqH422DD4if5Ep102xiZvN67-4pAx19k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 46, + "DisplayName": "Victor Rodriguez", + "EmployeeProfile": 47, + "Employee": 47, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6ef336a6a9cd56b2d1bd1b234ae66de3.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UGXfleUvjHE6qvoPEVFQLGdGVqxhZXYacfcREflTAb5V42Mu7XadcuUaAFumltzbPDvFG3~w15EHcYohiSIp9uX-hegZEMjNcUd4Dbsw5NTFJoJWmSjzk6tldj-eh5gm6VR55z8lKfkyqH422DD4if5Ep102xiZvN67-4pAx19k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 47, + "Company": 6, + "FirstName": "Victor", + "LastName": "Rodriguez", + "DisplayName": "Victor Rodriguez", + "OtherName": null, + "Salutation": null, + "MainAddress": 191, + "PostalAddress": null, + "Contact": 272891, + "EmergencyAddress": 284, + "DateOfBirth": "1996-05-02T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1001, + "UserId": 46, + "JobAppId": null, + "Active": true, + "StartDate": "2021-03-24T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276009, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:22-07:00", + "Modified": "2022-07-06T11:20:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9412, + "Employee": 80, + "EmployeeHistory": 275995, + "EmployeeAgreement": 83, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664458920, + "EndTime": 1664492220, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664458920, + "intUnixEnd": 1664462520, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9.25, + "TotalTimeInv": 9.25, + "Cost": null, + "Roster": 21234, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 33, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2370, + "File": 16938, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 80, + "Created": "2022-09-29T07:42:51-06:00", + "Modified": "2022-09-29T07:42:52-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:42:00-06:00", + "EndTimeLocalized": "2022-09-29T16:57:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 80, + "DisplayName": "Michelle Mireles", + "EmployeeProfile": 80, + "Employee": 80, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_58b0ad92f564a5ee12977eea5eb008c9.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hp-zipvv5NyrMnl8s9SQJe6RI7d-SwtlmLNWX84XZf-Y83zbAuptR8cV3UHkuJQDQ6rEqpagn2hVJyYGUV0jFEyKUTpxXMi5XsDTKW7Uj6Cp2vLVtv9-mdOmNOqgd3s1roK3OJra~1Atd~lntRligghnxL3fygpH-nCtlfGak~M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 33, + "OperationalUnitName": "Medical Assistants", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 80, + "DisplayName": "Michelle Mireles", + "EmployeeProfile": 80, + "Employee": 80, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_58b0ad92f564a5ee12977eea5eb008c9.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hp-zipvv5NyrMnl8s9SQJe6RI7d-SwtlmLNWX84XZf-Y83zbAuptR8cV3UHkuJQDQ6rEqpagn2hVJyYGUV0jFEyKUTpxXMi5XsDTKW7Uj6Cp2vLVtv9-mdOmNOqgd3s1roK3OJra~1Atd~lntRligghnxL3fygpH-nCtlfGak~M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 80, + "Company": 4, + "FirstName": "Michelle", + "LastName": "Mireles", + "DisplayName": "Michelle Mireles", + "OtherName": null, + "Salutation": null, + "MainAddress": 277, + "PostalAddress": null, + "Contact": 272918, + "EmergencyAddress": 284, + "DateOfBirth": "2000-09-10T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1035, + "UserId": 80, + "JobAppId": null, + "Active": true, + "StartDate": "2021-10-20T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275995, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:29-07:00", + "Modified": "2022-07-06T11:07:44-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9413, + "Employee": 28, + "EmployeeHistory": 275975, + "EmployeeAgreement": 30, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664458980, + "EndTime": 1664491380, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664458980, + "intUnixEnd": 1664462580, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9, + "TotalTimeInv": 9, + "Cost": null, + "Roster": 21077, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2375, + "File": 16939, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 27, + "Created": "2022-09-29T07:43:14-06:00", + "Modified": "2022-09-29T07:43:15-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:43:00-06:00", + "EndTimeLocalized": "2022-09-29T16:43:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 27, + "DisplayName": "Elizabeth Rico", + "EmployeeProfile": 28, + "Employee": 28, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_09a0688488492c4dd40985c9a0d14b62.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=hO-O2oxJR3UP3g9lnWGLVcP4mKq8fK5qtyinwczi0NBgC-3NU9ALhD~P~USGiiFoowagGPfAmogOYAvAYqr9zDFNwx1qmfmk1rq0fg8aokWmhVcLDpRtMrsh~Lw~4HBz5FHMaAhq2gB0vhN2HHPHQq61eglpotwT8iUAmblmgbw_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 27, + "DisplayName": "Elizabeth Rico", + "EmployeeProfile": 28, + "Employee": 28, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_09a0688488492c4dd40985c9a0d14b62.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=hO-O2oxJR3UP3g9lnWGLVcP4mKq8fK5qtyinwczi0NBgC-3NU9ALhD~P~USGiiFoowagGPfAmogOYAvAYqr9zDFNwx1qmfmk1rq0fg8aokWmhVcLDpRtMrsh~Lw~4HBz5FHMaAhq2gB0vhN2HHPHQq61eglpotwT8iUAmblmgbw_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 28, + "Company": 6, + "FirstName": "Elizabeth", + "LastName": "Rico", + "DisplayName": "Elizabeth Rico", + "OtherName": null, + "Salutation": null, + "MainAddress": 174, + "PostalAddress": null, + "Contact": 272878, + "EmergencyAddress": 284, + "DateOfBirth": "1985-10-27T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 977, + "UserId": 27, + "JobAppId": null, + "Active": true, + "StartDate": "2010-06-03T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275975, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:18-07:00", + "Modified": "2022-07-06T10:54:42-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9403, + "Employee": 21, + "EmployeeHistory": 275991, + "EmployeeAgreement": 23, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664459100, + "EndTime": 1664487900, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [], + "TotalTime": 8, + "TotalTimeInv": 8, + "Cost": 0, + "Roster": null, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": null, + "IsInProgress": null, + "IsLeave": true, + "LeaveId": 346, + "LeaveRule": 2, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2368, + "File": null, + "CustomFieldData": null, + "RealTime": false, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": -2, + "Created": "2022-09-29T00:11:41-06:00", + "Modified": "2022-09-29T00:11:41-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:45:00-06:00", + "EndTimeLocalized": "2022-09-29T15:45:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": -1, + "DisplayName": "Deputy", + "Photo": "https://d2sebmzxyyulvv.cloudfront.net/deputy-avatar-30.png" + }, + "OperationalUnitInfo": null, + "EmployeeInfo": { + "Id": 21, + "DisplayName": "Maria Guillen", + "EmployeeProfile": 21, + "Employee": 21, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e3b5bec34009dbb7139833c1258194bf.jpg?Expires=1664555144&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=QZLu0svi5t00EF-oNgG~isJqr9noBslJNac-HcCFxP6dhJ5glS27ItJtD22GTdCeJBR76NBfHEkjtSVVfY6mRfsm7nTniReC6MUwPZcxtqbEGAa~TX2gJWJeHbovO-g68kMgioz~aFdXNGvAdcKYdUI62fskf7POfIP2xI3jMXU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 21, + "Company": 4, + "FirstName": "Maria", + "LastName": "Guillen", + "DisplayName": "Maria Guillen", + "OtherName": null, + "Salutation": null, + "MainAddress": 165, + "PostalAddress": null, + "Contact": 272875, + "EmergencyAddress": 284, + "DateOfBirth": "1979-03-23T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1091, + "UserId": 21, + "JobAppId": null, + "Active": true, + "StartDate": "2002-11-22T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275991, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:17-07:00", + "Modified": "2022-07-06T11:05:55-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9404, + "Employee": 92, + "EmployeeHistory": 276074, + "EmployeeAgreement": 122, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664459100, + "EndTime": 1664487900, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [], + "TotalTime": 8, + "TotalTimeInv": 8, + "Cost": 0, + "Roster": null, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": null, + "IsInProgress": null, + "IsLeave": true, + "LeaveId": 359, + "LeaveRule": 2, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2434, + "File": null, + "CustomFieldData": null, + "RealTime": false, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": -2, + "Created": "2022-09-29T00:11:41-06:00", + "Modified": "2022-09-29T00:11:41-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:45:00-06:00", + "EndTimeLocalized": "2022-09-29T15:45:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": -1, + "DisplayName": "Deputy", + "Photo": "https://d2sebmzxyyulvv.cloudfront.net/deputy-avatar-30.png" + }, + "OperationalUnitInfo": null, + "EmployeeInfo": { + "Id": 92, + "DisplayName": "Lesley Ortiz", + "EmployeeProfile": 92, + "Employee": 92, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_da29dc55d7af984cbe88a019ba67854d.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=g1ZmEDsVkl8Va7V4QdQd31ynirzIw1zFFq~af8Pe2r73XbEHZjiVzAgstNXsKipX1TsdUtcDBg7KOU3oQ3paIf3dSIiQubl3Wlu3Knjz8hwXJleEQBXRalHowdCBiC5v-hUliKCFHKPfwpbGJCFbmCrQAsRviJVl-GPVZnoMulU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 92, + "Company": 5, + "FirstName": "Lesley", + "LastName": "Ortiz", + "DisplayName": "Lesley Ortiz", + "OtherName": null, + "Salutation": null, + "MainAddress": 291, + "PostalAddress": null, + "Contact": 75336, + "EmergencyAddress": 284, + "DateOfBirth": "1996-11-09T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1225, + "UserId": 92, + "JobAppId": null, + "Active": true, + "StartDate": "2022-02-21T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276074, + "CustomFieldData": null, + "Creator": 29, + "Created": "2022-03-30T15:25:13-07:00", + "Modified": "2022-08-17T12:47:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 29, + "DisplayName": "Aracely Tirrell", + "EmployeeProfile": 30, + "Employee": 30, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0d6425f581e9558209dd05be4e252239.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L9-lhv8DadL3tonHbygPqGiLf7bJAmakD7hzTwKXLJc3~GIZU6n16NldpwO6IqaxrQ61jRs9SH2sv0q1xRVN2sf7pv8rvyPxVEgPib~cuBzneMQ4FI5NBhKOIbx0ggCpukXtdUwwLgmjIGcOcdIqmZ8qCNbnre9QR63AEXdvgJU_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9405, + "Employee": 45, + "EmployeeHistory": 130453, + "EmployeeAgreement": 47, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664459100, + "EndTime": 1664487900, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [], + "TotalTime": 8, + "TotalTimeInv": 8, + "Cost": 0, + "Roster": null, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": true, + "TimeApprover": -2, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": null, + "IsInProgress": null, + "IsLeave": true, + "LeaveId": 294, + "LeaveRule": 2, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": true, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2414, + "File": null, + "CustomFieldData": null, + "RealTime": false, + "AutoProcessed": true, + "AutoRounded": false, + "AutoTimeApproved": true, + "AutoPayRuleApproved": true, + "Creator": -2, + "Created": "2022-09-29T00:11:41-06:00", + "Modified": "2022-09-29T00:11:41-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:45:00-06:00", + "EndTimeLocalized": "2022-09-29T15:45:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": -1, + "DisplayName": "Deputy", + "Photo": "https://d2sebmzxyyulvv.cloudfront.net/deputy-avatar-30.png" + }, + "OperationalUnitInfo": null, + "EmployeeInfo": { + "Id": 45, + "DisplayName": "Jailene Lopez", + "EmployeeProfile": 45, + "Employee": 45, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f97ca5201b058a36c032450a7051ca39.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=TdzfMkUJhNecAttB2ZwvI3yL0GqemIWxDkWDj0aj7-C6lNsg5izpe7Z5yyjrtNh1vrOqWpTe9mtH7dS7aekXEjo6UwtUWCC7nVLy-gzHQk2y5ywGkXXrdsRDbNAZy05Z3gTSAjIK1tRfHXaonn~rBe~OXSVRziN483wiUH5ESs8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 45, + "Company": 6, + "FirstName": "Jailene", + "LastName": "Lopez", + "DisplayName": "Jailene Lopez", + "OtherName": null, + "Salutation": null, + "MainAddress": 190, + "PostalAddress": null, + "Contact": 666, + "EmergencyAddress": 284, + "DateOfBirth": "1997-05-31T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 959, + "UserId": 45, + "JobAppId": null, + "Active": true, + "StartDate": "2001-09-24T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 130453, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:21-07:00", + "Modified": "2022-04-28T11:07:03-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9414, + "Employee": 44, + "EmployeeHistory": 276003, + "EmployeeAgreement": 331, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664459100, + "EndTime": 1664492400, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664459100, + "intUnixEnd": 1664462700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9.25, + "TotalTimeInv": 9.25, + "Cost": null, + "Roster": 22273, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 28, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2364, + "File": 16940, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 44, + "Created": "2022-09-29T07:45:21-06:00", + "Modified": "2022-09-29T07:45:21-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:45:00-06:00", + "EndTimeLocalized": "2022-09-29T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 44, + "DisplayName": "Sergio Armendariz", + "EmployeeProfile": 44, + "Employee": 44, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_dbc48ce256a1ea33d79d941183bd70c1.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Dewnzh5JoxabPwisBVYbOYybmCsJQ7ALzAqoMRLE1~KSP0w8X0PlSZ07jo1Tz-PA4KMwvbB7i26hVNvJouNHAgtGiuu1k8u4XYvnd4uVQHsaW0tT0hFNFkqoI2RoXfocdwbDBX1qPsOwZadj1cO0zz-EP8vHTVEgCu8yo4oD-rQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 28, + "OperationalUnitName": "Medical Assistants", + "Company": 5, + "CompanyName": "Montana", + "LabelWithCompany": "[MON] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 44, + "DisplayName": "Sergio Armendariz", + "EmployeeProfile": 44, + "Employee": 44, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_dbc48ce256a1ea33d79d941183bd70c1.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Dewnzh5JoxabPwisBVYbOYybmCsJQ7ALzAqoMRLE1~KSP0w8X0PlSZ07jo1Tz-PA4KMwvbB7i26hVNvJouNHAgtGiuu1k8u4XYvnd4uVQHsaW0tT0hFNFkqoI2RoXfocdwbDBX1qPsOwZadj1cO0zz-EP8vHTVEgCu8yo4oD-rQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 44, + "Company": 2, + "FirstName": "Sergio", + "LastName": "Armendariz", + "DisplayName": "Sergio Armendariz", + "OtherName": null, + "Salutation": null, + "MainAddress": 189, + "PostalAddress": null, + "Contact": 272890, + "EmergencyAddress": 284, + "DateOfBirth": "1995-01-15T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1011, + "UserId": 44, + "JobAppId": null, + "Active": true, + "StartDate": "2015-12-07T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276003, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:21-07:00", + "Modified": "2022-07-06T11:18:45-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9415, + "Employee": 132, + "EmployeeHistory": 276017, + "EmployeeAgreement": 490, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664459100, + "EndTime": 1664492400, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664459100, + "intUnixEnd": 1664462700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9.25, + "TotalTimeInv": 9.25, + "Cost": null, + "Roster": 21336, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 26, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2359, + "File": 16941, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 132, + "Created": "2022-09-29T07:45:27-06:00", + "Modified": "2022-09-29T07:45:28-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:45:00-06:00", + "EndTimeLocalized": "2022-09-29T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 132, + "DisplayName": "Jon", + "EmployeeProfile": 132, + "Employee": 132, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fd566c9266f17faafed72321559bb482.jpg?Expires=1664545771&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=ZvT4WL2UTLQq~hjnwDzKCIjP~rcjzy8nvT2Tf1FQh5kqXvaaR3y9JUPNUoAJMJkeDJVeqPIaw6VjooKrYcMn5FiWzva7-rCtAFyXvTlffzjyWsKQTFpH4z0p8MCuAlg7m0DUrMcNniShXq~eD3G2dyH6oWEwPdAt8egjx9fTjkA_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 26, + "OperationalUnitName": "Sono", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Sono" + }, + "EmployeeInfo": { + "Id": 132, + "DisplayName": "Jon", + "EmployeeProfile": 132, + "Employee": 132, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fd566c9266f17faafed72321559bb482.jpg?Expires=1664545771&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=ZvT4WL2UTLQq~hjnwDzKCIjP~rcjzy8nvT2Tf1FQh5kqXvaaR3y9JUPNUoAJMJkeDJVeqPIaw6VjooKrYcMn5FiWzva7-rCtAFyXvTlffzjyWsKQTFpH4z0p8MCuAlg7m0DUrMcNniShXq~eD3G2dyH6oWEwPdAt8egjx9fTjkA_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 132, + "Company": 2, + "FirstName": "Jonathan", + "LastName": "Ojeda", + "DisplayName": "Jon", + "OtherName": null, + "Salutation": null, + "MainAddress": 330, + "PostalAddress": null, + "Contact": 272928, + "EmergencyAddress": 328, + "DateOfBirth": "1982-01-06T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 8226, + "UserId": 132, + "JobAppId": null, + "Active": true, + "StartDate": "2022-06-13T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276017, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-06-23T15:14:56-06:00", + "Modified": "2022-07-06T11:36:58-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9416, + "Employee": 30, + "EmployeeHistory": 170130, + "EmployeeAgreement": 32, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664459160, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -60, + "intEnd": 3540, + "intUnixStart": 1664459100, + "intUnixEnd": 1664462700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 10.23, + "TotalTimeInv": 10.23, + "Cost": null, + "Roster": 21083, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2360, + "File": 16942, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 29, + "Created": "2022-09-29T07:46:06-06:00", + "Modified": "2022-09-29T07:46:06-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:46:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 29, + "DisplayName": "Aracely Tirrell", + "EmployeeProfile": 30, + "Employee": 30, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0d6425f581e9558209dd05be4e252239.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L9-lhv8DadL3tonHbygPqGiLf7bJAmakD7hzTwKXLJc3~GIZU6n16NldpwO6IqaxrQ61jRs9SH2sv0q1xRVN2sf7pv8rvyPxVEgPib~cuBzneMQ4FI5NBhKOIbx0ggCpukXtdUwwLgmjIGcOcdIqmZ8qCNbnre9QR63AEXdvgJU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 29, + "DisplayName": "Aracely Tirrell", + "EmployeeProfile": 30, + "Employee": 30, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0d6425f581e9558209dd05be4e252239.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L9-lhv8DadL3tonHbygPqGiLf7bJAmakD7hzTwKXLJc3~GIZU6n16NldpwO6IqaxrQ61jRs9SH2sv0q1xRVN2sf7pv8rvyPxVEgPib~cuBzneMQ4FI5NBhKOIbx0ggCpukXtdUwwLgmjIGcOcdIqmZ8qCNbnre9QR63AEXdvgJU_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 30, + "Company": 6, + "FirstName": "Aracely", + "LastName": "Tirrell", + "DisplayName": "Aracely Tirrell", + "OtherName": null, + "Salutation": null, + "MainAddress": 176, + "PostalAddress": null, + "Contact": 167145, + "EmergencyAddress": 284, + "DateOfBirth": "1978-06-12T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 990, + "UserId": 29, + "JobAppId": null, + "Active": true, + "StartDate": null, + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 1, + "AllowAppraisal": true, + "HistoryId": 170130, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:18-07:00", + "Modified": "2022-05-23T08:00:28-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9417, + "Employee": 70, + "EmployeeHistory": 275990, + "EmployeeAgreement": 73, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664459160, + "EndTime": 1664492400, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -60, + "intEnd": 3540, + "intUnixStart": 1664459100, + "intUnixEnd": 1664462700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9.23, + "TotalTimeInv": 9.23, + "Cost": null, + "Roster": 21470, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 33, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2363, + "File": 16943, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 70, + "Created": "2022-09-29T07:46:12-06:00", + "Modified": "2022-09-29T07:46:13-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:46:00-06:00", + "EndTimeLocalized": "2022-09-29T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 70, + "DisplayName": "Lizbeth Fernandez", + "EmployeeProfile": 70, + "Employee": 70, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6d285879d6d82fb513b2adf1550b5756.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=fvTaWT87c1IldSxd~NoV5DBUnTFM22Yg5Mxd0syl3-kBp1rdh9N1phQ2~sk3v0ca47oFUs4Fv~a7RuwxEp8H3zVgvV5q68eBSmq8RpI9zAJsTCax6uAZvMgfTHH~KPKpiTAyp~E92VfEc27FRAvdm2GznYzS5zFKZzJn6Q84qqk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 33, + "OperationalUnitName": "Medical Assistants", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 70, + "DisplayName": "Lizbeth Fernandez", + "EmployeeProfile": 70, + "Employee": 70, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6d285879d6d82fb513b2adf1550b5756.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=fvTaWT87c1IldSxd~NoV5DBUnTFM22Yg5Mxd0syl3-kBp1rdh9N1phQ2~sk3v0ca47oFUs4Fv~a7RuwxEp8H3zVgvV5q68eBSmq8RpI9zAJsTCax6uAZvMgfTHH~KPKpiTAyp~E92VfEc27FRAvdm2GznYzS5zFKZzJn6Q84qqk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 70, + "Company": 5, + "FirstName": "Lizbeth", + "LastName": "Fernandez", + "DisplayName": "Lizbeth Fernandez", + "OtherName": null, + "Salutation": null, + "MainAddress": 223, + "PostalAddress": null, + "Contact": 272910, + "EmergencyAddress": 266, + "DateOfBirth": "1998-12-15T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1234, + "UserId": 70, + "JobAppId": null, + "Active": true, + "StartDate": "2020-09-21T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275990, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-07-06T11:05:38-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9426, + "Employee": 139, + "EmployeeHistory": 276118, + "EmployeeAgreement": 530, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664459160, + "EndTime": 1664492400, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [], + "TotalTime": 9.23, + "TotalTimeInv": 9.03, + "Cost": null, + "Roster": 21346, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 57, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2430, + "File": 16952, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 139, + "Created": "2022-09-29T07:58:55-06:00", + "Modified": "2022-09-29T08:40:32-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:46:00-06:00", + "EndTimeLocalized": "2022-09-29T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 139, + "DisplayName": "Paola Barragan", + "EmployeeProfile": 139, + "Employee": 139, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7f1a5469c2369939f8eb74849e2d0c11.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EYQO83NQZO7dGa~faIpXzdeHA4v3sdVWpfo2PcQVUzvy2hl6CYB9k24fUslPe4H4rkc~WI4jtrPRPEudsSafynZIfOVRjh1taSz-hqL4bX3WYk~~ACwB6fLV1yyJvVHSlBl33~gufvtnrZN5QgERbn88VWGSpSM-h6E7C94gKys_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 57, + "OperationalUnitName": "Tyler Roberts PA-C", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Tyler Roberts PA-C" + }, + "EmployeeInfo": { + "Id": 139, + "DisplayName": "Paola Barragan", + "EmployeeProfile": 139, + "Employee": 139, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7f1a5469c2369939f8eb74849e2d0c11.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EYQO83NQZO7dGa~faIpXzdeHA4v3sdVWpfo2PcQVUzvy2hl6CYB9k24fUslPe4H4rkc~WI4jtrPRPEudsSafynZIfOVRjh1taSz-hqL4bX3WYk~~ACwB6fLV1yyJvVHSlBl33~gufvtnrZN5QgERbn88VWGSpSM-h6E7C94gKys_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 139, + "Company": 6, + "FirstName": "Paola", + "LastName": "Barragan", + "DisplayName": "Paola Barragan", + "OtherName": null, + "Salutation": null, + "MainAddress": 322, + "PostalAddress": null, + "Contact": 272953, + "EmergencyAddress": 284, + "DateOfBirth": "2000-07-19T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 14658, + "UserId": 139, + "JobAppId": null, + "Active": true, + "StartDate": null, + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276118, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-09-01T09:50:31-06:00", + "Modified": "2022-09-14T11:22:12-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9418, + "Employee": 128, + "EmployeeHistory": 276020, + "EmployeeAgreement": 472, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664459220, + "EndTime": 1664491620, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664459220, + "intUnixEnd": 1664462820, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9, + "TotalTimeInv": 9, + "Cost": null, + "Roster": 21374, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2356, + "File": 16944, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 128, + "Created": "2022-09-29T07:47:41-06:00", + "Modified": "2022-09-29T07:47:42-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:47:00-06:00", + "EndTimeLocalized": "2022-09-29T16:47:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 128, + "DisplayName": "Cynthia Dufour", + "EmployeeProfile": 128, + "Employee": 128, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a062de8916b1f73d00ffbb0d423b5fc9.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=e33negGuVbvRCqGLhUnmz5-e3C~L6OUMx8u1s-tg3l8Q09gGXu1hCEfxYyZB1e5xzlKYHmSAb0j36gxODXhZ8BWImlhg5GEzblkkzbSgXIE6Xanfbxnjz6grfquAgovfvJPkXOZ5lNo8Bi2i8uyfTgSvo6fSkhnGazdcWSORpuY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 128, + "DisplayName": "Cynthia Dufour", + "EmployeeProfile": 128, + "Employee": 128, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a062de8916b1f73d00ffbb0d423b5fc9.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=e33negGuVbvRCqGLhUnmz5-e3C~L6OUMx8u1s-tg3l8Q09gGXu1hCEfxYyZB1e5xzlKYHmSAb0j36gxODXhZ8BWImlhg5GEzblkkzbSgXIE6Xanfbxnjz6grfquAgovfvJPkXOZ5lNo8Bi2i8uyfTgSvo6fSkhnGazdcWSORpuY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 128, + "Company": 6, + "FirstName": "Cynthia", + "LastName": "Dufour", + "DisplayName": "Cynthia Dufour", + "OtherName": null, + "Salutation": null, + "MainAddress": 320, + "PostalAddress": null, + "Contact": 272925, + "EmergencyAddress": 321, + "DateOfBirth": "1982-09-10T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 6559, + "UserId": 128, + "JobAppId": null, + "Active": true, + "StartDate": "2022-05-31T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276020, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-06-07T10:00:23-06:00", + "Modified": "2022-07-07T09:17:48-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9419, + "Employee": 29, + "EmployeeHistory": 276050, + "EmployeeAgreement": 31, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664459280, + "EndTime": 1664488800, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -180, + "intEnd": 3420, + "intUnixStart": 1664459100, + "intUnixEnd": 1664462700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 8.2, + "TotalTimeInv": 8.2, + "Cost": null, + "Roster": 21078, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 36, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2362, + "File": 16945, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 30, + "Created": "2022-09-29T07:48:26-06:00", + "Modified": "2022-09-29T07:48:27-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:48:00-06:00", + "EndTimeLocalized": "2022-09-29T16:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 30, + "DisplayName": "Silvia Salcido de Moreno", + "EmployeeProfile": 29, + "Employee": 29, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3f067188d2050db4e922a9904d14c196.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UcsrcSR8gqr2CtXJRC5u9r0w44WmO69SeBmOZzONvnRUN9soxtxeN4cWNYXLk7kptSLZsp2MH8CsIQb65O~b7Ccs2tkpU9aPsApMWxYLqAoewtSHOI3B3fDxRHXigUBKmy-SswnDqgI79qIjSvF0YlDps-ubZsEyLwnDrd9xq74_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 36, + "OperationalUnitName": "Medical Assistants", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 30, + "DisplayName": "Silvia Salcido de Moreno", + "EmployeeProfile": 29, + "Employee": 29, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3f067188d2050db4e922a9904d14c196.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UcsrcSR8gqr2CtXJRC5u9r0w44WmO69SeBmOZzONvnRUN9soxtxeN4cWNYXLk7kptSLZsp2MH8CsIQb65O~b7Ccs2tkpU9aPsApMWxYLqAoewtSHOI3B3fDxRHXigUBKmy-SswnDqgI79qIjSvF0YlDps-ubZsEyLwnDrd9xq74_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 29, + "Company": 3, + "FirstName": "Silvia", + "LastName": "Salcido de Moreno", + "DisplayName": "Silvia Salcido de Moreno", + "OtherName": null, + "Salutation": null, + "MainAddress": 175, + "PostalAddress": null, + "Contact": 272939, + "EmergencyAddress": 284, + "DateOfBirth": "1986-11-10T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1022, + "UserId": 30, + "JobAppId": null, + "Active": true, + "StartDate": "2013-09-23T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276050, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:18-07:00", + "Modified": "2022-07-22T08:51:06-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9420, + "Employee": 60, + "EmployeeHistory": 275996, + "EmployeeAgreement": 63, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664459280, + "EndTime": 1664481600, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -180, + "intEnd": -180, + "intUnixStart": 1664459100, + "intUnixEnd": 1664459100, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 6.2, + "TotalTimeInv": 6.2, + "Cost": null, + "Roster": 21136, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 37, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2361, + "File": 16946, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 60, + "Created": "2022-09-29T07:48:35-06:00", + "Modified": "2022-09-29T07:48:35-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:48:00-06:00", + "EndTimeLocalized": "2022-09-29T14:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 60, + "DisplayName": "Michelle Woo", + "EmployeeProfile": 60, + "Employee": 60, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_962116eaa6ef3f7c69e80c5ba249e082.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=d-iCH-7s4qiRodf0w88ph7HZLa81OUuXwW6jVe41TXHTMZCfMsAnzchyJXNySONd2XzXZWDwrbSnUVABRspOzUFKYd59X-wJBDHURanzm03oHzU0qMwU7fwUkg77bbwVckCUz7-nzIl6ClPCCi~X0rLyc5a5s28KRIvqLJA0U2Q_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 37, + "OperationalUnitName": "Sono", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Sono" + }, + "EmployeeInfo": { + "Id": 60, + "DisplayName": "Michelle Woo", + "EmployeeProfile": 60, + "Employee": 60, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_962116eaa6ef3f7c69e80c5ba249e082.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=d-iCH-7s4qiRodf0w88ph7HZLa81OUuXwW6jVe41TXHTMZCfMsAnzchyJXNySONd2XzXZWDwrbSnUVABRspOzUFKYd59X-wJBDHURanzm03oHzU0qMwU7fwUkg77bbwVckCUz7-nzIl6ClPCCi~X0rLyc5a5s28KRIvqLJA0U2Q_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 60, + "Company": 3, + "FirstName": "Michelle", + "LastName": "Woo", + "DisplayName": "Michelle Woo", + "OtherName": null, + "Salutation": null, + "MainAddress": 207, + "PostalAddress": null, + "Contact": 272901, + "EmergencyAddress": 294, + "DateOfBirth": "1986-02-12T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1045, + "UserId": 60, + "JobAppId": null, + "Active": true, + "StartDate": "2019-05-13T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275996, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:25-07:00", + "Modified": "2022-07-06T11:07:59-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9421, + "Employee": 72, + "EmployeeHistory": 276129, + "EmployeeAgreement": 75, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664459460, + "EndTime": 1664492400, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -360, + "intEnd": 3240, + "intUnixStart": 1664459100, + "intUnixEnd": 1664462700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9.15, + "TotalTimeInv": 9.15, + "Cost": null, + "Roster": 21201, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 57, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2372, + "File": 16947, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 72, + "Created": "2022-09-29T07:51:41-06:00", + "Modified": "2022-09-29T07:51:42-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:51:00-06:00", + "EndTimeLocalized": "2022-09-29T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 72, + "DisplayName": "Samm Viveros", + "EmployeeProfile": 72, + "Employee": 72, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_74a08a03a3c5e8d3bf5727f4cba4151f.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=KSdcgzaaINE~tib0mSFZT-s4x0KOmCcSH3k1JDGe2RAMhTVrbOyjaq-s11mhLZ7XPAUfmDS2fvVgYVGkAaWk7gtp8jjVtO~Aj~oF78-ylIXeVHXjF3hw1SfU9UhC0np1rp3i4wiuJQuMPjGg6ytVcCiWLDoabeN5akC9L1fFY0Y_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 57, + "OperationalUnitName": "Tyler Roberts PA-C", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Tyler Roberts PA-C" + }, + "EmployeeInfo": { + "Id": 72, + "DisplayName": "Samm Viveros", + "EmployeeProfile": 72, + "Employee": 72, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_74a08a03a3c5e8d3bf5727f4cba4151f.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=KSdcgzaaINE~tib0mSFZT-s4x0KOmCcSH3k1JDGe2RAMhTVrbOyjaq-s11mhLZ7XPAUfmDS2fvVgYVGkAaWk7gtp8jjVtO~Aj~oF78-ylIXeVHXjF3hw1SfU9UhC0np1rp3i4wiuJQuMPjGg6ytVcCiWLDoabeN5akC9L1fFY0Y_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 72, + "Company": 4, + "FirstName": "Samantha", + "LastName": "Viveros", + "DisplayName": "Samm Viveros", + "OtherName": null, + "Salutation": null, + "MainAddress": 227, + "PostalAddress": null, + "Contact": 272912, + "EmergencyAddress": 268, + "DateOfBirth": "1996-04-15T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 972, + "UserId": 72, + "JobAppId": null, + "Active": true, + "StartDate": "2020-10-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276129, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-09-20T09:38:11-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9422, + "Employee": 50, + "EmployeeHistory": 275971, + "EmployeeAgreement": 52, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664459520, + "EndTime": 1664488320, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664459520, + "intUnixEnd": 1664463120, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 8, + "TotalTimeInv": 8, + "Cost": null, + "Roster": 21123, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2387, + "File": 16948, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 50, + "Created": "2022-09-29T07:52:48-06:00", + "Modified": "2022-09-29T07:52:48-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:52:00-06:00", + "EndTimeLocalized": "2022-09-29T15:52:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 50, + "DisplayName": "Denise Renteria", + "EmployeeProfile": 50, + "Employee": 50, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7f8f9f6564688dcd70f48e7a4d52acfd.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gShOlNo2PM5xOUXuejZ1gHH9txIU5SEbDlsbr3axId6RzVLc8jMhGeoPo-W0vhCFsMgk~q5MtEYQYGsizGPy3vImCdfITpdG8fuaTahG51G78Jx0EbuWZq~GOdtHL~8M7kbl~c0TKP7FPrhj4LY2Nm27cPpk~XC91o7WzUM-O6M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 50, + "DisplayName": "Denise Renteria", + "EmployeeProfile": 50, + "Employee": 50, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_7f8f9f6564688dcd70f48e7a4d52acfd.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gShOlNo2PM5xOUXuejZ1gHH9txIU5SEbDlsbr3axId6RzVLc8jMhGeoPo-W0vhCFsMgk~q5MtEYQYGsizGPy3vImCdfITpdG8fuaTahG51G78Jx0EbuWZq~GOdtHL~8M7kbl~c0TKP7FPrhj4LY2Nm27cPpk~XC91o7WzUM-O6M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 50, + "Company": 6, + "FirstName": "Denise", + "LastName": "Renteria", + "DisplayName": "Denise Renteria", + "OtherName": null, + "Salutation": null, + "MainAddress": 195, + "PostalAddress": null, + "Contact": 272896, + "EmergencyAddress": 259, + "DateOfBirth": "1992-12-08T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 967, + "UserId": 50, + "JobAppId": null, + "Active": true, + "StartDate": "2022-01-14T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275971, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:23-07:00", + "Modified": "2022-07-06T10:53:11-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9423, + "Employee": 86, + "EmployeeHistory": 276021, + "EmployeeAgreement": 89, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664459640, + "EndTime": 1664488800, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -540, + "intEnd": 3060, + "intUnixStart": 1664459100, + "intUnixEnd": 1664462700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 8.1, + "TotalTimeInv": 8.1, + "Cost": null, + "Roster": 21237, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 36, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2367, + "File": 16949, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 86, + "Created": "2022-09-29T07:54:29-06:00", + "Modified": "2022-09-29T07:54:29-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:54:00-06:00", + "EndTimeLocalized": "2022-09-29T16:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 86, + "DisplayName": "Aldo Avalos", + "EmployeeProfile": 86, + "Employee": 86, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3eb3267981c5efb334c2afbffd04cfbc.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cZItaLHsgvlP1gxq7BtwMpBgfIi98fE2uOcdTzI27hyNqOjwpxSyHEjABqf~cgFVyYn17CQQ-O5-5T3ePiZHT9deei6n7U9n7J4S~XmOiB0pTYDlq6zZQv--ijgyM-yVEnKPzAEWU1zruW0sm3-TdUfzVMTvSf7j0jqKPvunnpo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 36, + "OperationalUnitName": "Medical Assistants", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 86, + "DisplayName": "Aldo Avalos", + "EmployeeProfile": 86, + "Employee": 86, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3eb3267981c5efb334c2afbffd04cfbc.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cZItaLHsgvlP1gxq7BtwMpBgfIi98fE2uOcdTzI27hyNqOjwpxSyHEjABqf~cgFVyYn17CQQ-O5-5T3ePiZHT9deei6n7U9n7J4S~XmOiB0pTYDlq6zZQv--ijgyM-yVEnKPzAEWU1zruW0sm3-TdUfzVMTvSf7j0jqKPvunnpo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 86, + "Company": 3, + "FirstName": "Aldo", + "LastName": "Avalos", + "DisplayName": "Aldo Avalos", + "OtherName": null, + "Salutation": null, + "MainAddress": 251, + "PostalAddress": null, + "Contact": 272923, + "EmergencyAddress": 284, + "DateOfBirth": "1993-08-11T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1072, + "UserId": 86, + "JobAppId": null, + "Active": true, + "StartDate": "2022-03-23T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276021, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:31-07:00", + "Modified": "2022-07-07T09:21:06-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9424, + "Employee": 17, + "EmployeeHistory": 275994, + "EmployeeAgreement": 18, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664459700, + "EndTime": 1664492400, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -600, + "intEnd": 3000, + "intUnixStart": 1664459100, + "intUnixEnd": 1664462700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9.08, + "TotalTimeInv": 9.08, + "Cost": null, + "Roster": 21051, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 65, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2365, + "File": 16950, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 18, + "Created": "2022-09-29T07:55:25-06:00", + "Modified": "2022-09-29T07:55:26-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:55:00-06:00", + "EndTimeLocalized": "2022-09-29T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 18, + "DisplayName": "Mayra Ferniza", + "EmployeeProfile": 17, + "Employee": 17, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_72e0ebcee2a1ac5d0207375e1696021d.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=VD3GM9chKcXh8LqkvKxXltjrAuGcwklwrKlVfkBrYUSdbDx1q37RTBfTv2MlgKZgq0SvMLmJ~ent9OdHT-62A27YkfTAStMajzTtbD5Xh91k-Ivg9plfCY6fEj1-9KpWo6GJF18Pwufx1YEys68hmZ~tZuImV5XDUvtg1yvMBmM_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 65, + "OperationalUnitName": "Justine Franco NP", + "Company": 5, + "CompanyName": "Montana", + "LabelWithCompany": "[MON] Justine Franco NP" + }, + "EmployeeInfo": { + "Id": 18, + "DisplayName": "Mayra Ferniza", + "EmployeeProfile": 17, + "Employee": 17, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_72e0ebcee2a1ac5d0207375e1696021d.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=VD3GM9chKcXh8LqkvKxXltjrAuGcwklwrKlVfkBrYUSdbDx1q37RTBfTv2MlgKZgq0SvMLmJ~ent9OdHT-62A27YkfTAStMajzTtbD5Xh91k-Ivg9plfCY6fEj1-9KpWo6GJF18Pwufx1YEys68hmZ~tZuImV5XDUvtg1yvMBmM_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 17, + "Company": 5, + "FirstName": "Mayra", + "LastName": "Ferniza", + "DisplayName": "Mayra Ferniza", + "OtherName": null, + "Salutation": null, + "MainAddress": 160, + "PostalAddress": null, + "Contact": 272873, + "EmergencyAddress": 256, + "DateOfBirth": "1986-09-14T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1015, + "UserId": 18, + "JobAppId": null, + "Active": true, + "StartDate": "2012-08-07T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275994, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:16-07:00", + "Modified": "2022-07-06T11:07:30-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9425, + "Employee": 89, + "EmployeeHistory": 130525, + "EmployeeAgreement": 109, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664459700, + "EndTime": 1664492100, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664459700, + "intUnixEnd": 1664463300, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9, + "TotalTimeInv": 9, + "Cost": null, + "Roster": 21247, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2366, + "File": 16951, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 89, + "Created": "2022-09-29T07:55:28-06:00", + "Modified": "2022-09-29T07:55:28-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T07:55:00-06:00", + "EndTimeLocalized": "2022-09-29T16:55:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 89, + "DisplayName": "Mona Lisa Hernandez", + "EmployeeProfile": 89, + "Employee": 89, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6bcaee5d709787a53a63d172427feb7e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=VHQMOdIhIB2LES8dS85N2IUjsWSmZ9AOU7Kix0bjetxMA4scwzBwg521nKljpJL7qidyl1DBTL~sSj66vp9VyoFCi3MAWiGFO98C-ADgywplGDuEv8C8MuQPcFdU4uVF-E1KEDhF7rh3Nm~uIg2sT9FB8LtdWoJYDQ~RwMtZV5U_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 89, + "DisplayName": "Mona Lisa Hernandez", + "EmployeeProfile": 89, + "Employee": 89, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6bcaee5d709787a53a63d172427feb7e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=VHQMOdIhIB2LES8dS85N2IUjsWSmZ9AOU7Kix0bjetxMA4scwzBwg521nKljpJL7qidyl1DBTL~sSj66vp9VyoFCi3MAWiGFO98C-ADgywplGDuEv8C8MuQPcFdU4uVF-E1KEDhF7rh3Nm~uIg2sT9FB8LtdWoJYDQ~RwMtZV5U_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 89, + "Company": 6, + "FirstName": "Mona Lisa", + "LastName": "Hernandez", + "DisplayName": "Mona Lisa Hernandez", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 51786, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 984, + "UserId": 89, + "JobAppId": null, + "Active": true, + "StartDate": "2022-03-29T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 130525, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-29T15:06:08-07:00", + "Modified": "2022-04-28T11:15:36-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9427, + "Employee": 67, + "EmployeeHistory": 275976, + "EmployeeAgreement": 70, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664460000, + "EndTime": 1664492400, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664460000, + "intUnixEnd": 1664463600, + "mixedActivity": { + "intState": 0, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Not Start" + }], + "TotalTime": 9, + "TotalTimeInv": 9, + "Cost": null, + "Roster": 21177, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2377, + "File": 16953, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 67, + "Created": "2022-09-29T08:00:33-06:00", + "Modified": "2022-09-29T08:00:33-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:00:00-06:00", + "EndTimeLocalized": "2022-09-29T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 67, + "DisplayName": "Emma Porras", + "EmployeeProfile": 67, + "Employee": 67, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fb8eea4d196b457699d13f8727516a03.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=BtfXVKYh8mdrITmQa5DiAJpOSnrEExPBZHUUx1V8JJkSPeaa6U1DQirPPPDaY9fasNyeuGOZXztgPIRXANO7ZIjAVByasFMBDwaU~kXIRQ1SpiGYRH-70hCH6PFRuwLO~jsg-rv6iwiHtsG-3yneBv3o9-HkmJzkAgY97Y5k6Ow_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 67, + "DisplayName": "Emma Porras", + "EmployeeProfile": 67, + "Employee": 67, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fb8eea4d196b457699d13f8727516a03.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=BtfXVKYh8mdrITmQa5DiAJpOSnrEExPBZHUUx1V8JJkSPeaa6U1DQirPPPDaY9fasNyeuGOZXztgPIRXANO7ZIjAVByasFMBDwaU~kXIRQ1SpiGYRH-70hCH6PFRuwLO~jsg-rv6iwiHtsG-3yneBv3o9-HkmJzkAgY97Y5k6Ow_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 67, + "Company": 6, + "FirstName": "Emma", + "LastName": "Porras", + "DisplayName": "Emma Porras", + "OtherName": null, + "Salutation": null, + "MainAddress": 218, + "PostalAddress": null, + "Contact": 272907, + "EmergencyAddress": 264, + "DateOfBirth": "1981-10-11T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 958, + "UserId": 67, + "JobAppId": null, + "Active": true, + "StartDate": "2022-02-08T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275976, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-07-06T10:55:06-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9428, + "Employee": 77, + "EmployeeHistory": 275987, + "EmployeeAgreement": 111, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664460120, + "EndTime": 1664492400, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -1020, + "intEnd": 2580, + "intUnixStart": 1664459100, + "intUnixEnd": 1664462700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 8.97, + "TotalTimeInv": 8.97, + "Cost": null, + "Roster": 21208, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2422, + "File": 16954, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 77, + "Created": "2022-09-29T08:02:24-06:00", + "Modified": "2022-09-29T08:02:25-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:02:00-06:00", + "EndTimeLocalized": "2022-09-29T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 77, + "DisplayName": "Jazmin Hernandez", + "EmployeeProfile": 77, + "Employee": 77, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a23cb02ace17d5ef811fa933b3120d27.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WOkdY5KzpCghTpqEzV6Q4OxzWKa5vKV7OoXYhPMwJvsq4rudREpRfkCfn3SsKpg0zpBBV3UVB68Hu09Ksi6L4cHrhbniM4I-tQt6pjHspvvoYCusVGTuQJClpXL9i4sax-lsois8uDNTcH5qQWSrWVoOmAxuwfabkepzuUQ6l00_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 77, + "DisplayName": "Jazmin Hernandez", + "EmployeeProfile": 77, + "Employee": 77, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a23cb02ace17d5ef811fa933b3120d27.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WOkdY5KzpCghTpqEzV6Q4OxzWKa5vKV7OoXYhPMwJvsq4rudREpRfkCfn3SsKpg0zpBBV3UVB68Hu09Ksi6L4cHrhbniM4I-tQt6pjHspvvoYCusVGTuQJClpXL9i4sax-lsois8uDNTcH5qQWSrWVoOmAxuwfabkepzuUQ6l00_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 77, + "Company": 5, + "FirstName": "Jazmin", + "LastName": "Hernandez", + "DisplayName": "Jazmin Hernandez", + "OtherName": null, + "Salutation": null, + "MainAddress": 273, + "PostalAddress": null, + "Contact": 272916, + "EmergencyAddress": 274, + "DateOfBirth": "1996-02-08T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1507, + "UserId": 77, + "JobAppId": null, + "Active": true, + "StartDate": "2021-09-13T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275987, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:29-07:00", + "Modified": "2022-07-06T11:03:30-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9429, + "Employee": 61, + "EmployeeHistory": 275972, + "EmployeeAgreement": 242, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664460240, + "EndTime": 1664481600, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -240, + "intEnd": -240, + "intUnixStart": 1664460000, + "intUnixEnd": 1664460000, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.93, + "TotalTimeInv": 5.93, + "Cost": null, + "Roster": 21156, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 32, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2381, + "File": 16955, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 61, + "Created": "2022-09-29T08:04:00-06:00", + "Modified": "2022-09-29T08:04:01-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:04:00-06:00", + "EndTimeLocalized": "2022-09-29T14:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 61, + "DisplayName": "Desirae Martin", + "EmployeeProfile": 61, + "Employee": 61, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f9c57d8a4b409ad8dbe9ebff056c28bc.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WUGv4hHKNH8mp5JmDb0rleqiLSSs5kXrcYvtgumjjFG7wjHIVJeGItP5JEmhN5uFGELFowx9f--z2sRrlRRMj0k3quFrhuH7SuuWn8-l8Zl02OQyPXVDieJTKej-P7CtKUBcm-uXgRdwG5AuMoSa7wVkw8MPUurpIBZx6FvJMtE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 32, + "OperationalUnitName": "Sono", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Sono" + }, + "EmployeeInfo": { + "Id": 61, + "DisplayName": "Desirae Martin", + "EmployeeProfile": 61, + "Employee": 61, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f9c57d8a4b409ad8dbe9ebff056c28bc.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WUGv4hHKNH8mp5JmDb0rleqiLSSs5kXrcYvtgumjjFG7wjHIVJeGItP5JEmhN5uFGELFowx9f--z2sRrlRRMj0k3quFrhuH7SuuWn8-l8Zl02OQyPXVDieJTKej-P7CtKUBcm-uXgRdwG5AuMoSa7wVkw8MPUurpIBZx6FvJMtE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 61, + "Company": 5, + "FirstName": "Desirae", + "LastName": "Martin", + "DisplayName": "Desirae Martin", + "OtherName": null, + "Salutation": null, + "MainAddress": 208, + "PostalAddress": null, + "Contact": 272902, + "EmergencyAddress": 260, + "DateOfBirth": "1984-07-05T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 937, + "UserId": 61, + "JobAppId": null, + "Active": true, + "StartDate": "2019-05-28T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275972, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:25-07:00", + "Modified": "2022-07-06T10:53:31-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9430, + "Employee": 99, + "EmployeeHistory": 79589, + "EmployeeAgreement": 143, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664460240, + "EndTime": 1664474400, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -240, + "intEnd": -240, + "intUnixStart": 1664460000, + "intUnixEnd": 1664460000, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 3.93, + "TotalTimeInv": 3.93, + "Cost": null, + "Roster": 21266, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2374, + "File": 16956, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 99, + "Created": "2022-09-29T08:04:48-06:00", + "Modified": "2022-09-29T08:04:48-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:04:00-06:00", + "EndTimeLocalized": "2022-09-29T12:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 99, + "DisplayName": "Fabiola Ortiz", + "EmployeeProfile": 99, + "Employee": 99, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_bc93429ae9717f0b9cec6953d463cad5.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=XG9lfHk1tJGX7wmosZBzZ0GFVJNX-ZcVSy~NxgnFwP3G-ufOuUio3wKFDXZ1nTYHt3OOYJ-mlY5Z-GoWzsIyJA0MV6tH7TW~D0m-9A2PQox25VgwZbjCU8M6SNa9QW5XKmviiXmsaR~DZyCGnHryhQ5YuuUqBtTL7UayIR428hs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 99, + "DisplayName": "Fabiola Ortiz", + "EmployeeProfile": 99, + "Employee": 99, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_bc93429ae9717f0b9cec6953d463cad5.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=XG9lfHk1tJGX7wmosZBzZ0GFVJNX-ZcVSy~NxgnFwP3G-ufOuUio3wKFDXZ1nTYHt3OOYJ-mlY5Z-GoWzsIyJA0MV6tH7TW~D0m-9A2PQox25VgwZbjCU8M6SNa9QW5XKmviiXmsaR~DZyCGnHryhQ5YuuUqBtTL7UayIR428hs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 99, + "Company": 2, + "FirstName": "Fabiola", + "LastName": "Ortiz", + "DisplayName": "Fabiola Ortiz", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 76732, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1270, + "UserId": 99, + "JobAppId": null, + "Active": true, + "StartDate": "2021-10-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 79589, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-05T11:06:04-06:00", + "Modified": "2022-04-18T20:21:43-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9431, + "Employee": 69, + "EmployeeHistory": 276128, + "EmployeeAgreement": 72, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664460300, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -300, + "intEnd": 3300, + "intUnixStart": 1664460000, + "intUnixEnd": 1664463600, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9.92, + "TotalTimeInv": 9.92, + "Cost": null, + "Roster": 21183, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 21, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2351, + "File": 16957, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 69, + "Created": "2022-09-29T08:05:15-06:00", + "Modified": "2022-09-29T08:05:16-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:05:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 69, + "DisplayName": "Humberto Saenz Chavez", + "EmployeeProfile": 69, + "Employee": 69, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e1e503c48d0b7357937408753dc18eb5.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WJRWQesDAJCoeihtG3wVUEJi1PaNhpUSyg7vy9i6n6Cc0iHy9L9e7xAHTag1R2en73xk6bXikPTTOUVAFwkrikSb9UVgSS2MgGiBgGAZufceXx81pn~CR41BjUIDYHCP8c3z2AQ9lIoQmN6Tgw4eZgOPbpkrWvub6Y9GId63YPI_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 21, + "OperationalUnitName": "Dr. Saenz", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Saenz" + }, + "EmployeeInfo": { + "Id": 69, + "DisplayName": "Humberto Saenz Chavez", + "EmployeeProfile": 69, + "Employee": 69, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e1e503c48d0b7357937408753dc18eb5.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WJRWQesDAJCoeihtG3wVUEJi1PaNhpUSyg7vy9i6n6Cc0iHy9L9e7xAHTag1R2en73xk6bXikPTTOUVAFwkrikSb9UVgSS2MgGiBgGAZufceXx81pn~CR41BjUIDYHCP8c3z2AQ9lIoQmN6Tgw4eZgOPbpkrWvub6Y9GId63YPI_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 69, + "Company": 2, + "FirstName": "Humberto", + "LastName": "Saenz Chavez", + "DisplayName": "Humberto Saenz Chavez", + "OtherName": null, + "Salutation": null, + "MainAddress": 222, + "PostalAddress": null, + "Contact": 272964, + "EmergencyAddress": 284, + "DateOfBirth": "1985-07-11T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1229, + "UserId": 69, + "JobAppId": null, + "Active": true, + "StartDate": "2020-07-20T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276128, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-09-18T17:40:41-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9432, + "Employee": 73, + "EmployeeHistory": 276007, + "EmployeeAgreement": 76, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664460360, + "EndTime": 1664492400, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -360, + "intEnd": 3240, + "intUnixStart": 1664460000, + "intUnixEnd": 1664463600, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 8.9, + "TotalTimeInv": 8.9, + "Cost": null, + "Roster": 21352, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 57, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2379, + "File": 16958, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 73, + "Created": "2022-09-29T08:06:29-06:00", + "Modified": "2022-09-29T08:06:30-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:06:00-06:00", + "EndTimeLocalized": "2022-09-29T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 73, + "DisplayName": "Tyler Roberts", + "EmployeeProfile": 73, + "Employee": 73, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8a97a499511e44a423c5d63c874dc913.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hfpyin5jkIDZs~nLmN907v9I70A8RJZKGvkJkgs-V0eGdDch0wYk~BWRQZ7KgIBkfBDp3PJxvbcSf3iTuN8FVIvlus3YwrBOBKY~GHtetPR90GTW-YUQjSJLtjsjMX7jvCkvxbtOLat5rhoK0GXNthMLgrPSGiIWtOV4UgaG0ck_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 57, + "OperationalUnitName": "Tyler Roberts PA-C", + "Company": 4, + "CompanyName": "North Loop", + "LabelWithCompany": "[NOR] Tyler Roberts PA-C" + }, + "EmployeeInfo": { + "Id": 73, + "DisplayName": "Tyler Roberts", + "EmployeeProfile": 73, + "Employee": 73, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8a97a499511e44a423c5d63c874dc913.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Hfpyin5jkIDZs~nLmN907v9I70A8RJZKGvkJkgs-V0eGdDch0wYk~BWRQZ7KgIBkfBDp3PJxvbcSf3iTuN8FVIvlus3YwrBOBKY~GHtetPR90GTW-YUQjSJLtjsjMX7jvCkvxbtOLat5rhoK0GXNthMLgrPSGiIWtOV4UgaG0ck_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 73, + "Company": 4, + "FirstName": "Tyler", + "LastName": "Roberts", + "DisplayName": "Tyler Roberts", + "OtherName": null, + "Salutation": null, + "MainAddress": 229, + "PostalAddress": null, + "Contact": 272913, + "EmergencyAddress": 269, + "DateOfBirth": "1995-08-28T00:00:00-07:00", + "Gender": 1, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 974, + "UserId": 73, + "JobAppId": null, + "Active": true, + "StartDate": "2020-11-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276007, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-07-06T11:19:56-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9433, + "Employee": 140, + "EmployeeHistory": 276127, + "EmployeeAgreement": 531, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664460420, + "EndTime": 1664492400, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -420, + "intEnd": 3180, + "intUnixStart": 1664460000, + "intUnixEnd": 1664463600, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 8.88, + "TotalTimeInv": 8.88, + "Cost": null, + "Roster": 22262, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2431, + "File": 16959, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 140, + "Created": "2022-09-29T08:07:18-06:00", + "Modified": "2022-09-29T08:07:18-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:07:00-06:00", + "EndTimeLocalized": "2022-09-29T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 140, + "DisplayName": "Cesar Molina", + "EmployeeProfile": 140, + "Employee": 140, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_913978aa8ee3482d1d13127d8af9436a.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WkJKqdnooCQlf7JjIWiYVmbeWe0GtSp9-hnrGpTseW73DuRDlNnD5h0RpPB5XmmzuTIG3hspKcqpYGewcQM8c2ZWB26TWY6osNekrwoE7V0vaD4idmd6iJQNVNaVfv9zkqrbrp4HcyewYzKnkBGEZzqFl~N7afqE5RR8S5Glvok_", + "Pronouns": 1, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 140, + "DisplayName": "Cesar Molina", + "EmployeeProfile": 140, + "Employee": 140, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_913978aa8ee3482d1d13127d8af9436a.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WkJKqdnooCQlf7JjIWiYVmbeWe0GtSp9-hnrGpTseW73DuRDlNnD5h0RpPB5XmmzuTIG3hspKcqpYGewcQM8c2ZWB26TWY6osNekrwoE7V0vaD4idmd6iJQNVNaVfv9zkqrbrp4HcyewYzKnkBGEZzqFl~N7afqE5RR8S5Glvok_", + "Pronouns": 1, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 140, + "Company": 6, + "FirstName": "Cesar", + "LastName": "Molina", + "DisplayName": "Cesar Molina", + "OtherName": null, + "Salutation": null, + "MainAddress": 332, + "PostalAddress": null, + "Contact": 272961, + "EmergencyAddress": 333, + "DateOfBirth": "1989-11-05T00:00:00-07:00", + "Gender": 0, + "Pronouns": 1, + "CustomPronouns": "", + "Photo": 15038, + "UserId": 140, + "JobAppId": null, + "Active": true, + "StartDate": "2022-09-07T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276127, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-09-07T17:13:25-06:00", + "Modified": "2022-09-16T12:51:43-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9434, + "Employee": 68, + "EmployeeHistory": 276018, + "EmployeeAgreement": 71, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664460480, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -1380, + "intEnd": 2220, + "intUnixStart": 1664459100, + "intUnixEnd": 1664462700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9.87, + "TotalTimeInv": 9.87, + "Cost": null, + "Roster": 21195, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 21, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2373, + "File": 16960, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 68, + "Created": "2022-09-29T08:08:25-06:00", + "Modified": "2022-09-29T08:08:26-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:08:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 68, + "DisplayName": "Stephanie Mireles", + "EmployeeProfile": 68, + "Employee": 68, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_698c34535292002e69ac63742be26976.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=e9Uf90rsb6Hxy3xuQS3sdqmEydJrHYPo4HhlkXSNn5ocwi3-~X9nLua4XoshGw1WDNjuoNpnR0o-J3C3JaTndZtWT1tXaUPoMcCUseJ8GQ5VVmRv8MDVw8Z6pUW814A6Nj9fxoNVDUJ09ylK7mIDEGkLfn4OIDVpuXrlw4vWVp0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 21, + "OperationalUnitName": "Dr. Saenz", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Saenz" + }, + "EmployeeInfo": { + "Id": 68, + "DisplayName": "Stephanie Mireles", + "EmployeeProfile": 68, + "Employee": 68, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_698c34535292002e69ac63742be26976.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=e9Uf90rsb6Hxy3xuQS3sdqmEydJrHYPo4HhlkXSNn5ocwi3-~X9nLua4XoshGw1WDNjuoNpnR0o-J3C3JaTndZtWT1tXaUPoMcCUseJ8GQ5VVmRv8MDVw8Z6pUW814A6Nj9fxoNVDUJ09ylK7mIDEGkLfn4OIDVpuXrlw4vWVp0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 68, + "Company": 2, + "FirstName": "Stephanie", + "LastName": "Mireles", + "DisplayName": "Stephanie Mireles", + "OtherName": null, + "Salutation": null, + "MainAddress": 220, + "PostalAddress": null, + "Contact": 272908, + "EmergencyAddress": 265, + "DateOfBirth": "1999-08-14T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1173, + "UserId": 68, + "JobAppId": null, + "Active": true, + "StartDate": "2020-08-05T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276018, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:27-07:00", + "Modified": "2022-07-06T13:29:25-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9435, + "Employee": 59, + "EmployeeHistory": 276087, + "EmployeeAgreement": 62, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664460480, + "EndTime": 1664481600, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -480, + "intEnd": -480, + "intUnixStart": 1664460000, + "intUnixEnd": 1664460000, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.87, + "TotalTimeInv": 5.87, + "Cost": null, + "Roster": 21147, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 26, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2385, + "File": 16961, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 59, + "Created": "2022-09-29T08:08:46-06:00", + "Modified": "2022-09-29T08:08:47-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:08:00-06:00", + "EndTimeLocalized": "2022-09-29T14:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 59, + "DisplayName": "Esperanza Robledo", + "EmployeeProfile": 59, + "Employee": 59, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f1facd44e26dc49f636aa66f029dfb72.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=FSELOBnr~C4YwY2XfOEcL9S47MKYZ5lagrdAzrN3~MqkzKt7RiPVy5kvugg8IDnQL7UibHuhyDbIJHGBTxgKh3Qvj5pQXJyCjVNB1dIbygmlxbSqvhE6HnjjQ498KGnOi9JmbSi86mcDCf2m~pR8TYVRRtVv7L2MVw0RjkcUjO8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 26, + "OperationalUnitName": "Sono", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Sono" + }, + "EmployeeInfo": { + "Id": 59, + "DisplayName": "Esperanza Robledo", + "EmployeeProfile": 59, + "Employee": 59, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_f1facd44e26dc49f636aa66f029dfb72.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=FSELOBnr~C4YwY2XfOEcL9S47MKYZ5lagrdAzrN3~MqkzKt7RiPVy5kvugg8IDnQL7UibHuhyDbIJHGBTxgKh3Qvj5pQXJyCjVNB1dIbygmlxbSqvhE6HnjjQ498KGnOi9JmbSi86mcDCf2m~pR8TYVRRtVv7L2MVw0RjkcUjO8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 59, + "Company": 2, + "FirstName": "Esperanza", + "LastName": "Robledo", + "DisplayName": "Esperanza Robledo", + "OtherName": null, + "Salutation": null, + "MainAddress": 206, + "PostalAddress": null, + "Contact": 272945, + "EmergencyAddress": null, + "DateOfBirth": "1987-08-02T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 938, + "UserId": 59, + "JobAppId": null, + "Active": true, + "StartDate": "2019-03-06T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276087, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:25-07:00", + "Modified": "2022-08-19T18:56:16-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9436, + "Employee": 102, + "EmployeeHistory": 275684, + "EmployeeAgreement": 414, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664460480, + "EndTime": 1664492400, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -480, + "intEnd": 3120, + "intUnixStart": 1664460000, + "intUnixEnd": 1664463600, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 8.87, + "TotalTimeInv": 8.87, + "Cost": null, + "Roster": 21268, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 65, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2380, + "File": 16962, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 102, + "Created": "2022-09-29T08:08:58-06:00", + "Modified": "2022-09-29T08:08:58-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:08:00-06:00", + "EndTimeLocalized": "2022-09-29T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 102, + "DisplayName": "Justine Franco", + "EmployeeProfile": 102, + "Employee": 102, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6ffd09c47f45d603be0685af846b9b3f.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gxi-qlNQ1rYSHrQy5yWfNmHd~6bk1JyeQRirQNbGjiaXx5a-g019V62flgh9hcLTu6D3~SVMYcZh69qlNrJxL5~BhsMhRBDcldyqVMYiniI3wizIMJJpls1NF~mCTp3ghtFS-GhyuM0tqGHnPSfKM7YMJMvRiifqN3Vx8Jg1CBs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 65, + "OperationalUnitName": "Justine Franco NP", + "Company": 5, + "CompanyName": "Montana", + "LabelWithCompany": "[MON] Justine Franco NP" + }, + "EmployeeInfo": { + "Id": 102, + "DisplayName": "Justine Franco", + "EmployeeProfile": 102, + "Employee": 102, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_6ffd09c47f45d603be0685af846b9b3f.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gxi-qlNQ1rYSHrQy5yWfNmHd~6bk1JyeQRirQNbGjiaXx5a-g019V62flgh9hcLTu6D3~SVMYcZh69qlNrJxL5~BhsMhRBDcldyqVMYiniI3wizIMJJpls1NF~mCTp3ghtFS-GhyuM0tqGHnPSfKM7YMJMvRiifqN3Vx8Jg1CBs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 102, + "Company": 3, + "FirstName": "Justine", + "LastName": "Franco", + "DisplayName": "Justine Franco", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272655, + "EmergencyAddress": 284, + "DateOfBirth": "1992-02-04T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 8793, + "UserId": 102, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-11T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275684, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-11T12:54:41-06:00", + "Modified": "2022-06-30T22:42:25-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9437, + "Employee": 54, + "EmployeeHistory": 275301, + "EmployeeAgreement": 56, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664460720, + "EndTime": 1664492400, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -720, + "intEnd": 2880, + "intUnixStart": 1664460000, + "intUnixEnd": 1664463600, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 8.8, + "TotalTimeInv": 8.8, + "Cost": null, + "Roster": 21143, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2382, + "File": 16963, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 54, + "Created": "2022-09-29T08:12:10-06:00", + "Modified": "2022-09-29T08:12:11-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:12:00-06:00", + "EndTimeLocalized": "2022-09-29T17:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 54, + "DisplayName": "Lyanne Lesso", + "EmployeeProfile": 54, + "Employee": 54, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_39d0ccc171382460cd77f920151d420e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=d2-i~NWb1NBolskITRaERgrqxhBRTTLMKG~L5PuWDNvEdZkztBwzqCacLE-avQkHxGTEINKClOQ6-z2wlDttPsWSQDf3wpo5uzOgyobynJvGZ~pA7hBuQpe2R-QFwcMB2oitqxJXiUuHPD3VcnTKFQvCtQsAJw8OLvqVwjo0Xuo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 54, + "DisplayName": "Lyanne Lesso", + "EmployeeProfile": 54, + "Employee": 54, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_39d0ccc171382460cd77f920151d420e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=d2-i~NWb1NBolskITRaERgrqxhBRTTLMKG~L5PuWDNvEdZkztBwzqCacLE-avQkHxGTEINKClOQ6-z2wlDttPsWSQDf3wpo5uzOgyobynJvGZ~pA7hBuQpe2R-QFwcMB2oitqxJXiUuHPD3VcnTKFQvCtQsAJw8OLvqVwjo0Xuo_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 54, + "Company": 6, + "FirstName": "Lyanne", + "LastName": "Lesso", + "DisplayName": "Lyanne Lesso", + "OtherName": null, + "Salutation": null, + "MainAddress": 200, + "PostalAddress": null, + "Contact": 155243, + "EmergencyAddress": 284, + "DateOfBirth": "1991-04-01T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1048, + "UserId": 54, + "JobAppId": null, + "Active": true, + "StartDate": "2020-09-21T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275301, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:23-07:00", + "Modified": "2022-06-20T18:04:57-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9438, + "Employee": 36, + "EmployeeHistory": 275969, + "EmployeeAgreement": 38, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664461020, + "EndTime": 1664481600, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -120, + "intEnd": 1680, + "intUnixStart": 1664460900, + "intUnixEnd": 1664462700, + "mixedActivity": { + "intState": 0, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Not Start" + }], + "TotalTime": 5.72, + "TotalTimeInv": 5.72, + "Cost": null, + "Roster": 21104, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2388, + "File": 16964, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 36, + "Created": "2022-09-29T08:17:32-06:00", + "Modified": "2022-09-29T08:17:32-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:17:00-06:00", + "EndTimeLocalized": "2022-09-29T14:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 36, + "DisplayName": "Daisy Alcala", + "EmployeeProfile": 36, + "Employee": 36, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_d697cda0a688532ffbcdb39044b0097c.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gzHOysNM3eoVLNpRxr63O0oPN91DjpY2lgGVNnByteILN8hO6-nnK4nfrhhxLQI1AX0IhFQ~AC64Jvir39HE6Kyfk9dt2p0Eqn2UPtDNrPs9y3RyEv0ahNMcE4HiPhpIHd4VoJ2gBMcCVZzdZgsaYSSTPxjvzkK5hX4ZC7PEdYE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 36, + "DisplayName": "Daisy Alcala", + "EmployeeProfile": 36, + "Employee": 36, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_d697cda0a688532ffbcdb39044b0097c.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gzHOysNM3eoVLNpRxr63O0oPN91DjpY2lgGVNnByteILN8hO6-nnK4nfrhhxLQI1AX0IhFQ~AC64Jvir39HE6Kyfk9dt2p0Eqn2UPtDNrPs9y3RyEv0ahNMcE4HiPhpIHd4VoJ2gBMcCVZzdZgsaYSSTPxjvzkK5hX4ZC7PEdYE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 36, + "Company": 6, + "FirstName": "Daisy", + "LastName": "Alcala", + "DisplayName": "Daisy Alcala", + "OtherName": null, + "Salutation": null, + "MainAddress": 182, + "PostalAddress": null, + "Contact": 272884, + "EmergencyAddress": 284, + "DateOfBirth": "1995-09-10T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 949, + "UserId": 36, + "JobAppId": null, + "Active": true, + "StartDate": "2015-03-02T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275969, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:20-07:00", + "Modified": "2022-07-06T10:48:08-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9439, + "Employee": 135, + "EmployeeHistory": 276099, + "EmployeeAgreement": 512, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664462280, + "EndTime": 1664495580, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664462280, + "intUnixEnd": 1664465880, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9.25, + "TotalTimeInv": 9.25, + "Cost": null, + "Roster": 21337, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 23, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2389, + "File": 16965, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 135, + "Created": "2022-09-29T08:38:32-06:00", + "Modified": "2022-09-29T08:38:34-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:38:00-06:00", + "EndTimeLocalized": "2022-09-29T17:53:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 135, + "DisplayName": "Marissa Soto-Valerio", + "EmployeeProfile": 135, + "Employee": 135, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_94560170a6a83cf1408a9e5e5068262e.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Cbw5hGMmYNTodn0SgrSSbDEWXJsJQ8NcV4R6esuf48aWPVFOyf9Ckjm48MZ~q9~FCgAmOOPbTWvcreai8GumOSy8CP~-KtO5WKL-fRoHvLU5HHFSu2gxxjAHsq4mm~iuvxpodjqd4Gn0Zs3LB3r2N~lY9kxuXcSNRkMZ3ySBIc8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 23, + "OperationalUnitName": "Dr. Pean", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Pean" + }, + "EmployeeInfo": { + "Id": 135, + "DisplayName": "Marissa Soto-Valerio", + "EmployeeProfile": 135, + "Employee": 135, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_94560170a6a83cf1408a9e5e5068262e.jpg?Expires=1664546642&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Cbw5hGMmYNTodn0SgrSSbDEWXJsJQ8NcV4R6esuf48aWPVFOyf9Ckjm48MZ~q9~FCgAmOOPbTWvcreai8GumOSy8CP~-KtO5WKL-fRoHvLU5HHFSu2gxxjAHsq4mm~iuvxpodjqd4Gn0Zs3LB3r2N~lY9kxuXcSNRkMZ3ySBIc8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 135, + "Company": 3, + "FirstName": "Marissa", + "LastName": "Soto-Valerio", + "DisplayName": "Marissa Soto-Valerio", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272938, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 10369, + "UserId": 135, + "JobAppId": null, + "Active": true, + "StartDate": "2022-07-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276099, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-07-19T09:22:30-06:00", + "Modified": "2022-08-31T19:39:45-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9440, + "Employee": 78, + "EmployeeHistory": 130449, + "EmployeeAgreement": 300, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664462700, + "EndTime": 1664481600, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664462700, + "intUnixEnd": 1664466300, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.25, + "TotalTimeInv": 5.25, + "Cost": null, + "Roster": 22260, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 34, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2392, + "File": 16966, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 78, + "Created": "2022-09-29T08:45:20-06:00", + "Modified": "2022-09-29T08:45:21-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:45:00-06:00", + "EndTimeLocalized": "2022-09-29T14:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 78, + "DisplayName": "Hector Franco", + "EmployeeProfile": 78, + "Employee": 78, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0c697a35aaafa3a175cd0ef4c3463996.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NmHVh9Xoif4ePcexxj1rMJ0fcunV6eCn-UMLC4nMp7Wi5IoLveL-PJOEq8dg1n-7OpTl8efqKlJWwOC9N-L5NSteLrwNVer9QaRhW0xsI5xhyDXWYorFTrEjkAaHvYcbsppoYwt~SQFthgAzWr4mlNabDSuj~rGc9nYuDj0MLtQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 78, + "DisplayName": "Hector Franco", + "EmployeeProfile": 78, + "Employee": 78, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0c697a35aaafa3a175cd0ef4c3463996.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NmHVh9Xoif4ePcexxj1rMJ0fcunV6eCn-UMLC4nMp7Wi5IoLveL-PJOEq8dg1n-7OpTl8efqKlJWwOC9N-L5NSteLrwNVer9QaRhW0xsI5xhyDXWYorFTrEjkAaHvYcbsppoYwt~SQFthgAzWr4mlNabDSuj~rGc9nYuDj0MLtQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 78, + "Company": 2, + "FirstName": "Hector", + "LastName": "Franco", + "DisplayName": "Hector Franco", + "OtherName": null, + "Salutation": null, + "MainAddress": 275, + "PostalAddress": null, + "Contact": 16572, + "EmergencyAddress": 276, + "DateOfBirth": "1999-05-21T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 945, + "UserId": 78, + "JobAppId": null, + "Active": true, + "StartDate": "2021-10-11T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 130449, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:29-07:00", + "Modified": "2022-04-28T11:01:18-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9441, + "Employee": 74, + "EmployeeHistory": 275980, + "EmployeeAgreement": 141, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664462700, + "EndTime": 1664499600, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664462700, + "intUnixEnd": 1664466300, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 10.25, + "TotalTimeInv": 10.25, + "Cost": null, + "Roster": 21451, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 59, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2390, + "File": 16967, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 74, + "Created": "2022-09-29T08:45:26-06:00", + "Modified": "2022-09-29T08:45:27-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:45:00-06:00", + "EndTimeLocalized": "2022-09-29T19:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 74, + "DisplayName": "Gabriel Cuevas", + "EmployeeProfile": 74, + "Employee": 74, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_484f0cb4a4ee813fd8e8cb72473256db.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gpL2IPsSlGgn7~rak~dVlyUrJRO4CJo4piyS13ubJ9a9mlyFEzJubll2hZhAJLg7KOFM90PYoo~Nt4~-nid52m~cG~DK57J5b~8AqXh~726vvbTZ4Kl-CTOyK-n9AJbN2AGJBwSuZIfwlY~-0TRDoXlUhxDKpjg0K6mGFkKiR0g_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 59, + "OperationalUnitName": "Clark Page PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Clark Page PA-C" + }, + "EmployeeInfo": { + "Id": 74, + "DisplayName": "Gabriel Cuevas", + "EmployeeProfile": 74, + "Employee": 74, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_484f0cb4a4ee813fd8e8cb72473256db.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gpL2IPsSlGgn7~rak~dVlyUrJRO4CJo4piyS13ubJ9a9mlyFEzJubll2hZhAJLg7KOFM90PYoo~Nt4~-nid52m~cG~DK57J5b~8AqXh~726vvbTZ4Kl-CTOyK-n9AJbN2AGJBwSuZIfwlY~-0TRDoXlUhxDKpjg0K6mGFkKiR0g_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 74, + "Company": 4, + "FirstName": "Gabriel", + "LastName": "Cuevas", + "DisplayName": "Gabriel Cuevas", + "OtherName": null, + "Salutation": null, + "MainAddress": 231, + "PostalAddress": null, + "Contact": 272914, + "EmergencyAddress": 270, + "DateOfBirth": "2001-08-14T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1039, + "UserId": 74, + "JobAppId": null, + "Active": true, + "StartDate": "2021-05-04T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275980, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:28-07:00", + "Modified": "2022-07-06T10:56:48-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9442, + "Employee": 34, + "EmployeeHistory": 276096, + "EmployeeAgreement": 36, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664462700, + "EndTime": 1664481600, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664462700, + "intUnixEnd": 1664466300, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5.25, + "TotalTimeInv": 5.25, + "Cost": null, + "Roster": 21086, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 34, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2425, + "File": 16968, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 34, + "Created": "2022-09-29T08:45:31-06:00", + "Modified": "2022-09-29T08:45:31-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:45:00-06:00", + "EndTimeLocalized": "2022-09-29T14:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 34, + "DisplayName": "Berenice Sanchez", + "EmployeeProfile": 34, + "Employee": 34, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8cc56a38231b2d3ba4dbe49080fc5235.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=AoAN2Ua9DVXioRA6B7g06wFAA9NL1KQe~XyjtbSI-KW90qddvVyHU6NabkhqbrnrJEclUG4FYUifWohvSh~IHsN6t5OFeuZUfnccRIhHibxzAmBNW4BwhjdWJlv-C52Mp3PPjgHlGHjYgxGEdp7gLO64BMfIxzety3DSEb6X7rs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 34, + "DisplayName": "Berenice Sanchez", + "EmployeeProfile": 34, + "Employee": 34, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8cc56a38231b2d3ba4dbe49080fc5235.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=AoAN2Ua9DVXioRA6B7g06wFAA9NL1KQe~XyjtbSI-KW90qddvVyHU6NabkhqbrnrJEclUG4FYUifWohvSh~IHsN6t5OFeuZUfnccRIhHibxzAmBNW4BwhjdWJlv-C52Mp3PPjgHlGHjYgxGEdp7gLO64BMfIxzety3DSEb6X7rs_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 34, + "Company": 3, + "FirstName": "Berenice", + "LastName": "Sanchez", + "DisplayName": "Berenice Sanchez", + "OtherName": null, + "Salutation": null, + "MainAddress": 180, + "PostalAddress": null, + "Contact": 272882, + "EmergencyAddress": 284, + "DateOfBirth": "1991-09-19T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1116, + "UserId": 34, + "JobAppId": null, + "Active": true, + "StartDate": "2014-11-19T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276096, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:19-07:00", + "Modified": "2022-08-29T17:44:23-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9443, + "Employee": 63, + "EmployeeHistory": 275988, + "EmployeeAgreement": 65, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463120, + "EndTime": 1664495520, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664463120, + "intUnixEnd": 1664466720, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9, + "TotalTimeInv": 9, + "Cost": null, + "Roster": 21159, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 23, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2393, + "File": 16969, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 62, + "Created": "2022-09-29T08:52:19-06:00", + "Modified": "2022-09-29T08:52:20-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:52:00-06:00", + "EndTimeLocalized": "2022-09-29T17:52:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 62, + "DisplayName": "Jules Pean", + "EmployeeProfile": 63, + "Employee": 63, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a73f41564e0cc3720ffd597c238e2bcf.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gJwioREdFKg3qimVBJDuk~Reid24G1TbeBfwHUEmeM20pREAcqdrl~80kH2xGiSZQ5mrqoI~Ufq4B6qDwX6wiQ6Mk1e-Y4xeI4XrQLZTlZ9muO6-3xWfJ~DRKirB~DyGfDi9AXqMM7BbuDmw3UBzm1eTA20VjvTpVEbm74PLEGk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 23, + "OperationalUnitName": "Dr. Pean", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Pean" + }, + "EmployeeInfo": { + "Id": 62, + "DisplayName": "Jules Pean", + "EmployeeProfile": 63, + "Employee": 63, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a73f41564e0cc3720ffd597c238e2bcf.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gJwioREdFKg3qimVBJDuk~Reid24G1TbeBfwHUEmeM20pREAcqdrl~80kH2xGiSZQ5mrqoI~Ufq4B6qDwX6wiQ6Mk1e-Y4xeI4XrQLZTlZ9muO6-3xWfJ~DRKirB~DyGfDi9AXqMM7BbuDmw3UBzm1eTA20VjvTpVEbm74PLEGk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 63, + "Company": 2, + "FirstName": "Jules", + "LastName": "Pean", + "DisplayName": "Jules Pean", + "OtherName": null, + "Salutation": null, + "MainAddress": 211, + "PostalAddress": null, + "Contact": 272903, + "EmergencyAddress": 284, + "DateOfBirth": "1952-03-08T00:00:00-08:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1190, + "UserId": 62, + "JobAppId": null, + "Active": true, + "StartDate": "2019-08-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275988, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:25-07:00", + "Modified": "2022-07-06T11:04:00-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9444, + "Employee": 117, + "EmployeeHistory": 276141, + "EmployeeAgreement": 442, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463360, + "EndTime": 1664495760, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 240, + "intEnd": 3840, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9, + "TotalTimeInv": 9, + "Cost": null, + "Roster": 21299, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2398, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 117, + "Created": "2022-09-29T08:56:03-06:00", + "Modified": "2022-09-29T08:56:03-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:56:00-06:00", + "EndTimeLocalized": "2022-09-29T17:56:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 117, + "DisplayName": "Ilya Davalos", + "EmployeeProfile": 117, + "Employee": 117, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=I+D&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 117, + "DisplayName": "Ilya Davalos", + "EmployeeProfile": 117, + "Employee": 117, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=I+D&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 117, + "Company": 7, + "FirstName": "Ilya", + "LastName": "Davalos", + "DisplayName": "Ilya Davalos", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 113093, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 117, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276141, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:17-06:00", + "Modified": "2022-09-27T08:46:16-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9445, + "Employee": 118, + "EmployeeHistory": 115913, + "EmployeeAgreement": 443, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463420, + "EndTime": 1664495820, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 180, + "intEnd": 3780, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9, + "TotalTimeInv": 9, + "Cost": null, + "Roster": 21314, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2400, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 118, + "Created": "2022-09-29T08:57:20-06:00", + "Modified": "2022-09-29T08:57:20-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:57:00-06:00", + "EndTimeLocalized": "2022-09-29T17:57:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 118, + "DisplayName": "Silvia Ledon", + "EmployeeProfile": 118, + "Employee": 118, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=S+L&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 118, + "DisplayName": "Silvia Ledon", + "EmployeeProfile": 118, + "Employee": 118, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=S+L&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 118, + "Company": 7, + "FirstName": "Silvia", + "LastName": "Ledon", + "DisplayName": "Silvia Ledon", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 113035, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 118, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115913, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:18-06:00", + "Modified": "2022-04-25T17:50:56-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9446, + "Employee": 142, + "EmployeeHistory": 276139, + "EmployeeAgreement": 542, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463480, + "EndTime": 1664481480, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664463480, + "intUnixEnd": 1664467080, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 5, + "TotalTimeInv": 5, + "Cost": null, + "Roster": 21848, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 34, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2401, + "File": 16970, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 142, + "Created": "2022-09-29T08:58:24-06:00", + "Modified": "2022-09-29T08:58:24-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:58:00-06:00", + "EndTimeLocalized": "2022-09-29T13:58:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 142, + "DisplayName": "Vanessa Magallanes", + "EmployeeProfile": 142, + "Employee": 142, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fa565141b7f588a7bbe6bb8e34e45f2e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=BtW8mTyd40wfcVorqMsOWuhSDBOqnyjlBD4hmOgHCDhD8yYBjH5cfGN~0h-PgZhECRyXtWrgf3bbMAZsCU-Pms~DsOSeDhMbwf3kOf-ta2H6Lkk3yCDhu3kOYA94Yds-k932qLTDy~mbXnM65LI435m2tEZ~m9jFEdWrZzZQXtI_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 142, + "DisplayName": "Vanessa Magallanes", + "EmployeeProfile": 142, + "Employee": 142, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fa565141b7f588a7bbe6bb8e34e45f2e.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=BtW8mTyd40wfcVorqMsOWuhSDBOqnyjlBD4hmOgHCDhD8yYBjH5cfGN~0h-PgZhECRyXtWrgf3bbMAZsCU-Pms~DsOSeDhMbwf3kOf-ta2H6Lkk3yCDhu3kOYA94Yds-k932qLTDy~mbXnM65LI435m2tEZ~m9jFEdWrZzZQXtI_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 142, + "Company": 3, + "FirstName": "Vanessa", + "LastName": "Magallanes", + "DisplayName": "Vanessa Magallanes", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272968, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 16284, + "UserId": 142, + "JobAppId": null, + "Active": true, + "StartDate": "2022-09-21T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": "", + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276139, + "CustomFieldData": null, + "Creator": 2, + "Created": "2022-09-21T17:48:15-06:00", + "Modified": "2022-09-23T16:33:22-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9447, + "Employee": 51, + "EmployeeHistory": 276033, + "EmployeeAgreement": 53, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463480, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -780, + "intEnd": 2820, + "intUnixStart": 1664462700, + "intUnixEnd": 1664466300, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9.03, + "TotalTimeInv": 9.03, + "Cost": null, + "Roster": 21139, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 23, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2436, + "File": 16971, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 51, + "Created": "2022-09-29T08:58:46-06:00", + "Modified": "2022-09-29T08:58:47-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:58:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 51, + "DisplayName": "Elizabeth Arreola", + "EmployeeProfile": 51, + "Employee": 51, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a0c25db5d291f2c1bf1b3a0453209155.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WuEMSi0aNK3ifgyhxac8KpYAlmlY-SKs1B3HezyATcLxjfrnf7jXvESIKjZJKJLv7ltTeQYcYIN4j7Tvgrg-Ru2eaP3WeEMsxo0FeHozg9ieBQ3fnAWjjVKh-y2S4Rc~HBrTZlgGd9G4X6nkx-zE6LBgtBfP6Nbt-Qxig-I5rY0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 23, + "OperationalUnitName": "Dr. Pean", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Pean" + }, + "EmployeeInfo": { + "Id": 51, + "DisplayName": "Elizabeth Arreola", + "EmployeeProfile": 51, + "Employee": 51, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a0c25db5d291f2c1bf1b3a0453209155.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=WuEMSi0aNK3ifgyhxac8KpYAlmlY-SKs1B3HezyATcLxjfrnf7jXvESIKjZJKJLv7ltTeQYcYIN4j7Tvgrg-Ru2eaP3WeEMsxo0FeHozg9ieBQ3fnAWjjVKh-y2S4Rc~HBrTZlgGd9G4X6nkx-zE6LBgtBfP6Nbt-Qxig-I5rY0_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 51, + "Company": 2, + "FirstName": "Elizabeth", + "LastName": "Arreola", + "DisplayName": "Elizabeth Arreola", + "OtherName": null, + "Salutation": null, + "MainAddress": 197, + "PostalAddress": null, + "Contact": 272897, + "EmergencyAddress": 284, + "DateOfBirth": "1985-08-06T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1858, + "UserId": 51, + "JobAppId": null, + "Active": true, + "StartDate": "2018-04-23T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276033, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:23-07:00", + "Modified": "2022-07-11T12:25:40-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9448, + "Employee": 81, + "EmployeeHistory": 275970, + "EmployeeAgreement": 144, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463540, + "EndTime": 1664499540, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664463540, + "intUnixEnd": 1664467140, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 10, + "TotalTimeInv": 10, + "Cost": null, + "Roster": 21229, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 25, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2419, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 81, + "Created": "2022-09-29T08:59:41-06:00", + "Modified": "2022-09-29T08:59:42-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T08:59:00-06:00", + "EndTimeLocalized": "2022-09-29T18:59:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 81, + "DisplayName": "David Gomez", + "EmployeeProfile": 81, + "Employee": 81, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_628106735184a54f7891b6db7dfe0b39.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=MjcbfVMvTqNoWBuIb~iVUM4wr~BJ8a3IyzEL07HVFHswfZrxfim-o40CueCGeGn~Z4R~ydbCnA3kDgFkcSe6CHhxpMTJcOPe8ci78dF7ckh6DRizk9LBUqPKFx3stO5l1bTFIePOKDIv7nEo97YtZeBqryt0liTvOiE~0i4ZXSk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 25, + "OperationalUnitName": "Medical Assistants", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Medical Assistants" + }, + "EmployeeInfo": { + "Id": 81, + "DisplayName": "David Gomez", + "EmployeeProfile": 81, + "Employee": 81, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_628106735184a54f7891b6db7dfe0b39.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=MjcbfVMvTqNoWBuIb~iVUM4wr~BJ8a3IyzEL07HVFHswfZrxfim-o40CueCGeGn~Z4R~ydbCnA3kDgFkcSe6CHhxpMTJcOPe8ci78dF7ckh6DRizk9LBUqPKFx3stO5l1bTFIePOKDIv7nEo97YtZeBqryt0liTvOiE~0i4ZXSk_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 81, + "Company": 3, + "FirstName": "David", + "LastName": "Gomez", + "DisplayName": "David Gomez", + "OtherName": null, + "Salutation": null, + "MainAddress": 243, + "PostalAddress": null, + "Contact": 272919, + "EmergencyAddress": 278, + "DateOfBirth": "2001-02-12T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1165, + "UserId": 81, + "JobAppId": null, + "Active": true, + "StartDate": "2022-01-17T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275970, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:30-07:00", + "Modified": "2022-07-06T10:49:53-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9449, + "Employee": 134, + "EmployeeHistory": 276016, + "EmployeeAgreement": 492, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463600, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9, + "TotalTimeInv": 9, + "Cost": null, + "Roster": 21330, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2408, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 134, + "Created": "2022-09-29T09:00:04-06:00", + "Modified": "2022-09-29T09:00:04-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:00:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 134, + "DisplayName": "Carlos Hernandez Gonzalez", + "EmployeeProfile": 134, + "Employee": 134, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=C+G&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 134, + "DisplayName": "Carlos Hernandez Gonzalez", + "EmployeeProfile": 134, + "Employee": 134, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=C+G&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 134, + "Company": 7, + "FirstName": "Carlos", + "LastName": "Hernandez Gonzalez", + "DisplayName": "Carlos Hernandez Gonzalez", + "OtherName": null, + "Salutation": null, + "MainAddress": 331, + "PostalAddress": null, + "Contact": 272930, + "EmergencyAddress": null, + "DateOfBirth": "1996-06-03T00:00:00-06:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 134, + "JobAppId": null, + "Active": true, + "StartDate": null, + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276016, + "CustomFieldData": null, + "Creator": 2, + "Created": "2022-07-06T11:30:29-06:00", + "Modified": "2022-07-06T11:36:45-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9450, + "Employee": 115, + "EmployeeHistory": 115850, + "EmployeeAgreement": 440, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463600, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9, + "TotalTimeInv": 9, + "Cost": null, + "Roster": 21298, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2404, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 115, + "Created": "2022-09-29T09:00:05-06:00", + "Modified": "2022-09-29T09:00:05-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:00:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 115, + "DisplayName": "Alan Inube", + "EmployeeProfile": 115, + "Employee": 115, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+I&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 115, + "DisplayName": "Alan Inube", + "EmployeeProfile": 115, + "Employee": 115, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+I&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 115, + "Company": 7, + "FirstName": "Alan", + "LastName": "Inube", + "DisplayName": "Alan Inube", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 112973, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 115, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115850, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:16-06:00", + "Modified": "2022-04-25T17:43:43-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9451, + "Employee": 65, + "EmployeeHistory": 275964, + "EmployeeAgreement": 68, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463600, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9, + "TotalTimeInv": 9, + "Cost": null, + "Roster": 21178, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 26, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2396, + "File": 16972, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 65, + "Created": "2022-09-29T09:00:13-06:00", + "Modified": "2022-09-29T09:00:14-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:00:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 65, + "DisplayName": "Amador Belmontes Martinez", + "EmployeeProfile": 65, + "Employee": 65, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0fb803e0ecc50c61a88686d810cc303f.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=N3kRmlvr-4naE225X0nBvETl36Oj77urHExq~GJh5gVzYKPtr8aqNAOE8o-8MN7doCZC-bdOnJ4LoXXFX-2y60eX1iHAA~10fMebzwyod-Vs-Us-ush5HV~trwicZGaSrfGv1M~5k4sH-6VCD1kClLkWI0sKL4yrj-YzoQo7lqc_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 26, + "OperationalUnitName": "Sono", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Sono" + }, + "EmployeeInfo": { + "Id": 65, + "DisplayName": "Amador Belmontes Martinez", + "EmployeeProfile": 65, + "Employee": 65, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_0fb803e0ecc50c61a88686d810cc303f.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=N3kRmlvr-4naE225X0nBvETl36Oj77urHExq~GJh5gVzYKPtr8aqNAOE8o-8MN7doCZC-bdOnJ4LoXXFX-2y60eX1iHAA~10fMebzwyod-Vs-Us-ush5HV~trwicZGaSrfGv1M~5k4sH-6VCD1kClLkWI0sKL4yrj-YzoQo7lqc_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 65, + "Company": 2, + "FirstName": "Amador", + "LastName": "Belmontes Martinez", + "DisplayName": "Amador Belmontes Martinez", + "OtherName": null, + "Salutation": null, + "MainAddress": 214, + "PostalAddress": null, + "Contact": 272905, + "EmergencyAddress": 262, + "DateOfBirth": "1969-02-08T00:00:00-08:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1130, + "UserId": 65, + "JobAppId": null, + "Active": true, + "StartDate": "2019-12-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275964, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:26-07:00", + "Modified": "2022-07-06T10:45:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9452, + "Employee": 126, + "EmployeeHistory": 223782, + "EmployeeAgreement": 469, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463600, + "EndTime": 1664485200, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 6, + "TotalTimeInv": 6, + "Cost": null, + "Roster": 21319, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2407, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 126, + "Created": "2022-09-29T09:00:18-06:00", + "Modified": "2022-09-29T09:00:18-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:00:00-06:00", + "EndTimeLocalized": "2022-09-29T15:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 126, + "DisplayName": "Alexandra Benitez", + "EmployeeProfile": 126, + "Employee": 126, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+B&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 126, + "DisplayName": "Alexandra Benitez", + "EmployeeProfile": 126, + "Employee": 126, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+B&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 126, + "Company": 7, + "FirstName": "Alexandra", + "LastName": "Benitez", + "DisplayName": "Alexandra Benitez", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 167031, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 126, + "JobAppId": null, + "Active": true, + "StartDate": "2022-05-20T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 223782, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-05-20T09:38:22-06:00", + "Modified": "2022-06-06T11:37:01-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9453, + "Employee": 113, + "EmployeeHistory": 115851, + "EmployeeAgreement": 438, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463600, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9, + "TotalTimeInv": 9, + "Cost": null, + "Roster": 21295, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2406, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 113, + "Created": "2022-09-29T09:00:20-06:00", + "Modified": "2022-09-29T09:00:20-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:00:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 113, + "DisplayName": "Gabriela Gurrola", + "EmployeeProfile": 113, + "Employee": 113, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=G+G&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 113, + "DisplayName": "Gabriela Gurrola", + "EmployeeProfile": 113, + "Employee": 113, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=G+G&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 113, + "Company": 7, + "FirstName": "Gabriela", + "LastName": "Gurrola", + "DisplayName": "Gabriela Gurrola", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 112974, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 113, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115851, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:16-06:00", + "Modified": "2022-04-25T17:43:50-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9454, + "Employee": 114, + "EmployeeHistory": 115912, + "EmployeeAgreement": 439, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463600, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9, + "TotalTimeInv": 9, + "Cost": null, + "Roster": 21290, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2405, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 114, + "Created": "2022-09-29T09:00:20-06:00", + "Modified": "2022-09-29T09:00:20-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:00:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 114, + "DisplayName": "Sergio Briceno", + "EmployeeProfile": 114, + "Employee": 114, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_c1f0e75d5d3d393e535475b8b1188183.jpg?Expires=1664548383&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L-Nhxp-d0An00S2ES~aeyaSOfX3M-7WRtm195DzBGTSSppJ0gloC-3hEfAPeTwjbaUIMPJwMY3PWYvfcK4VXrANb3r9FX6WTgQeFgrzbHxiJLYU7j6yFHmlOTLd8sNk5O9fESoaKvjoiVt9hirYa411~v8NXRhDwc6MoanS1FFw_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 114, + "DisplayName": "Sergio Briceno", + "EmployeeProfile": 114, + "Employee": 114, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_c1f0e75d5d3d393e535475b8b1188183.jpg?Expires=1664548383&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=L-Nhxp-d0An00S2ES~aeyaSOfX3M-7WRtm195DzBGTSSppJ0gloC-3hEfAPeTwjbaUIMPJwMY3PWYvfcK4VXrANb3r9FX6WTgQeFgrzbHxiJLYU7j6yFHmlOTLd8sNk5O9fESoaKvjoiVt9hirYa411~v8NXRhDwc6MoanS1FFw_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 114, + "Company": 7, + "FirstName": "Sergio", + "LastName": "Briceno", + "DisplayName": "Sergio Briceno", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 112975, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 2009, + "UserId": 114, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115912, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:16-06:00", + "Modified": "2022-04-25T17:49:32-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9455, + "Employee": 112, + "EmployeeHistory": 115854, + "EmployeeAgreement": 437, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463600, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9, + "TotalTimeInv": 9, + "Cost": null, + "Roster": 21289, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2410, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 112, + "Created": "2022-09-29T09:00:24-06:00", + "Modified": "2022-09-29T09:00:24-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:00:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 112, + "DisplayName": "Carlos Espinosa", + "EmployeeProfile": 112, + "Employee": 112, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=C+E&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 112, + "DisplayName": "Carlos Espinosa", + "EmployeeProfile": 112, + "Employee": 112, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=C+E&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 112, + "Company": 7, + "FirstName": "Carlos", + "LastName": "Espinosa", + "DisplayName": "Carlos Espinosa", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 112977, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 112, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115854, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:15-06:00", + "Modified": "2022-04-25T17:45:26-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9456, + "Employee": 138, + "EmployeeHistory": 276090, + "EmployeeAgreement": 524, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463600, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 0, + "intEnd": 3600, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9, + "TotalTimeInv": 9, + "Cost": null, + "Roster": 21418, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2411, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 138, + "Created": "2022-09-29T09:00:56-06:00", + "Modified": "2022-09-29T09:00:56-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:00:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 138, + "DisplayName": "Alejandra Hernandez", + "EmployeeProfile": 138, + "Employee": 138, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+H&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 138, + "DisplayName": "Alejandra Hernandez", + "EmployeeProfile": 138, + "Employee": 138, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=A+H&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 138, + "Company": 7, + "FirstName": "Alejandra", + "LastName": "Hernandez", + "DisplayName": "Alejandra Hernandez", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272947, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 138, + "JobAppId": null, + "Active": true, + "StartDate": "2022-08-22T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276090, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-08-22T15:07:51-06:00", + "Modified": "2022-08-22T18:11:07-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9457, + "Employee": 93, + "EmployeeHistory": 130466, + "EmployeeAgreement": 126, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463660, + "EndTime": 1664481600, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -960, + "intEnd": 2640, + "intUnixStart": 1664462700, + "intUnixEnd": 1664466300, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 4.98, + "TotalTimeInv": 4.98, + "Cost": null, + "Roster": 21252, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 59, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2424, + "File": 16973, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 93, + "Created": "2022-09-29T09:01:20-06:00", + "Modified": "2022-09-29T09:01:21-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:01:00-06:00", + "EndTimeLocalized": "2022-09-29T14:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 93, + "DisplayName": "Misty Perez", + "EmployeeProfile": 93, + "Employee": 93, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_053d5fbe49865a3562ae72163fc94574.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UtJYG4Q1srblmypp8UCcyZyU4SeRM49hl7Qhq95mXwCWCLKWmMEMgoaz4G~3pmUl9U3BapJDV96wXgCG~oY71eVq29AoBB0voF0PrSAcvyGitXEvgUHyyvifHwnOKOTTarR-sWjCht5VmBnEzIjVjeVDz3TotmKabWJK3oIDi~M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 59, + "OperationalUnitName": "Clark Page PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Clark Page PA-C" + }, + "EmployeeInfo": { + "Id": 93, + "DisplayName": "Misty Perez", + "EmployeeProfile": 93, + "Employee": 93, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_053d5fbe49865a3562ae72163fc94574.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=UtJYG4Q1srblmypp8UCcyZyU4SeRM49hl7Qhq95mXwCWCLKWmMEMgoaz4G~3pmUl9U3BapJDV96wXgCG~oY71eVq29AoBB0voF0PrSAcvyGitXEvgUHyyvifHwnOKOTTarR-sWjCht5VmBnEzIjVjeVDz3TotmKabWJK3oIDi~M_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 93, + "Company": 3, + "FirstName": "Misty", + "LastName": "Perez", + "DisplayName": "Misty Perez", + "OtherName": null, + "Salutation": null, + "MainAddress": 292, + "PostalAddress": null, + "Contact": 57473, + "EmergencyAddress": 284, + "DateOfBirth": "1992-11-08T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1093, + "UserId": 93, + "JobAppId": null, + "Active": true, + "StartDate": "2015-03-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 130466, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-30T15:36:46-07:00", + "Modified": "2022-04-28T11:14:31-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9458, + "Employee": 137, + "EmployeeHistory": 276086, + "EmployeeAgreement": 523, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463720, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -120, + "intEnd": 3480, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 8.97, + "TotalTimeInv": 8.97, + "Cost": null, + "Roster": 21329, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2412, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 137, + "Created": "2022-09-29T09:02:06-06:00", + "Modified": "2022-09-29T09:02:06-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:02:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 137, + "DisplayName": "Omar Castaneda", + "EmployeeProfile": 137, + "Employee": 137, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=O+C&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 137, + "DisplayName": "Omar Castaneda", + "EmployeeProfile": 137, + "Employee": 137, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=O+C&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 137, + "Company": 7, + "FirstName": "Omar", + "LastName": "Castaneda", + "DisplayName": "Omar Castaneda", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 272944, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 137, + "JobAppId": null, + "Active": true, + "StartDate": "2022-08-19T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276086, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-08-19T12:18:45-06:00", + "Modified": "2022-08-19T12:20:31-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9459, + "Employee": 116, + "EmployeeHistory": 115972, + "EmployeeAgreement": 441, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463900, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -300, + "intEnd": 3300, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 8.92, + "TotalTimeInv": 8.92, + "Cost": null, + "Roster": 21297, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2399, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 1, + "Created": "2022-09-29T09:05:19-06:00", + "Modified": "2022-09-29T09:05:19-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:05:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 116, + "DisplayName": "Brenda De Leon", + "EmployeeProfile": 116, + "Employee": 116, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=B+L&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 116, + "Company": 7, + "FirstName": "Brenda", + "LastName": "De Leon", + "DisplayName": "Brenda De Leon", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 113094, + "EmergencyAddress": null, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 116, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115972, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:17-06:00", + "Modified": "2022-04-25T18:05:12-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9460, + "Employee": 111, + "EmployeeHistory": 115976, + "EmployeeAgreement": 436, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463960, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -360, + "intEnd": 3240, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 8.9, + "TotalTimeInv": 8.9, + "Cost": null, + "Roster": 21275, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 49, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2409, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 111, + "Created": "2022-09-29T09:06:19-06:00", + "Modified": "2022-09-29T09:06:19-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:06:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 111, + "DisplayName": "Martha Centeno", + "EmployeeProfile": 111, + "Employee": 111, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=M+C&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 49, + "OperationalUnitName": "Remote", + "Company": 7, + "CompanyName": "Remote", + "LabelWithCompany": "[REM] Remote" + }, + "EmployeeInfo": { + "Id": 111, + "DisplayName": "Martha Centeno", + "EmployeeProfile": 111, + "Employee": 111, + "Photo": "https://d11hmzhsuwuq9f.cloudfront.net/my/avatar?name=M+C&width=135&height=135", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 111, + "Company": 7, + "FirstName": "Martha", + "LastName": "Centeno", + "DisplayName": "Martha Centeno", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 113098, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": 0, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": null, + "UserId": 111, + "JobAppId": null, + "Active": true, + "StartDate": "2022-04-25T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 115976, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-04-25T17:41:15-06:00", + "Modified": "2022-04-25T18:11:10-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9461, + "Employee": 96, + "EmployeeHistory": 276048, + "EmployeeAgreement": 135, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664463960, + "EndTime": 1664499600, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -360, + "intEnd": 3240, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 9.9, + "TotalTimeInv": 9.9, + "Cost": null, + "Roster": 21251, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 59, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2403, + "File": 16974, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 96, + "Created": "2022-09-29T09:06:47-06:00", + "Modified": "2022-09-29T09:06:49-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:06:00-06:00", + "EndTimeLocalized": "2022-09-29T19:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 96, + "DisplayName": "Clark Page", + "EmployeeProfile": 96, + "Employee": 96, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a19b6aeb9552ecba1e12d71958dee40d.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Mm5g23w8dnxp011tIu0lVcpSgiZY4amqNnHkVZ9cAQefVOtXE7nxXDKLPQ0y01R68V5mZgJFwanjUxn~Xp2ddBo1L2uetx2Ye5dkiODK8p5midqpCYcdLFMVdyOcUemLapoXloYdZMbr277HUlAK-jw7y6H1p4e-8PA1R~nDOik_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 59, + "OperationalUnitName": "Clark Page PA-C", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Clark Page PA-C" + }, + "EmployeeInfo": { + "Id": 96, + "DisplayName": "Clark Page", + "EmployeeProfile": 96, + "Employee": 96, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a19b6aeb9552ecba1e12d71958dee40d.jpg?Expires=1664554660&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=Mm5g23w8dnxp011tIu0lVcpSgiZY4amqNnHkVZ9cAQefVOtXE7nxXDKLPQ0y01R68V5mZgJFwanjUxn~Xp2ddBo1L2uetx2Ye5dkiODK8p5midqpCYcdLFMVdyOcUemLapoXloYdZMbr277HUlAK-jw7y6H1p4e-8PA1R~nDOik_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 96, + "Company": 3, + "FirstName": "Clark", + "LastName": "Page", + "DisplayName": "Clark Page", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 57651, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1103, + "UserId": 96, + "JobAppId": null, + "Active": true, + "StartDate": "2022-03-31T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276048, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-31T14:46:22-07:00", + "Modified": "2022-07-19T13:03:28-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9462, + "Employee": 2, + "EmployeeHistory": 61410, + "EmployeeAgreement": 102, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664464140, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": { + "1664465580": "OUT" + }, + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": 1440, + "intEnd": 5040, + "intUnixStart": 1664465580, + "intUnixEnd": 1664469180, + "mixedActivity": { + "intState": 1, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "In Progress" + }], + "TotalTime": 8.85, + "TotalTimeInv": 8.85, + "Cost": null, + "Roster": 21038, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2402, + "File": 16975, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 2, + "Created": "2022-09-29T09:09:26-06:00", + "Modified": "2022-09-29T09:33:44-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:09:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 2, + "Company": 6, + "FirstName": "Daniel", + "LastName": "Renteria", + "DisplayName": "Daniel Renteria", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 13349, + "EmergencyAddress": 300, + "DateOfBirth": "1984-12-14T00:00:00-07:00", + "Gender": 1, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 970, + "UserId": 2, + "JobAppId": null, + "Active": true, + "StartDate": "2021-11-22T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 1, + "AllowAppraisal": true, + "HistoryId": 61410, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-24T16:08:14-07:00", + "Modified": "2022-04-15T13:25:50-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9463, + "Employee": 64, + "EmployeeHistory": 276049, + "EmployeeAgreement": 67, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664464260, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -5160, + "intEnd": -1560, + "intUnixStart": 1664459100, + "intUnixEnd": 1664462700, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 8.82, + "TotalTimeInv": 8.82, + "Cost": null, + "Roster": 21172, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 21, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2386, + "File": 16976, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 64, + "Created": "2022-09-29T09:11:34-06:00", + "Modified": "2022-09-29T09:11:35-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:11:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 64, + "DisplayName": "Alicia Rangel", + "EmployeeProfile": 64, + "Employee": 64, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3d92b57090833b853d28e284d6852c46.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NS0aA5gxD8rkeZ4naiyd0-VpLevPqaOgwIkOFY9nEThlILFXLKn~tTeFTyggcJZgLaoaJqvHWtEqiLTmMZhGAC8ygNNgUtSbXw9OpSyFNqZ5vurpNtWwnW8OoMeQSDkt8l1rVl7xP8BJ2n~-q6CuqeC-bj899wsx3N-MFwLlIyQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 21, + "OperationalUnitName": "Dr. Saenz", + "Company": 2, + "CompanyName": "Gateway", + "LabelWithCompany": "[GAT] Dr. Saenz" + }, + "EmployeeInfo": { + "Id": 64, + "DisplayName": "Alicia Rangel", + "EmployeeProfile": 64, + "Employee": 64, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3d92b57090833b853d28e284d6852c46.jpg?Expires=1664546641&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NS0aA5gxD8rkeZ4naiyd0-VpLevPqaOgwIkOFY9nEThlILFXLKn~tTeFTyggcJZgLaoaJqvHWtEqiLTmMZhGAC8ygNNgUtSbXw9OpSyFNqZ5vurpNtWwnW8OoMeQSDkt8l1rVl7xP8BJ2n~-q6CuqeC-bj899wsx3N-MFwLlIyQ_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 64, + "Company": 2, + "FirstName": "Alicia", + "LastName": "Rangel", + "DisplayName": "Alicia Rangel", + "OtherName": null, + "Salutation": null, + "MainAddress": 212, + "PostalAddress": null, + "Contact": 272904, + "EmergencyAddress": 261, + "DateOfBirth": "1993-07-27T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1331, + "UserId": 64, + "JobAppId": null, + "Active": true, + "StartDate": "2019-09-27T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276049, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:26-07:00", + "Modified": "2022-07-19T17:37:10-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9464, + "Employee": 24, + "EmployeeHistory": 275982, + "EmployeeAgreement": 26, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664464320, + "EndTime": 1664494200, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -720, + "intEnd": 2880, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 0, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Not Start" + }], + "TotalTime": 8.3, + "TotalTimeInv": 8.3, + "Cost": null, + "Roster": 21071, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2417, + "File": 16977, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 24, + "Created": "2022-09-29T09:12:20-06:00", + "Modified": "2022-09-29T09:12:20-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:12:00-06:00", + "EndTimeLocalized": "2022-09-29T17:30:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 24, + "DisplayName": "Gumara Mata", + "EmployeeProfile": 24, + "Employee": 24, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3979ef3d653677cb781b8e10e0855d35.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=CEiUJKGMTschoNegaZAqjoALpIF7gFZlyn1J9DBXnxLF3KunzT5g6FK~8Fhe-z1J-q9vEFP7WIvYRQipjKItueJQoeeIPAb1vZQ7A7onUexwCFqneJqOvJP9SyxvNI5ByfrirzNAXzW1CDLfJUubLSUkB4-VRpr4xGCfOZLYpw8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 24, + "DisplayName": "Gumara Mata", + "EmployeeProfile": 24, + "Employee": 24, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_3979ef3d653677cb781b8e10e0855d35.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=CEiUJKGMTschoNegaZAqjoALpIF7gFZlyn1J9DBXnxLF3KunzT5g6FK~8Fhe-z1J-q9vEFP7WIvYRQipjKItueJQoeeIPAb1vZQ7A7onUexwCFqneJqOvJP9SyxvNI5ByfrirzNAXzW1CDLfJUubLSUkB4-VRpr4xGCfOZLYpw8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 24, + "Company": 6, + "FirstName": "Gumara", + "LastName": "Mata", + "DisplayName": "Gumara Mata", + "OtherName": null, + "Salutation": null, + "MainAddress": 168, + "PostalAddress": null, + "Contact": 272876, + "EmergencyAddress": 284, + "DateOfBirth": "1974-06-23T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 950, + "UserId": 24, + "JobAppId": null, + "Active": true, + "StartDate": "2001-09-24T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275982, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:17-07:00", + "Modified": "2022-07-06T10:57:25-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9465, + "Employee": 5, + "EmployeeHistory": 275977, + "EmployeeAgreement": 103, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664464620, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -1020, + "intEnd": 2580, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 8.72, + "TotalTimeInv": 8.72, + "Cost": null, + "Roster": 21372, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2397, + "File": 16978, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 5, + "Created": "2022-09-29T09:17:15-06:00", + "Modified": "2022-09-29T09:17:15-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:17:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 5, + "DisplayName": "Emmanuel Castro", + "EmployeeProfile": 5, + "Employee": 5, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_48144f3189a12d8355476d40246496c0.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gEIHVmvJDcfYhEQdlwI8R0KdH~kUMyY4nW~4G7e5fqM1m5Mu7l3lDAYt7By5N~x3wXvTJV2xUI7vojcDpycwDgaTLAHmoffK6a8~zm~6DU4wwSg5RZjbf2kTuXMzsDTe8QFpqZTYHd6XRyjNcPKK4j00mPpZoaKArO6BNVkokL8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 5, + "DisplayName": "Emmanuel Castro", + "EmployeeProfile": 5, + "Employee": 5, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_48144f3189a12d8355476d40246496c0.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=gEIHVmvJDcfYhEQdlwI8R0KdH~kUMyY4nW~4G7e5fqM1m5Mu7l3lDAYt7By5N~x3wXvTJV2xUI7vojcDpycwDgaTLAHmoffK6a8~zm~6DU4wwSg5RZjbf2kTuXMzsDTe8QFpqZTYHd6XRyjNcPKK4j00mPpZoaKArO6BNVkokL8_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 5, + "Company": 6, + "FirstName": "Francisco", + "LastName": "Castro", + "DisplayName": "Emmanuel Castro", + "OtherName": null, + "Salutation": null, + "MainAddress": 164, + "PostalAddress": null, + "Contact": 272871, + "EmergencyAddress": 284, + "DateOfBirth": "1974-05-20T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 993, + "UserId": 5, + "JobAppId": null, + "Active": true, + "StartDate": "2013-05-02T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275977, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-24T16:08:15-07:00", + "Modified": "2022-07-06T10:55:33-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9466, + "Employee": 37, + "EmployeeHistory": 275966, + "EmployeeAgreement": 124, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664464800, + "EndTime": 1664481600, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -2100, + "intEnd": 1500, + "intUnixStart": 1664462700, + "intUnixEnd": 1664466300, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 4.67, + "TotalTimeInv": 4.67, + "Cost": null, + "Roster": 21106, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 34, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2415, + "File": 16979, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 39, + "Created": "2022-09-29T09:20:39-06:00", + "Modified": "2022-09-29T09:20:39-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:20:00-06:00", + "EndTimeLocalized": "2022-09-29T14:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 39, + "DisplayName": "Benjamin Rico Jr.", + "EmployeeProfile": 37, + "Employee": 37, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8061de79aca156ef3e62fa53502a58c2.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EI~Xg9hMI0vRYMb2MWEVCBXACYGZ0iisoJb2RTLIDpdi-~BjHwzOjOpxHHzzRM74i2PQGzZHDBimDTOSo8AFAwRYh06vOrlHcK3sXdl0-Vu-C635FcLEPKX9fuUP0lVUSA1ddtt6ErQ6lRnniSx-bM39ZYT8QSNlg7tcc9LeTDY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 34, + "OperationalUnitName": "Dr. Armendariz DO", + "Company": 3, + "CompanyName": "Shadow Mountain", + "LabelWithCompany": "[SHA] Dr. Armendariz DO" + }, + "EmployeeInfo": { + "Id": 39, + "DisplayName": "Benjamin Rico Jr.", + "EmployeeProfile": 37, + "Employee": 37, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_8061de79aca156ef3e62fa53502a58c2.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=EI~Xg9hMI0vRYMb2MWEVCBXACYGZ0iisoJb2RTLIDpdi-~BjHwzOjOpxHHzzRM74i2PQGzZHDBimDTOSo8AFAwRYh06vOrlHcK3sXdl0-Vu-C635FcLEPKX9fuUP0lVUSA1ddtt6ErQ6lRnniSx-bM39ZYT8QSNlg7tcc9LeTDY_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 37, + "Company": 3, + "FirstName": "Benjamin", + "LastName": "Rico Jr.", + "DisplayName": "Benjamin Rico Jr.", + "OtherName": null, + "Salutation": null, + "MainAddress": 183, + "PostalAddress": null, + "Contact": 272883, + "EmergencyAddress": 284, + "DateOfBirth": "1990-08-31T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1033, + "UserId": 39, + "JobAppId": null, + "Active": true, + "StartDate": "2015-03-16T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 275966, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:20-07:00", + "Modified": "2022-07-06T10:46:58-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9467, + "Employee": 18, + "EmployeeHistory": 276038, + "EmployeeAgreement": 20, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664465580, + "EndTime": 1664496000, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -1980, + "intEnd": 1620, + "intUnixStart": 1664463600, + "intUnixEnd": 1664467200, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 0, + "blnCanEndEarly": 0, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 8.45, + "TotalTimeInv": 8.45, + "Cost": null, + "Roster": 21041, + "EmployeeComment": "", + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2416, + "File": 16980, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 19, + "Created": "2022-09-29T09:33:56-06:00", + "Modified": "2022-09-29T09:33:57-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:33:00-06:00", + "EndTimeLocalized": "2022-09-29T18:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 19, + "DisplayName": "Hector Contreras", + "EmployeeProfile": 18, + "Employee": 18, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_14582f09774732be45869ad3659378cf.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cC18xjqhmTQEJOMLcxD20ahcNI2x85Aynkdehy3Oj32Ax0cDHcuufWsTloCh9pGGSDjlBWDkUzIPHG1FBPUnJuzcBHiFKesIrg5yisU~cupx9Yediy5BvFhc7z1CZjmaHVA6LNR~KWEuiw4y4-zrDH0Kl~2VUcEDTlJKI-XaglE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 19, + "DisplayName": "Hector Contreras", + "EmployeeProfile": 18, + "Employee": 18, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_14582f09774732be45869ad3659378cf.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cC18xjqhmTQEJOMLcxD20ahcNI2x85Aynkdehy3Oj32Ax0cDHcuufWsTloCh9pGGSDjlBWDkUzIPHG1FBPUnJuzcBHiFKesIrg5yisU~cupx9Yediy5BvFhc7z1CZjmaHVA6LNR~KWEuiw4y4-zrDH0Kl~2VUcEDTlJKI-XaglE_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 18, + "Company": 3, + "FirstName": "Hector", + "LastName": "Contreras", + "DisplayName": "Hector Contreras", + "OtherName": null, + "Salutation": null, + "MainAddress": 161, + "PostalAddress": null, + "Contact": 272934, + "EmergencyAddress": 284, + "DateOfBirth": "1982-06-27T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1317, + "UserId": 19, + "JobAppId": null, + "Active": true, + "StartDate": "2010-09-16T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 1, + "AllowAppraisal": true, + "HistoryId": 276038, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:16-07:00", + "Modified": "2022-07-14T09:36:52-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9468, + "Employee": 22, + "EmployeeHistory": 276010, + "EmployeeAgreement": 24, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664466300, + "EndTime": 1664469900, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [], + "TotalTime": 1, + "TotalTimeInv": 1, + "Cost": null, + "Roster": null, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2384, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 2, + "Created": "2022-09-29T09:45:43-06:00", + "Modified": "2022-09-29T09:45:43-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T09:45:00-06:00", + "EndTimeLocalized": "2022-09-29T10:45:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 22, + "DisplayName": "Viridiana Gomez", + "EmployeeProfile": 22, + "Employee": 22, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_e925be21f3ce5526e949aee744bc391c.jpg?Expires=1664554781&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=W1OCaCQwLucZAS20QlTYfrC0HbdIHBl5o1rfJrq9MugxcwYzZdK8Hkm-sJM19iEFTokz5Xx9c8oI7xnkbAi3snyFD9YRXB8Wbk-lS3o0ZSPwFAELbaW1YiOTYcIKcMR5rr9siVA4aj9ZB4GT2b2Pjmx0nh0aF-epsOMvdeH~KzA_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 22, + "Company": 6, + "FirstName": "Viridiana", + "LastName": "Gomez", + "DisplayName": "Viridiana Gomez", + "OtherName": null, + "Salutation": null, + "MainAddress": 166, + "PostalAddress": null, + "Contact": 272874, + "EmergencyAddress": null, + "DateOfBirth": "1983-09-15T00:00:00-07:00", + "Gender": null, + "Pronouns": 0, + "CustomPronouns": "", + "Photo": 1003, + "UserId": 22, + "JobAppId": null, + "Active": true, + "StartDate": "2005-07-11T00:00:00-06:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 276010, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-26T15:05:17-07:00", + "Modified": "2022-07-06T11:20:52-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + }, + { + "Id": 9469, + "Employee": 98, + "EmployeeHistory": 245298, + "EmployeeAgreement": 140, + "Date": "2022-09-29T00:00:00-06:00", + "StartTime": 1664467320, + "EndTime": 1664481600, + "Mealbreak": "2022-09-29T00:00:00-06:00", + "MealbreakSlots": "", + "Slots": [{ + "blnEmptySlot": false, + "strType": "B", + "intStart": -7320, + "intEnd": -3720, + "intUnixStart": 1664460000, + "intUnixEnd": 1664463600, + "mixedActivity": { + "intState": 3, + "blnCanStartEarly": 1, + "blnCanEndEarly": 1, + "blnIsMandatory": 1, + "strBreakType": "M" + }, + "strTypeName": "Meal Break", + "strState": "Scheduled Duration" + }], + "TotalTime": 3.97, + "TotalTimeInv": 3.97, + "Cost": null, + "Roster": 22278, + "EmployeeComment": null, + "SupervisorComment": null, + "Supervisor": null, + "Disputed": false, + "TimeApproved": false, + "TimeApprover": null, + "Discarded": null, + "ValidationFlag": 0, + "OperationalUnit": 20, + "IsInProgress": true, + "IsLeave": false, + "LeaveId": null, + "LeaveRule": null, + "Invoiced": false, + "InvoiceComment": null, + "PayRuleApproved": false, + "Exported": null, + "StagingId": null, + "PayStaged": false, + "PaycycleId": 2437, + "File": null, + "CustomFieldData": null, + "RealTime": true, + "AutoProcessed": false, + "AutoRounded": false, + "AutoTimeApproved": false, + "AutoPayRuleApproved": false, + "Creator": 2, + "Created": "2022-09-29T10:02:53-06:00", + "Modified": "2022-09-29T10:02:53-06:00", + "OnCost": 0, + "StartTimeLocalized": "2022-09-29T10:02:00-06:00", + "EndTimeLocalized": "2022-09-29T14:00:00-06:00", + "_DPMetaData": { + "System": "Timesheet", + "CreatorInfo": { + "Id": 2, + "DisplayName": "Daniel Renteria", + "EmployeeProfile": 2, + "Employee": 2, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_fe3fe8f4f8fbbd7f7629eda062038e7f.jpg?Expires=1664553800&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=NR9sB5N-CFrfZG6RAFPzbHK2KU3n5UoLqqOoiGsmqO2mG6f7vtRXNziB6jGCeMRgWmeeLRLUTlwQH01aPKMn6jIFTMtMnDWWU2wuQ9OyLevfpPcJtsVOjxIuzG3VyFuAkAaFD9gKozvMHAeUjf~bxd~86QVvrI8x58l67-bVP-k_", + "Pronouns": 0, + "CustomPronouns": "" + }, + "OperationalUnitInfo": { + "Id": 20, + "OperationalUnitName": "Administration", + "Company": 6, + "CompanyName": "Administration", + "LabelWithCompany": "[ADM] Administration" + }, + "EmployeeInfo": { + "Id": 98, + "DisplayName": "Esther Lujan", + "EmployeeProfile": 98, + "Employee": 98, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_a11cbc0dc41039db298bfa15665ea864.jpg?Expires=1664546435&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=b8xj83hOY3IQIuUH91upA8u9kApr1JOYkDbh4AT~7hvfo5uLJCKo~aF8haP2TJLIdZLTslXnBYIkZNIyWlpSb5w4sBvZ-x0EzgyMo8Ri5uXqFLE0TK9CEnXMzg-de4uIftU2fFsdGCwZuivk1RPLNL4~3k2g4bN-PNoc~gJpi~4_", + "Pronouns": 2, + "CustomPronouns": null + }, + "CustomFieldData": null + }, + "EmployeeObject": { + "Id": 98, + "Company": 5, + "FirstName": "Esther", + "LastName": "Lujan", + "DisplayName": "Esther Lujan", + "OtherName": null, + "Salutation": null, + "MainAddress": null, + "PostalAddress": null, + "Contact": 242283, + "EmergencyAddress": 284, + "DateOfBirth": null, + "Gender": 2, + "Pronouns": 2, + "CustomPronouns": null, + "Photo": 1068, + "UserId": 98, + "JobAppId": null, + "Active": true, + "StartDate": "2022-03-31T00:00:00-07:00", + "TerminationDate": null, + "StressProfile": 1, + "Position": null, + "HigherDuty": null, + "Role": 50, + "AllowAppraisal": true, + "HistoryId": 245298, + "CustomFieldData": null, + "Creator": 1, + "Created": "2022-03-31T16:25:29-07:00", + "Modified": "2022-06-10T22:00:18-06:00", + "_DPMetaData": { + "System": "Employee", + "CreatorInfo": { + "Id": 1, + "DisplayName": "Jerry", + "EmployeeProfile": 1, + "Employee": 1, + "Photo": "https://photo2.deputy.com/deputec_b220324225237_13079/-135x135_89111b8de641b1a92b1ebfa67a826d1d.jpg?Expires=1664545727&Key-Pair-Id=APKAINP5UVPK4IGBHXOQ&Signature=cDP5cZtfY32iqMZEgjoFtO~~4AvoaUN90blpRd681~4ux9hyP65KkLAw6AwJV~NQoW-bOyBoU5nKCyQngfhMYxV3rOwyPwuFcsemHJ34VBJk7U-GGSErb0hg5uUqRLiwEbRlEgDijpDldghJ-qRF3Bf93peFESN6L~nBYYKjN3k_", + "Pronouns": 0, + "CustomPronouns": "" + } + } + } + } +]; \ No newline at end of file diff --git a/ui/src/main.js b/ui/src/main.js new file mode 100644 index 0000000..96edcbc --- /dev/null +++ b/ui/src/main.js @@ -0,0 +1,35 @@ +import { createApp } from 'vue' +import './style.css' +import App from './App.vue' +import router from './router'; + +import { plugin, defaultConfig } from '@formkit/vue' + +import { library } from '@fortawesome/fontawesome-svg-core'; +import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome' +import { + faSync, + faMagnifyingGlass, + faXmark, + faUtensils, + faCalendarMinus, + faCircleInfo, + faCircleExclamation, + faGear, +} from '@fortawesome/free-solid-svg-icons'; +import '@formkit/themes/genesis'; + +library.add(faSync); +library.add(faMagnifyingGlass); +library.add(faXmark); +library.add(faUtensils); +library.add(faCalendarMinus); +library.add(faCircleInfo); +library.add(faCircleExclamation); +library.add(faGear); + +const app = createApp(App) + .use(router) + .use(plugin, defaultConfig) + .component('font-awesome-icon', FontAwesomeIcon) + .mount('#app'); \ No newline at end of file diff --git a/ui/src/router.js b/ui/src/router.js new file mode 100644 index 0000000..fe5b9a0 --- /dev/null +++ b/ui/src/router.js @@ -0,0 +1,29 @@ +import { createRouter, createWebHistory, createWebHashHistory } from "vue-router"; +import TimesheetView from "./views/Timesheet/Timesheet.vue"; +import ConfigurationView from './views/Configuration/Configuration.vue'; + +const routes = [{ + path: "/", + name: "home", + component: TimesheetView, + }, { + path: '/config', + name: 'config', + component: ConfigurationView + } + // { + // path: "/about", + // name: "about", + // // route level code-splitting + // // this generates a separate chunk (About.[hash].js) for this route + // // which is lazy-loaded when the route is visited. + // component: () => + // import ("../views/AboutView.vue"), + // }, +]; +const router = createRouter({ + history: window.IS_ELECTRON ? createWebHashHistory() : createWebHistory(), + routes, +}); + +export default router; \ No newline at end of file diff --git a/ui/src/style.css b/ui/src/style.css new file mode 100644 index 0000000..9770efa --- /dev/null +++ b/ui/src/style.css @@ -0,0 +1,91 @@ +@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700&display=swap'); +:root { + font-family: 'Roboto', sans-serif; + font-size: 16px; + line-height: 24px; + font-weight: 400; + color-scheme: light dark; + color: rgba(255, 255, 255, 0.87); + background-color: #242424; + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -webkit-text-size-adjust: 100%; +} + +a { + font-weight: 500; + color: #646cff; + text-decoration: inherit; +} + +a:hover { + color: #535bf2; +} + +a { + font-weight: 500; + color: #646cff; + text-decoration: inherit; +} + +a:hover { + color: #535bf2; +} + +body { + margin: 0; + display: flex; + min-width: 320px; + min-height: 100vh; +} + +h1 { + font-size: 3.2em; + line-height: 1.1; +} + +button { + border-radius: 8px; + border: 1px solid transparent; + padding: 0.6em 1.2em; + font-size: 1em; + font-weight: 500; + font-family: inherit; + background-color: #1a1a1a; + cursor: pointer; + transition: border-color 0.25s; +} + +button:hover { + border-color: #646cff; +} + +button:focus, +button:focus-visible { + outline: 4px auto -webkit-focus-ring-color; +} + +.card { + padding: 2em; +} + +#app { + max-width: 100%; + margin: 0 auto; + text-align: center; +} + +@media (prefers-color-scheme: light) { + :root { + color: #213547; + background-color: #ffffff; + } + a:hover { + color: #747bff; + } + button { + background-color: #f9f9f9; + } +} \ No newline at end of file diff --git a/ui/src/views/Configuration/Configuration.js b/ui/src/views/Configuration/Configuration.js new file mode 100644 index 0000000..7236001 --- /dev/null +++ b/ui/src/views/Configuration/Configuration.js @@ -0,0 +1,53 @@ +import { ref } from 'vue'; +import moment from 'moment'; + +import 'moment-timezone'; + +export default { + setup() { + + }, + data: () => ({ + secondsToReload: 60, + cutDay: 6, + cutHour: 4, + timezone: 'America/Denver', + apitoken: '' + }), + async created() { + if (window.services) { + const { + secondsToReload = this.secondsToReload, + cutDay = this.cutDay, + cutHour = this.cutHour, + timezone = this.timezone, + apitoken = this.apitoken, + } = await window.services.getConfig(); + + this.secondsToReload = secondsToReload; + this.cutDay = cutDay; + this.cutHour = cutHour; + this.timezone = timezone; + this.apitoken = apitoken; + } + }, + methods: { + save() { + if (window.services) { + const config = { + secondsToReload: Number(this.secondsToReload), + cutDay: Number(this.cutDay), + cutHour: Number(this.cutHour), + timezone: this.timezone, + apitoken: this.apitoken, + }; + console.log('config :>> ', config); + window.services.setConfig(config); + } + this.$router.push('/'); + }, + cancel() { + this.$router.push('/'); + } + } +} \ No newline at end of file diff --git a/ui/src/views/Configuration/Configuration.scss b/ui/src/views/Configuration/Configuration.scss new file mode 100644 index 0000000..02b9ff0 --- /dev/null +++ b/ui/src/views/Configuration/Configuration.scss @@ -0,0 +1,14 @@ +h1 { + font-size: 24px; +} + +[data-type="button"].cancel-button { + .formkit-input { + background: #fff; + border-color: #121212; + color: #121212; + &:hover { + background: #fefefe; + } + } +} \ No newline at end of file diff --git a/ui/src/views/Configuration/Configuration.vue b/ui/src/views/Configuration/Configuration.vue new file mode 100644 index 0000000..d470c29 --- /dev/null +++ b/ui/src/views/Configuration/Configuration.vue @@ -0,0 +1,90 @@ + +secondsToReload: 60, +cutDay: 6, +cutHour: 4, +timezone: 'America/Denver' + + + \ No newline at end of file diff --git a/ui/src/views/Timesheet/Timesheet.js b/ui/src/views/Timesheet/Timesheet.js new file mode 100644 index 0000000..2951e3c --- /dev/null +++ b/ui/src/views/Timesheet/Timesheet.js @@ -0,0 +1,177 @@ +import { ref } from 'vue' +import { employeeMapper, getTime } from '../../helpers/employee'; +import { fakeData } from '../../helpers/fakedata'; +import moment from 'moment'; + +import 'moment-timezone'; + + +export default { + setup() { + const search = ref(null); + return { + search + }; + }, + data: () => ({ + employees: [], + loading: true, + secondsToReload: 60, + cutDay: 6, + cutHour: 4, + countdown: 0, + sinceDate: null, + interval: null, + timezone: 'America/Denver', + searchText: '', + searchActive: false, + toDate: null, + lastWeekMode: false, + errorMessage: '', + }), + + computed: { + hasInfo: function() { + return this.employees.length === 0 && !this.lastWeekMode && !this.loading && !this.hasError; + }, + hasMessage: function() { + return this.lastWeekMode || this.hasInfo || this.hasError; + }, + hasError: function() { + return !!this.errorMessage; + }, + now: function() { + return moment().tz(this.timezone); + }, + filteredEmployees: function() { + if (!this.searchActive || !this.searchText) { + return this.employees; + } + return this.employees.filter(e => { + const toSearch = `${e.displayName} ${e.unit} ${e.unit}`.toUpperCase(); + const match = toSearch.indexOf(this.searchText.toUpperCase()) !== -1; + return match; + }); + } + }, + + async created() { + console.log('created'); + await this.initConfig(); + this.reload(); + }, + + methods: { + async initConfig() { + if (window.services) { + const config = await window.services.getConfig(); + const { + secondsToReload = this.secondsToReload, + cutDay = this.cutDay, + cutHour = this.cutHour, + timezone = this.timezone + } = config; + this.secondsToReload = secondsToReload; + this.cutDay = cutDay; + this.cutHour = cutHour; + this.timezone = timezone; + } + }, + async reload() { + this.loading = true; + clearInterval(this.interval); + await this.fetchData(); + this.now = moment().tz(this.timezone); + this.setReloadInterval(); + this.loading = false; + }, + + onClickReload() { + this.reload(); + }, + + onClickLastWeekMode() { + this.lastWeekMode = !this.lastWeekMode; + this.reload(); + }, + + onClickSearch() { + this.searchActive = !this.searchActive; + if (this.searchActive) { + this.search.focus(); + } + }, + + setReloadInterval() { + this.countdown = this.secondsToReload; + this.interval = setInterval(() => { + this.countdown -= 1; + if (this.countdown === 0) { + this.reload(); + } + }, 1000) + }, + + async fetchData() { + let date = getTime(this.timezone, this.cutDay, this.cutHour); + let toDate = this.toDate || moment().tz(this.timezone); + + if (this.lastWeekMode) { + toDate = date.clone().subtract(1, 'second'); + date.subtract(1, 'week'); + } + + this.sinceDate = date.format('MM-DD-YYYY HH:mm:ss'); + this.nowDate = toDate.format('MM-DD-YYYY HH:mm:ss') + + const body = { + search: { + s1: { + field: 'StartTime', + data: Math.floor(date.toDate().getTime() / 1000), + type: 'gt', + }, + s2: { + field: 'StartTime', + data: Math.floor(toDate.toDate().getTime() / 1000), + type: 'le', + }, + s3: { + field: 'Discarded', + data: true, + type: 'ns' + } + }, + join: ['EmployeeObject'], + }; + let response; + + console.log('body :>> ', body); + + if (window.services) { + try { + response = await window.services.getTimesheet(body); + if (response.status < 200 || response.status >= 300) { + this.errorMessage = this.getErrorMessage(response.status); + } else { + this.employees = employeeMapper(response.body); + this.errorMessage = ''; + } + + console.log('response :>> ', response); + } catch (error) { + console.log('error :>> ', error); + } + } else { + this.employees = employeeMapper(fakeData); + } + + }, + getErrorMessage(status) { + if (status === 401) { + return "Unauthorized, please check token." + } + return `Cannot connect to deputy services. (${status})`; + } + } +} \ No newline at end of file diff --git a/ui/src/views/Timesheet/Timesheet.scss b/ui/src/views/Timesheet/Timesheet.scss new file mode 100644 index 0000000..3255747 --- /dev/null +++ b/ui/src/views/Timesheet/Timesheet.scss @@ -0,0 +1,265 @@ +.time { + display: inline-block; +} + +.message { + .danger { + background-color: #d90429; + } + .info { + background-color: #f6bd60; + color: #000814; + } +} + +.icon-blue { + color: #0077b6; +} + +.icon-red { + color: #f08080; +} + +.employees-container { + color: #121212; + display: flex; + flex-wrap: wrap; + width: 100%; + height: 100%; + padding-top: 40px; + &.with-message { + padding-top: 80px; + } +} + +.employee-box { + min-height: 120px; + margin: 3px; + padding: 4px 8px 8px; + width: 250px; + flex-grow: 1; + opacity: 0.7; + border-radius: 6px; + border-width: 2px; + border-style: solid; + .lunch-marker { + float: right; + opacity: 0.7; + margin-right: 8px; + } + &.in-progress { + opacity: 1; + } + &-placeholder { + margin: 3px; + padding: 8px; + width: 250px; + flex-grow: 1; + border: 2px solid transparent; + } + &.green { + background-color: #B7E0D1; + border-color: #1E4738; + .lunch-marker { + color: #1E4738; + } + } + &.red { + background-color: #F3A4B4; + border-color: #9A132E; + .lunch-marker { + color: #9A132E; + } + } + &.yellow { + background-color: #EAE591; + border-color: #9A941D; + .lunch-marker { + color: #9A941D; + } + } +} + +.name { + text-align: center; + font-size: 20px; + font-weight: 600; + margin-bottom: 8px; + width: 98%; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; +} + +.two-cols { + margin-top: 8px; + display: grid; + grid-template-columns: 50% 50%; +} + +.label { + text-align: center; + font-size: 14px; +} + +.value { + text-align: center; + font-size: 20px; +} + +.fixed-top { + width: 100%; + position: fixed; + opacity: 1; + z-index: 999; +} + +.toolbar { + background-color: #213547; + color: #fff; + display: flex; + font-size: 90%; + .countdown { + display: inline-block; + font-size: 90%; + opacity: 60%; + } + &>div { + flex-grow: 1; + margin: 4px 12px; + } + .time { + max-width: 450px; + text-align: left; + ; + } + .search-input { + outline: none; + width: 0; + opacity: 0; + margin: 0; + padding: 0; + border: none; + transition-duration: 0.1s, 0.2s; + transition-property: opacity, width; + transition-timing-function: ease, ease-in; + background-color: #D4F4DD; + border-radius: 3px; + &.active { + // transform: scaleX(1); + width: 200px; + opacity: 1; + border: 0; + } + } + .buttons { + max-width: 470px; + text-align: right; + } + &-link { + color: #fff; + margin: auto 10px; + opacity: 0.6; + transition-property: opacity; + transition-delay: 0.1s; + transition-duration: 0.2s; + transition-timing-function: ease; + &:hover { + color: #fff; + opacity: 1; + } + &:last-child { + margin-right: 0; + } + &.last-week-mode.active { + color: #d90429; + } + } +} + +.location { + font-size: 63%; + color: #050517; + text-transform: uppercase; + .unit { + font-weight: 600; + } + .site { + font-weight: 300; + } + .pill { + background-color: #ded6d1; + border-radius: 5px; + padding: 0 5px; + display: flex; + color: #050517; + width: auto; + gap: 10px; + line-height: 18px; + justify-content: space-between; + border: 0.5px solid #050517; + } + .topper { + display: flex; + align-content: center; + gap: 4px; + .circle { + display: inline-block; + width: 10px; + height: 10px; + margin-top: 5px; + border-radius: 50%; + border-width: 1px; + border-style: solid; + &.gray { + background-color: #ded6d1; + border-color: #666; + } + &.pink { + background-color: #FF5C95; + border-color: #F50056; + } + &.blue { + background-color: #275DAD; + border-color: #173564; + } + &.white { + background-color: #FFFFFF; + border-color: #666; + } + &.green { + background-color: #0C8346; + border-color: #032514; + } + &.red { + background-color: #C42847; + border-color: #932525; + } + &.orange { + background-color: #E28413; + border-color: #96580D; + } + } + } +} + +@media (prefers-color-scheme: dark) { + :root { + background-color: #213547; + color: #ffffff; + } + a:hover { + color: #747bff; + } + button { + background-color: #f9f9f9; + } + .toolbar { + color: #f9f9f9; + background-color: #000; + .search-input { + background-color: #666; + color: #FFF; + } + } +} \ No newline at end of file diff --git a/ui/src/views/Timesheet/Timesheet.vue b/ui/src/views/Timesheet/Timesheet.vue new file mode 100644 index 0000000..4012fa0 --- /dev/null +++ b/ui/src/views/Timesheet/Timesheet.vue @@ -0,0 +1,85 @@ + + + + + \ No newline at end of file diff --git a/ui/vite.config.js b/ui/vite.config.js new file mode 100644 index 0000000..516ffce --- /dev/null +++ b/ui/vite.config.js @@ -0,0 +1,10 @@ +import { defineConfig } from 'vite' +import vue from '@vitejs/plugin-vue' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [vue({ + outDir: '../app/ui' + })], + +}) \ No newline at end of file